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

parameter for password

Former Member
0 Likes
366

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?

2 REPLIES 2
Read only

Former Member
0 Likes
341
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.

kishan negi

Read only

Former Member
0 Likes
341

Check this link..