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

Module pool-Password text

Former Member
0 Likes
517

Hi,

Is it possible to make invisible the star symbol which is coming in the text box we develop for entering the password...

4 REPLIES 4
Read only

Former Member
0 Likes
479

U CAN TRY IT BY LOOPING ON SCREEN ELEMEMTS AND MAKING THAT FIELD INVISIBLE .

Thanks

Rohit

Read only

seshatalpasai_madala
Product and Topic Expert
Product and Topic Expert
0 Likes
479

Hi,

Just goto Screen element attributes in SE51 and there for input Dropdown Select

"Invisible".

Else in PBO module write

LOOP AT SCREEN.

IF SCREEN-NAME = 'FIELD1'.

SCREEN-INVISIBLE = 1.

MODIFY SCREEN.

ENDLOOP.

Regards,

Sesh

Read only

Former Member
0 Likes
479

HI,

WHILE DESIGNING IT IN SCREEN

I.E FOR TEXT BOX IN SCREEN -> GOTO PROPERTIES [F4] -> TICK CKECK BOX PASSWORD . IT WILL BE AVAILABLE FOR U IN PROPERTIES OF TEXTBOX -> ACTIVATE.

IF HELPFUL REWARD SOME POINTS.

WITH REGARDS,

SURESH ALURI.

Read only

former_member799868
Participant
0 Likes
479

go to the screen layout...double click on the field.....in the attributs..there are three tabs

dictionary

program and display..

in display tab check thje check box invisible....

the field will appear as password field.....