Answer Posted / narasimha reddy
Bdc Approach is Screen and function code interface.
When enter the screen we required enter multiple Data
same screen.
example va01. at enter qty and material fields. if system allowed only Limited entries. after press enter system allocated some entries. finally save button.
This logic recorded in SHDB Transaction.
loop at it_vbap into wa_vbap.
concatenate 'VBAP-AMTNR(' V1 ')' Into field.
perform sub_fld v1 wa_vbap-matnr.
" we assum system allowed 5 entries after enter data again 5 fields allowed.
v1 = v1 + 1.
if v1 = 6.
v1 = 1.
perform sub USING 'BDC_OKCODE. '00/'.
PERFORM SUB1 USING 'SAPMV45A' '4100' 'X'.
perform sub USING 'BDC_OKCODE. '00/'.
endloop.
ABOVE CODE FOR SAMPLE .
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How to read files and process BDC's automatically ?
what precautions or prerequisites do you follow to update a record into database table and how
What are the two ways for restricting the value range for a domain ?
What is the table & field to identify the no of items (bottles) stored in one case?
Are you familiar with all steps for setting up a workflow?
What are two methods of modifying sap standard tables? : abap data dictionary
How many primary keys can be created for a table?
Why do we use Abstract classes give an example from your project?
Explain buffering concept usage?
Explain the Types of Select statements?
What are field symbols and field groups? Have you used component idx of structure clause with field groups?
Define subtype ? : abap hr
What are the components of sap scripts? : abap hr
Explain the disadvantages of different types of bdc's?
On which event we can validate the input fields in module programs?