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

Execute Transaction into another Client

former_member611006
Active Participant
0 Likes
540

Hi Experts,

into my client A, I want to call a transaction into client B, into a new window...

I've tried :

CALL FUNCTION 'ABAP4_CALL_TRANSACTION'
          STARTING NEW TASK 'Test'
          DESTINATION 'CLIENT_B'
          EXPORTING
            tcode                   = 'Z_TA_NAME'
            skip_screen             = 'X'
          TABLES
            spagpa_tab              = gt_par
          EXCEPTIONS
            call_transaction_denied = 1
            tcode_invalid           = 2
            OTHERS                  = 3.

But it doesn't seems to work, any idea ?

Regards,

David

1 ACCEPTED SOLUTION
Read only

madan_ullasa
Contributor
0 Likes
471

Hi,

Check if you are passing the correct destination... And also the ALE settings should allow you to log on to the other client...

regds,

Madan....

1 REPLY 1
Read only

madan_ullasa
Contributor
0 Likes
472

Hi,

Check if you are passing the correct destination... And also the ALE settings should allow you to log on to the other client...

regds,

Madan....