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 call transaction

Former Member
0 Likes
548

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?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
530

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

4 REPLIES 4
Read only

Former Member
0 Likes
531

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

Read only

amit_khare
Active Contributor
0 Likes
530

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.

Read only

Former Member
0 Likes
530

For error handling in call transaction method, have a look at below thread:

Best Regards,

Vibha

*Please mark all the helpful answers

Read only

Former Member
0 Likes
530

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.