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

Password !!!

Former Member
0 Likes
538

Hi All,

How can I print stars for the field password on the selection-screen?

Thanks All in advance.

1 ACCEPTED SOLUTION
Read only

vinod_vemuru2
Active Contributor
0 Likes
510

Hi Swapna,

Do like this.

AT SELECTION-SCREEN OUTPUT.

LOOP AT SCREEN.

CHECK screen-name = 'PO_PW'. " UR parameter name

screen-invisible = 1.

MODIFY screen.

EXIT.

ENDLOOP.

Thanks,

Vinod.

Edited by: Vinod Reddy Vemuru on Jul 8, 2008 6:21 PM

4 REPLIES 4
Read only

vinod_vemuru2
Active Contributor
0 Likes
511

Hi Swapna,

Do like this.

AT SELECTION-SCREEN OUTPUT.

LOOP AT SCREEN.

CHECK screen-name = 'PO_PW'. " UR parameter name

screen-invisible = 1.

MODIFY screen.

EXIT.

ENDLOOP.

Thanks,

Vinod.

Edited by: Vinod Reddy Vemuru on Jul 8, 2008 6:21 PM

Read only

Former Member
0 Likes
510

write this code ..

parameters : p_pass(20).

initialization.

loop at screen.

if screen-name = 'P_PASS'.

screen-invisible = '1'.

modify screen.

endif.

endloop.

Read only

RaymondGiuseppi
Active Contributor
0 Likes
510

Try this

PARAMETERS password(10) MODIF ID psw.

AT SELECTION-SCREEN OUTPUT.
  LOOP AT SCREEN.
    IF screen-group1 = 'PSW'  " parameter 
    AND screen-input = 1. " and not text field
      screen-invisible = 1.
      MODIFY SCREEN.
    ENDIF.
  ENDLOOP.

Regards

Read only

Former Member
0 Likes
510

Thanks All