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: 

Syntax regarding password

Former Member
0 Kudos

Hi ,

I just want the user to enter user-id and password .

What the syntax i should give , so that the password comes in ***.

Sorry for this silly qiestion.

Regards

Raj

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi raj,

There is nothing like silly question.

If you are going through customized screen then go to layout of the screen and double click on the password input field there by opens new window in which goto Attributes - > display - > and select the check box Invisible that will make your field invisible to see the text rather will display ******.

Hope my answer helps you.

Cheers!!

3 REPLIES 3

Former Member
0 Kudos

Hi raj,

There is nothing like silly question.

If you are going through customized screen then go to layout of the screen and double click on the password input field there by opens new window in which goto Attributes - > display - > and select the check box Invisible that will make your field invisible to see the text rather will display ******.

Hope my answer helps you.

Cheers!!

former_member194669
Active Contributor
0 Kudos

please search in this forum , you can find lot of threads similar to your question.

a®s.

former_member188685
Active Contributor
0 Kudos

just check this code...

parameters: paswd(30).

at selection-screen output.
loop at screen.
 if screen-name = 'PASWD'.
  screen-invisible = 1.  "this will make that option.
  modify screen.
endif.
endloop.