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: 

user Parameters...

Former Member
0 Kudos

How do we catch the User Parameters in a program?

3 REPLIES 3

former_member156446
Active Contributor
0 Kudos

using system variable sy-ucomm

Former Member
0 Kudos

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

Former Member
0 Kudos

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.