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

in selection screen with * * * ?

Former Member
0 Likes
475

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 ?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
458

Ferry has already replied

make SCREEN-INVISIBLE = '1'. so that it will not display the actual data and it will display as ****.

3 REPLIES 3
Read only

Former Member
0 Likes
458

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

Read only

Former Member
0 Likes
458

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

Read only

Former Member
0 Likes
459

Ferry has already replied

make SCREEN-INVISIBLE = '1'. so that it will not display the actual data and it will display as ****.