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

reg call transaction

Former Member
0 Likes
504

Hi All,

pls let me know whether is it posible to handle multiple transactions in call transaction ?

If yes,,,,,pls pls send the sample code for the above..

Thanks in advance

bye

4 REPLIES 4
Read only

Manohar2u
Active Contributor
0 Likes
478

I think you cannot call multiple transaction using single CALL TRANSACTION statement.

but...you can use CALL TRANSACTION multiple times in a single program.

Read only

Former Member
0 Likes
478

Hi,

Please explain your problem in detail.

Reagrds,

Mukul

Read only

amit_khare
Active Contributor
0 Likes
478

Hi,

No you cannot do that in single call transaction but you can write multiple call transactions one after another in your program.

Regards,

Amit

Reward all helpful replies

Read only

abdul_hakim
Active Contributor
0 Likes
478

hi

welcome to SDN.

You cannot handle multiple transaction with CALL TRANSACTION.

Instead you can LOOP through it for handling multiple transaction.

Something like.

LOOP AT ITAB.

CALL TRANSACTION.....

ENDLOOP.

Cheers,

Abdul Hakim,

Mark all useful answers...