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

Hiding Command field in GUI

Former Member
0 Likes
448

Hi Experts,

I have a requirement to hide the command field in GUI for a particular user, not for entire users. It’s possible to achieve this making any code in R/3 side???

Thanks in advance

Hi Experts,

I have a requirement to hide the command field in GUI for a particular user, not for entire users. It’s possible to achieve this making any code in R/3 side???

Thanks in advance

1 REPLY 1
Read only

Former Member
0 Likes
396

Hi Priya,

Check the sy-uname in your code and hide the required element using

loop at screen.

if screen-name = 'command1'.

screen-active = 0.

modify screen.

endif.

endloop.

hope this will help

regards

shibu