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

Calling transaction

Former Member
0 Likes
536

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
Read only

former_member195698
Active Contributor
0 Likes
511

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

3 REPLIES 3
Read only

former_member195698
Active Contributor
0 Likes
512

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

Read only

johndeconinck
Participant
0 Likes
511

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.

Read only

Former Member
0 Likes
511

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