Hi ,
Have a parameter which i want to be invisible to the user as its a password. i am using the following code which isnt working. Can u give some suggestions.
Parameter : p_pwd(30) TYPE C LOWER CASE DEFAULT password' MODIF ID A.
AT SELECTION-SCREEN OUTPUT.
make password field invisible
LOOP AT SCREEN.
IF SCREEN-NAME = 'A'.
SCREEN-INVISIBLE = '1'.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
Regards,
Kumar