CAN ANY ONE TELL ME What is the use of fallowing structures
1)BDCDATA
2)BDCMSGCOLL
Answers were Sorted based on User's Feedback
BDCDATA standard structure contains following parameters.
program :name of the module pool programm.
dynpro :screen number
dynbegin:it indicates for the new screen
fnam :name of the fields in database
fval :fields values are assinged with the fields
by defineing that structure bdcdata as it_bdcdata and work
area wa_bdcdata and we can pass above values.
ex: wa_bdcdata-program = name of the module pool program.
and
BDCMSGCOLL this is the structure to keep the errors while we
are using call transaction method in bdc.
ex syntax:
call transaction 'va01' using it_bdcdata mode a/n/e update
s/a messages into it_bdcmsgcoll.
correct me if i am wrong.
Is This Answer Correct ? | 10 Yes | 0 No |
Answer / franklin
BDCDATA is a structure which contains 5 fields such as
program name,screen number,initial screen,name of the
fields in each screen and finally value for each field.
BDCDATA structure is used for creating internal table and
work area which is very much useful while we are creting
sessions and using call transaction method for uploading
and downloading form presentation server to application
server.
BDCMSGCOLL is a structure which contain error log and
messages which is created while we are invoking call
transaction method.
We can use call function FORMAT_MESSAGE to print all the
error messages which is stored in BDCMSGCOLL structure.
Is This Answer Correct ? | 2 Yes | 0 No |
What is parameter id? Where you can find parameter id for a field?
what is meant by HIDE statement?
Can any tell me ECC 5.0, ECC 6.0 Released year? and difference between them?
Why are insert and append statement used in sap abap?
Have you processed BDCs ?
What is the syntax for ‘call transaction’?
What is the significance of at line-selection event?
Why do we need to code a loop statement in both the pbo and pai events for each table in the screen?
What are the fields in a bdc_tab table? : abap bdc
What are the different types of abap/4 programs?
What is your approach for writing a bdc program? : abap bdc
What is open sql vs native sql ?