‎2007 Apr 03 7:12 AM
hi all
how to declare password to make it appear as series of astericks * in selection screen.
‎2007 Apr 03 7:16 AM
REPORT ZTEST_ALV_CHECK MESSAGE-ID ZZ .
PARAMETERS : P_PASS(6).
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
IF SCREEN-NAME = 'P_PASS'.
SCREEN-INVISIBLE = '1'.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
‎2007 Apr 03 7:21 AM
hI..
parameters p_pw(10) type c .
at selection-screen output.
loop at screen.
if screen-NAME = 'P_PW'.
SCREEN-INVISIBLE = '1'.
ENDIF.
MODIFY SCREEN.
ENDLOOP.
Message was edited by:
Rammohan Nagam
‎2007 Apr 03 7:24 AM
Make the data type of the password field as RAW in the table.
You will see only * in the selection screen.
‎2007 Apr 03 7:26 AM
Hi,
Double click on text field on screen -- It will shows attribute screen -- attributes -- program and check box *entry.
This will help you.
Jogdand M B