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

Syntax regarding password

Former Member
0 Likes
462

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
Read only

Former Member
0 Likes
419

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
Read only

Former Member
0 Likes
420

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!!

Read only

former_member194669
Active Contributor
0 Likes
419

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

a®s.

Read only

Former Member
0 Likes
419

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.