‎2009 Mar 18 12:31 AM
Hi have a customised transaction zc10 which is a report with the selection screen. if we enter the fields
and execute it will update co01 record by record manualy. previously this is executed record by record and
it displays error messages.but now i have written a cal transaction for this zc10 so that all the reocrds
can be updated but now i want to get the error messages to be diplayed by new program which are being displayed
when zc10 is executed how can i write the submit and get those error messages of zc10 into my new program???
‎2009 Mar 18 12:42 AM
i think it is better to use export and import is any help on this export and import statements???
‎2009 Mar 18 12:42 AM
i think it is better to use export and import is any help on this export and import statements???
‎2009 Mar 18 2:21 AM
Hi,
use
EXPORT it_messages TO MEMORY ID 'MEMORY_ID'.
SUMBMIT PGM2. in the first program. (bdc program.).
in second program.
IMPORT it_messages FROM MEMORY ID 'MEMORY_ID'.
Guru.