‎2008 Dec 10 1:21 PM
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.
‎2008 Dec 10 1:24 PM
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
‎2008 Dec 10 2:27 PM
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.