2006 Sep 13 9:24 AM
Hello,
I would like to create a parameter in a selection screen to enter a password. How can i made this parameter invisible in order to, do not show the password that is entered?
Thanks in advance
Regards
Rui
2006 Sep 13 9:26 AM
report zrich_0001.
parameters: p_pass(20) type c.
at selection-screen output.
loop at screen.
if screen-name = 'P_PASS'.
screen-invisible = '1'.
modify screen.
endif.
endloop.
rgds
anver
2006 Sep 13 9:26 AM
report zrich_0001.
parameters: p_pass(20) type c.
at selection-screen output.
loop at screen.
if screen-name = 'P_PASS'.
screen-invisible = '1'.
modify screen.
endif.
endloop.
rgds
anver
2006 Sep 13 9:27 AM
PARAMETERS : P_PASS(6).
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
IF SCREEN-NAME = 'P_PASS'.
SCREEN-INVISIBLE = '1'.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
2006 Sep 13 9:28 AM
2006 Sep 13 9:30 AM
hi
good
WRITE YOUR STATEMENT LIKE THIS
PARAMETERS: p_rfc TYPE c NO-DISPLAY.
THANKS
MRUTYUN^
2006 Sep 13 9:33 AM
Hi
One way to suit your requirement can be done by
calling FM: SSFH_PASSWORD_PROMPT.
Kind Regards
Eswar
2006 Sep 13 9:40 AM
Hi Rui,
try this:
parameters: bcode like RSYST-bcode MODIF ID INV.
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
IF SCREEN-GROUP1 EQ 'INV'.
SCREEN-INVISIBLE = '1'.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
Regards, Dieter
2009 Jan 28 8:08 AM
Hie Rui ,
The simplest method of having a password field for parameters is :-
1> Go to Tcode- se51.
2> Give your report name and screen name 1000 and select 'Layout Editor'
3> Choose the parameter and go to it's Edit Mode
4> Double click on the parameter name .
5> In the Attributes section .
i> Under programs check mark the *Entry and
ii> Under Display , check mark the Invisible
6> Now save and activate the screen .
7> Now execute your report , you will have password field in your parameters.
Thanks
Lokesh
2009 Mar 05 7:38 AM
PARAMETERS p_pass(20) TYPE c LOWER CASE.
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.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |