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

call transaction

Former Member
0 Likes
750

hI.

in my program am calling another program using call transaction statment.

i want to move other screen when i press radiobutton, but in my program screen changes when i press execution button. how to correct this.

Regards

prajwal.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
731

In ur report in parameter for user command add

USER-COMMAND 'RDB',

Eg PARAMETERS: P_MRU RADIOBUTTON GROUP SEL DEFAULT 'X' USER-COMMAND AC.

In ur report in parameter for user command add

USER-COMMAND 'RDB',

Eg PARAMETERS: P_MRU RADIOBUTTON GROUP SEL DEFAULT 'X' USER-COMMAND AC.

5 REPLIES 5
Read only

Former Member
0 Likes
731

Hi Prajwal,

Can you please be more clear as exact issue and requirement.

Regards,

Atish

Read only

0 Likes
731

Hi Atish.

i want to call another program using Tcode.

Read only

0 Likes
731

Hi Prajwal,

Then you can just use CALL TRANSACTION.

If you want this program should automtically get called when you press Radio Button then you need to assign the USER-COMMAD to that radio button and based on that you need to use AT-SELECTION SCREEN.. event and there you need to call the transaction.

Regards,

Atish

Read only

Former Member
0 Likes
732

In ur report in parameter for user command add

USER-COMMAND 'RDB',

Eg PARAMETERS: P_MRU RADIOBUTTON GROUP SEL DEFAULT 'X' USER-COMMAND AC.

Read only

0 Likes
731

THANKS Arjun.