2007 Oct 24 9:56 AM
hi friends..
i want to create one input field in my selection screen for password.
i.e data is invisible to the user.. is it possible in selection screen
i m not using screen painter, just i am using se38 editor..
thanks in advance
hi friends..
i want to create one input field in my selection screen for password.
i.e data is invisible to the user.. is it possible in selection screen
i m not using screen painter, just i am using se38 editor..
thanks in advance
2007 Oct 24 9:59 AM
Check this code
PARAMETERS: p_pass(10).
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
IF screen-name = 'P_PASS'.
screen-invisible = '1'.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
START-OF-SELECTION.
WRITE : p_pass.Regards
Gopi
2007 Oct 24 10:01 AM
HI,
see this code
PARAMETERS:password(10).
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
IF screen-name = 'PASSWORD'.
screen-invisible = 1.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
START-OF-SELECTION.
write:/ password.
rgds,
bharat.
2007 Oct 24 10:12 AM
Hi,
it is possible in SE38.. check the code
PARAMETER p_name TYPE string.
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
IF screen-name = 'P_NAME'.
screen-invisible = 1.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
2007 Oct 24 10:14 AM
Except for the parameter name there are 3 identical answers to this question now....
What is that supposed to be good for? Confusion?
2007 Oct 24 10:17 AM
2007 Oct 24 10:20 AM
Sounds reasonable....
Even though 12 minutes difference points to a veeeery slow connection.
Makes internet kind of an ordeal, doesn´t it?