‎2007 Sep 04 7:54 PM
i want to a screen with * * * in slect-options Or parameters ?
in low value * * * , high value with * * * ?look like a password ?
how can we can create it ?
‎2007 Sep 05 6:04 AM
Ferry has already replied
make SCREEN-INVISIBLE = '1'. so that it will not display the actual data and it will display as ****.
‎2007 Sep 04 8:01 PM
Hi,
Please try something like this.
PARAMETERS: P_HOST(30) TYPE C LOWER CASE OBLIGATORY,
P_USER(30) TYPE C LOWER CASE OBLIGATORY,
P_PWD(30) TYPE C LOWER CASE OBLIGATORY.
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
IF SCREEN-NAME = 'P_PWD'.
SCREEN-INVISIBLE = '1'.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
Regards,
Ferry Lianto
‎2007 Sep 05 5:26 AM
Hi
parameters : p_mara type mara-matnr modif id s1.
at selection-screen output.
loop at screen.
if screen-group1 = 's1'.
p_mara = '****".
endif.
endloop.
reward if usefull
‎2007 Sep 05 6:04 AM
Ferry has already replied
make SCREEN-INVISIBLE = '1'. so that it will not display the actual data and it will display as ****.