how to handle multiple line items in bdc??
Answer Posted / 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 |
Post New Answer View All Answers
What is lock object ? : abap data dictionary
What is the use of enqueue function module? : sap abap data dictionary
What is a currency factoring technique?
What are the advantages/ dis-advantages of logical databases?
Difference between sy-tabix and sy-index?
What are the two ways for restricting the value range for a domain? : sap abap data dictionary
WHAT ARE THE MANDATORY FIELDS TO BE FILLED FROM TABLES BAPIITEMIN, BAPIPARTNR, BAPIITEMEX, BAPICUCFG, BAPICUINS, BAPICUPRT, AND BAPICUVAL IN BAPI 'BAPI_QUOTATION_CREATEFROMDATA
What are clustered tables?
What are the objects of the abap dictionary or what types of objects can be created in the abap dictionary? : abap data dictionary
How to create user interfaces for lists?
How can we omit a leading sign and a leading zero in sapscript?
When was the sap abap being created?
What is the table buffer? Which type of tables used this buffer?
what is code to upload cost centers through call trans. and procedure
Name a few data dictionary objects? : abap data dictionary