‎2005 Sep 20 10:44 AM
The Requirement is,
In the parameters screen, the user has to enter the password.
But it should be Mask on screen as asterisks.
So the user has to enter the password But it should not be Visible in screen.
Hope I am clear.
How to do this in Parameter.
Thanks in advance.
‎2005 Sep 20 10:52 AM
Hi Sumi,
Look at the following code, it will be help ful to you.
parameter: p_pass(10) type c.
at selection-screen output.
loop at screen.
if screen-name = 'P_PASS'.
SCREEN-INVISIBLE = 1.
MODIFY SCREEN.
endif.
endloop.
Regards,
Phani
‎2005 Sep 20 10:49 AM
‎2005 Sep 20 10:51 AM
Hi Sumi (again),
Here's and example from the thread I just referred:
PARAMETERS: p_pwd(10) TYPE c LOWER CASE OBLIGATORY DEFAULT 'secret' MODIF ID 999.
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
IF screen-group1 = '999'.
screen-invisible = '1'.
MODIFY SCREEN.
ENDIF.
ENDLOOP.Regards,
Ville
‎2005 Sep 20 10:52 AM
Hi Sumi,
Look at the following code, it will be help ful to you.
parameter: p_pass(10) type c.
at selection-screen output.
loop at screen.
if screen-name = 'P_PASS'.
SCREEN-INVISIBLE = 1.
MODIFY SCREEN.
endif.
endloop.
Regards,
Phani
‎2005 Sep 20 10:58 AM