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 |
can any body tell what is idoc archieving and how to do that
What is the definition of modification in an sap system and how do they impact an upgrade?
What is a type-pool?
In module pool, when table controls are used the command that is written in both PBO and PAI is
What is tcode se16? For what is it used.
if u define paragraph and character formats what will be overwriting which one
What is the use of AT Selection Screen output when we have At selection screen?Can u explain?
At selection-screen on Fields output?
what is the variable to be used in sap scripts to find the total number of pages of the print job?
what is the use of 'split' in BDC? Is it related to some tab adjustment to the flat file during BDC?
What is the functionality of BIZTALK and how it handles the IDOC’s and how u will transfer the IDOCS to the BIZTALK ?
What are number ranges?