2007 Oct 02 3:34 PM
Hi, is there any way to force the execution of the PBO process??
I've got a screen '2000'. From that screen i'm calling a popup window (4000), but my problem is the following: when i close this pop-up i need the PBO of screen 2000 to be executed, but this PBO is not fired anyway.
How can i do that???
2007 Oct 02 3:36 PM
HI,
We do not have an option to force the PBO, but you can do this way, once you close the Popup screen, then write the next step as CALL SCREEN '2000', so that the PBO will be called again
Regards
Sudheer
2007 Oct 02 3:36 PM
HI,
We do not have an option to force the PBO, but you can do this way, once you close the Popup screen, then write the next step as CALL SCREEN '2000', so that the PBO will be called again
Regards
Sudheer
2007 Oct 02 3:44 PM
The PBO of screen 2000 will execute right after the PAI of that screen finishes.
Rob
2012 Jan 25 11:19 AM
Fairly old, but since I never remember myself, there's my favorite way ([see here|http://help.sap.com/saphelp_470/helpdata/en/2a/755b94ca5911d299af5c9604c10e27/frameset.htm]):
cl_gui_cfw=>set_new_ok_code( 'Foo' ).
cl_gui_cfw=>flush( ).
This will force a PAI, and the PBO will follow, so pay attention on which okcode you pick.