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.
I would like to create a parameter in a selection screen to enter a password. How can i made this parameter invisible in order to, do not show the password that is entered?
parameters: p_pass(20) type c.
at selection-screen output.
loop at screen.
if screen-name = 'P_PASS'.
screen-invisible = '1'.
modify screen.
endif.
endloop.