Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Regarding error messages &submit

Former Member
0 Likes
568

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???

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
512

i think it is better to use export and import is any help on this export and import statements???

2 REPLIES 2
Read only

Former Member
0 Likes
513

i think it is better to use export and import is any help on this export and import statements???

Read only

0 Likes
512

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.