Paramater on selection screen to look like password field

Question:
Is it possible to make a parameter on a selection screen look like the password field on the initial SAP login i.e. when the user types a value into the field, the characters are displayed as '*'?
Thanks
Iwan
Answer:
Iwan,
From what I remember, you have to set the 'invisible' attribute on the I/O field. In this case, it doesn't hide the field, it just hides the text being typed in, like a password field.
Hope this helps.
Mike Speight
Answer:
Such option is not avaialble with Parameters or Select-options used in selection screens.
Hi, Iwan..
We can not make I/O with Parameters declared in select-options, we can only make Parameter inivisble not the data that is keyed in.
Answer:
PARAMETERS: passw(10) modif id sc1.
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
IF SCREEN-GROUP1 = 'SC1'.
SCREEN-invisible = '1'.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
hope this helps u....
Answer:
PARAMETERS: passw(10) modif id sc1.
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
IF SCREEN-GROUP1 = 'SC1'.
SCREEN-invisible = '1'.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
hope this helps u....
this will make the field invisible on the selection screen...what the
Answer:
PARAMETERS: passw(10) modif id sc1.
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
IF SCREEN-GROUP1 = 'SC1'.
SCREEN-invisible = '1'.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
hope this helps u....
this will make the field invisible on the selection screen...what the
Dear Guest,
test the code and afterward apologize.
CaKe
Answer:
Cake .
but that makes the selection text disappear , only the field appears with many * in it ? how to give a selection text ?
Answer:
selection screen comment - in the on line help
Answer:
Try adding selection screen comments:
try creating the variable with reference to usr02-BCODE. This should give it the password like attributes...
No codeboy it wont work will not give '*' , will give '0' , me too had tried it much before , Hans Hermann and Keith S 's suggestions will work . And i dont think there's any other way to do this .
Answer:
SELECTION-SCREEN BEGIN OF BLOCK blk1 WITH FRAME TITLE text-f01.
SELECTION-SCREEN BEGIN OF LINE.
*......MAKE FIELD text-t03 as PASSWORD in text elements........
SELECTION-SCREEN COMMENT 01(22) text-t03.
SELECTION-SCREEN POSITION 33.
PARAMETERS: TEST1(10) MODIF ID SC1.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN END OF BLOCK blk1.
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
IF SCREEN-GROUP1 = 'SC1'.
SCREEN-invisible = '1'.
MODIFY SCREEN.
ENDIF.
ENDLOOP.

More Articles:

SARA & archiving rv_likp?
Confusion in [b]tables: <table name> [/b]declaration?
idoc/bd12, status 03?
Index?
Split Header in ALV.urgent?
Could you tell me BAPI or FM to create Account Document?