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

create error journal

Former Member
0 Likes
424

Hello,

I created a batch input for a transaction.

When I do call transaction all error messages are stored in an internal table.

What I want to do is, after the batch input is complete, to display a log with all errors stored in this table.

I've noticed that many standard transactions display an error journal... how do I do this?

Thank you.

2 REPLIES 2
Read only

Former Member
0 Likes
393

Hi,

You must be calling the transation in loop for the number of intries in internal table. After every call transaction you will get the error messages in the Itab.Append those entries in a seperate error itab.

After you are done. Display all the data in the error itab after formatting.

Thanks,

Vivekanand

Read only

0 Likes
393

I know this.. what I don't know is which FM to use to display the error log, I guess there can be something better/proper than Reuse alv grid ....

Thank you.