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 |
How do we handle multiple line items in BDC's.
Why we are using Macros instead of Function Modules
wat is RFC?wat r the RFC types?
Explain the differences between sap memory and abap memory?
to link the loop to a table control we use the addition WITH CONTROL else this works as as stand-alone________________?
what is the importance of macros? is it that it is useful only for addition or subtraction operation (arithmetic operations) ? I need more information regards this? I am waiting for the reply
Can we use transfer dataset to transfer data in internal table ?
What is pakey structure, pshd1 structure and what type of fields it contains? : abap hr
what is Cross Applications?
When writing BDC for MM01 how do you take care of views?
What are the different types of parameters? : abap modularization
What are work process in ABAP?