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

password

Former Member
0 Likes
328

how can we get *'s in the password field in selection-screen?

1 REPLY 1
Read only

Former Member
0 Likes
211

E.g: Consider parameter as P_INPUT

You need to write code in AT SELECTION-SCREEN OUTPUT.

LOOP AT SCREEN.

CHECK SCREEN-NAME = 'P_INPUT'.

SCREEN-INVISIBLE = 1.

MODIFY SCREEN.

ENDLOOP.

Reward if its useful