how to handle multiple line items in bdc??
Answers were Sorted based on User's Feedback
Answer / sainath
multiple records can be handled in BDC only through Table
control.If u need code for this please let me know.
Is This Answer Correct ? | 55 Yes | 5 No |
Answer / balamurugan
LOOP AT IT_ITEM INTO WA_ITEM WHERE VBELN = WA_HEADER-VBELN.
INDX = INDX + 1.
CONCATENATE 'WA_SO2-MATNR('INDX')' INTO V_MATNR.
perform bdc_field using V_MATNR WA_ITEM-MATNR.
CONCATENATE 'WA_SO2-MENGE('INDX')' INTO V_MENGE.
perform bdc_field using V_MENGE WA_ITEM-MENGE.
perform bdc_field using BDC_OKCODE '/00'.
ENDLOOP.
We can upload multiple line items Using table control.The
above code explain the same.
Is This Answer Correct ? | 5 Yes | 1 No |
Answer / raju
Table control is used to handle multiple input records.
example for creating customer we use screen xd01.
initial screen we have address details,most of the fields on
this screen are fixed. But when you select payment
transactions you find customer bank details.Now we can see
customer can have multiple bank accounts (bank keys,bank
account no)In the table control row no for each record is
dynamic i.e for 1st record the fields are knbk-banks(01),
knabk-bankl(01)..here 01 specifies the row no and row no
keeps on increasing with every new record.
In bdc we declare a internal table t_knb1 type knb1 customer
bank details.
declare index
data v_index(2) type N.
declare string
data v_enam like bdcdata_fnam
loop at it_banks into wa_banks.
v_index = sy-tabix."loop counter
concatenate 'knbk-banks(' v_index ')'into v_fnam.
wa_bdcdata-fnam = v_fnam.
wa_bdcdata-fval = wa_banks-banks.
append wa_bdcdata to it_bdcdata.
repeat this procedure for all fields.
Is This Answer Correct ? | 4 Yes | 5 No |
What is asynchronous and synchronous update?
10> Can u give me one example where we should use only CALL TRANSACTION method in BDC?
what is the difference detween EDI AND ALE?
What is the typical structure of an ABAP/4 program?
What are the types of table fields in the sap abap?
What is the difference between Exit and Stop?
What is exception class and test class. How to use it?
can we insert a table in a table? structure in a structure, structure in a table and table in a structure?
What are the different types of abap reports in sap?
How do you process errors in call transaction method? : abap bdc
What z the difference between a pool table and a transparent table and how they are stored at the database level?
in scripts 1,2,3,4,5,6,7,8,9,10.............50 pages.then i want only 4 to 50 how it is possible?ans also iwant only 1,3,5,7,9 .....how it is possible?