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

user Parameters...

Former Member
0 Likes
507

How do we catch the User Parameters in a program?

3 REPLIES 3
Read only

former_member156446
Active Contributor
0 Likes
467

using system variable sy-ucomm

Read only

Former Member
0 Likes
467

hi there

system variable sy-ucomm is used to check the command entered by the user...its value can then be matched with different parameters to execute the corresponding code...

regards

niharika

Read only

Former Member
0 Likes
467

hi,

sy-ucomm is the sytem variable used for catching user parameters.Whatever user parameters we create in the program get stred in the variable sy-ucomm.

For this u need the data declaration ok_code like sy-ucomm.

Any user parameter in the program is assigned to this system variable.