2008 Nov 26 12:03 PM
Moderator message: please use a more informative subject in future
Hi,
I want to know if it's possible to personalize the selection-screen appears like:
if param = 'X'.
selection-screen...
parameters.....
select-options........
endif
Thanks
Edited by: Matt on Nov 26, 2008 3:44 PM
2008 Nov 26 12:06 PM
hI
**IGNORE FROM HERE
you can not declare the parameters locally ,
they always need to be global.
I think this is not possible.
UP TO HERE
this is possible
in AT SELECTION-SCREEN OUTPUT.
IF sy-uname = 'XXX'.
LOOP AT SCREEN
IF SCREEN-NAME = 'XXX.
SCREEN-INPUT = 0
SCREEN-ACTIVE = 0
SCREEN-INVISIBLE = 1
ENDLOOP.
ENDIF
Try this.
i just tried it and got
regards
Ramchander Rao.K
Edited by: ramchander krishnamraju on Nov 26, 2008 1:10 PM
2008 Nov 26 12:06 PM
hI
**IGNORE FROM HERE
you can not declare the parameters locally ,
they always need to be global.
I think this is not possible.
UP TO HERE
this is possible
in AT SELECTION-SCREEN OUTPUT.
IF sy-uname = 'XXX'.
LOOP AT SCREEN
IF SCREEN-NAME = 'XXX.
SCREEN-INPUT = 0
SCREEN-ACTIVE = 0
SCREEN-INVISIBLE = 1
ENDLOOP.
ENDIF
Try this.
i just tried it and got
regards
Ramchander Rao.K
Edited by: ramchander krishnamraju on Nov 26, 2008 1:10 PM
2008 Nov 26 12:07 PM
hi,
use loop at screen and then modify screen....
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
IF r_ib = 'X'.
IF screen-group1 = 'BL2'.
screen-active = 0.
screen-input = 0.
MODIFY SCREEN.
ENDIF.
ENDIF.
IF r_reject = 'X'.
IF screen-group1 = 'GR1'.
screen-active = 0.
screen-input = 0.
MODIFY SCREEN.
ENDIF.
ENDIF.
ENDLOOP.
2008 Nov 26 12:13 PM
I want display selection-screen or not in depend on a parameter on table.
2008 Nov 26 2:20 PM
I think it's ok
at selection-screen output
if param........
loop at screen
.
.
.
visible = 1.
endloop
Thanks
2008 Nov 26 12:10 PM
hi see this ...
if param = 'X'.
call screen 100 .
*----you can design what ever like select-options or parameters....
endif.
2008 Nov 26 12:11 PM
2008 Nov 26 2:44 PM