‎2006 Nov 08 8:55 AM
Hi,
I'm facing a problem with GUI status. I've created status. Inside it there are 3 buttons BACK,EXIT, and RW.
After selection I'm not able to see them at all.
I've put my status here:
END-OF-SELECTION.
set pf-status 'STAT'.
Regards,
Wojciech
‎2006 Nov 08 9:07 AM
hi,
put it under <b>START-OF-SELECTION.</b>
hope this helps,
do reward if it helps,
priya.
Message was edited by: Priya
‎2006 Nov 08 9:00 AM
Why you have coded it in end-of-selection?
Just debug the report and check whether end-of-selection is triggered or not. might be the case where this event is not triggered then that pf status wil not be applied.
‎2006 Nov 08 9:01 AM
Hello,
SET the PF status in the PBO of the screen.
If useful reward,
Vasanth
‎2006 Nov 08 9:02 AM
hi,
put it in
start-OF-SELECTION.
set pf-status 'STAT'.
Regs
Manas Ranjan Panda
‎2006 Nov 08 9:10 AM
Hi,
I've tried here:
start-OF-SELECTION.
set pf-status 'STAT'.
and also in PBO.
By the way I'm raising an error and maybe due that this buttond don't appear.
Regards,
Wojciech
‎2006 Nov 08 9:07 AM
hi,
put it under <b>START-OF-SELECTION.</b>
hope this helps,
do reward if it helps,
priya.
Message was edited by: Priya
‎2006 Nov 08 9:09 AM
Make sure you haven't put any 'write' statements in your start-of-selection event. If so you should set the status just after 'start-of-selection'.
‎2006 Nov 08 9:16 AM
hi,
Goto SE41 and check whether that menu is saved and activated. I hope u might not have done that.
Regards...
Arun.
‎2006 Nov 08 9:18 AM
Hi Wojceich,
are you using this PF-STATUS for ALV GRID in OO?
I use it like this:
MODULE PBO OUTPUT.
*
SET PF-STATUS 'MAIN100'.
*
...
START-OF-SELECTION.
*
...
CALL SCREEN 100.
*
Regards, Dieter
‎2006 Nov 08 9:24 AM
Hi,
I'm using normal write list. Where I'm raising messages with errors and if such error occure I'd like to give for user possibility to go back to selection screen.
Regards,
Wojciech
‎2006 Nov 08 9:27 AM
Hi,
code for pf-status in PBO module of screen as:
MODULE STATUS_0100 OUTPUT.
SET PF-STATUS 'SCR100'.
SET TITLEBAR 'MAINTPLAN'.
Hope it helps.
Reward if helpful.
Regards,
Sipra
‎2006 Nov 08 9:33 AM
Hi,
In PBO it works but I'd like to have it after selection on selection screen.
Regards,
wojciech
‎2006 Nov 08 9:45 AM
If you want to get after the selection,
then place it in PAI(Process After Input)
‎2006 Nov 08 9:53 AM
hi,
The pf status will always be set in the pbo Module.
If you want to set in only under cetrain events.Then in PAI module check for those events and set a flag if the event has occured. say w_flag = 'X'. And in PBO module check for this flag. If w_flag = 'X'. Set pf status.
claer w_flag.
‎2006 Nov 10 12:36 PM
problem was due to error message, error message is stoping everything and exiting from program after displaying a message