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: 

call screen and pass parameters to the called screen

Former Member
0 Kudos

hi,all

i have a tech specification that is : in screen 100, i call another screen 101 and pass some parameters to the called screen 101.

any idea of how to implement this .

thanks a lot in advance.

1 ACCEPTED SOLUTION

bpawanchand
Active Contributor
0 Kudos

Hi

Use SET PARAMETER ID and GET PARAMETER ID theory inorder to get the things done as per your requirement.

Regards

Pavan

7 REPLIES 7

bpawanchand
Active Contributor
0 Kudos

Hi

Use SET PARAMETER ID and GET PARAMETER ID theory inorder to get the things done as per your requirement.

Regards

Pavan

Former Member
0 Kudos

Hi,

1. For setting the parameter values, you need to set parameter id.

2. To call screen use call screen <screen number>.

Goto tcode abapdocu and give set as keyword, you can find documentation to pass values to screen.

Thanks & Regards,

Navneeth K.

Former Member
0 Kudos

Hi David,


use set parameter id to catch the values and use
 call screen or set screen to populate ur values in it..

regards,

Vamshi

Former Member
0 Kudos

Hello,

When call the 100 there u will be doing some action i.e clicking the button or press enter. if click the push button in that sy-ucomm u call another screen number 101.

U can call the screen by using this syntax

CALL SCREEN 101 STARTING AT 50 7 ENDING AT 110 11.

Former Member
0 Kudos

Hi,

Use call screen '101'. to call the screen.

and use SET PARAMETER & GET PARAMETER to pass the variables.

Thakns

Rajesh

Former Member
0 Kudos

hi,

in pai of screen 100

write call screen '101' and use

SET PARAMETER ID 'MAT' FIELD your_field.

regards,

Lokesh

Former Member
0 Kudos

thanks all, issue closed!