Hi
don't use INITIALIZATION event to load a status gui
If you want to load it in selection screen use AT SELECTION-SCREEN OUTPUT, if you want to load it in your list use START-OF-SELECTION. So:
AT SELECTION-SCREEN OUTPUT
set pf-status '123'.
or
START-OF-SELECTION
set pf-status '123'.
Max
Hi Stephan,
you have choosen the wrong event for setting status.
Please use AT SELECTION-SCREEN OUTPUT.
See also http://help.sap.com/saphelp_nw04/helpdata/de/d3/2e974d35c511d1829f0000e829fbfe/frameset.htm
Stephan - sy-ucomm will be empty until the user presses a PF key or selects a line.
The pf keys have to be defined in status '123'. Double click on it to define it.
Check sy-ucomm at user-command or at line-selection.
Rob
Message was edited by: Rob Burbank
If you want to use Gui Status in selection screen different from the standard one use FM 'RS_SET_SELSCREEN_STATUS'.
http://help.sap.com/saphelp_nw04/helpdata/en/e7/0eb237e29bc368e10000009b38f8cf/frameset.htm
Svetlin
Add comment