Application Development 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: 

Calling transaction

Former Member
0 Kudos

Hi Experts,

While selecting one tab in application toolbar I am calling one transaction. I wanted to autopopulate 2 fields of previous screen to next screen (i.e. called transaction).

I have written code like

WHEN 'ZABC'.

SET parameter id 'XYZ' field itab-f1.

SET parameter id 'MNO field itab-f2.

CALL TRANSACTION 'ZABC'.

After executing the above code the control will move to ABC transaction & populate the F1 field in ABC transaction but it doesn't populate the F2 field.

Anybody will pls tell me how to do it??

1 ACCEPTED SOLUTION

former_member195698
Active Contributor
0 Kudos

Fill the field PARAMETERID in the Field Attributes for F2 with MNO. Also check the GET Parameter checkbox.

3 REPLIES 3

former_member195698
Active Contributor
0 Kudos

Fill the field PARAMETERID in the Field Attributes for F2 with MNO. Also check the GET Parameter checkbox.

johndeconinck
Participant
0 Kudos

Hi Neha,

Check on the data element of the field you populate if the parameter ID exists. Also check if it's not overwritten with a user default.

Kind regards,

John.

Former Member
0 Kudos

Hi Neha,

Use Get Parameter Id in the second screen for both the fileds.

And check the Syntax for your Set Parameter Id statement.

Hope it will work.

Regards.

Amit