2008 May 20 5:10 PM
Hi.
I have a parameter in a Selection-screen.
When I put screen-invisible = 1 it just doesn't gets "invisible". The parameter stays filled with asterisks, like a password field. But I want the parameter to be hidden.
How can I hide this parameter?
2008 May 20 5:28 PM
Hi Brian,
You must do as follow:
LOOP AT screen.
...
MOVE 1 TO screen-invisible.
MODIFY screen.
ENDLOOP.
Greeting.
Hi.
I have a parameter in a Selection-screen.
When I put screen-invisible = 1 it just doesn't gets "invisible". The parameter stays filled with asterisks, like a password field. But I want the parameter to be hidden.
How can I hide this parameter?
2008 May 20 5:22 PM
hi,
do this way to make it invisible ...
PARAMETERS : P_MATNR LIKE MARA-MATNR NO-DISPLAY.
2008 May 20 5:28 PM
Hi Brian,
You must do as follow:
LOOP AT screen.
...
MOVE 1 TO screen-invisible.
MODIFY screen.
ENDLOOP.
Greeting.
2008 May 20 5:31 PM
Hi,
you should use:
Screen-Active = 1.
not INVISIBLE. - THIS IS FOR GIVING PASSWORD characterstics. So, it gived "*******" only.
Reward Points if helpful.
regards
Sandeep reddy
2008 May 20 5:37 PM
Try this way.
REPORT zmar.
TABLES sflight.
PARAMETERS p_carrid TYPE sflight-carrid.
SELECT-OPTIONS s_connid FOR sflight-connid.
INITIALIZATION.
LOOP AT SCREEN.
IF screen-name EQ 'P_CARRID'.
MOVE 1 TO screen-invisible.
MOVE 0 TO screen-input.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
Regards.
Marcelo Ramos
2008 May 20 5:40 PM
2025 Jun 26 8:10 PM
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |