‎2007 Feb 22 2:37 PM
in call transaction how can i run backgroud processing
if errors occurs when i am uploading data by using call transaction .
where i can found error records?
‎2007 Feb 22 2:39 PM
ur program has call transaction and at same time the various success and error messages are captured....we use write:/ to display these messages....
now, when u schedule the program for background...all these message statements are written in a spool which can be viewed later for error messages...
‎2007 Feb 22 2:39 PM
ur program has call transaction and at same time the various success and error messages are captured....we use write:/ to display these messages....
now, when u schedule the program for background...all these message statements are written in a spool which can be viewed later for error messages...
‎2007 Feb 22 2:40 PM
check the syntax -
CALL TRANSACTION '<tcode>' USING <table> MODE <Mode> MESSAGES INTO <table>.
Use A & N for fore ground and back ground.
Message will store errors.
Regards,
Amit
Reward all helpful replies.
‎2007 Feb 22 2:42 PM
‎2007 Feb 22 2:43 PM
You can use following sentence to call transaction Backg.
CALL TRANSACTION 'TCODE' USING 'INTERNAL TABLE' MODE 'N' UPDATE 'A or S' Messages into 'INTERNAL TABLE'.
Use Internal Table to capture the data. Then save that internal table to a Txt file and save it to Presentation server using LOGICAL Path.