‎2007 Sep 18 8:57 AM
Hi,
I created 9000 main screen and tab strip control on the main screen 9000.
I am controlling the three sub screens on the main screen( subscreens are 9001,9002,9003).
In 9001 subscreen i am adding two text box and a push button.
My requirement is when ever i click the push button ,how to call the subscreen area of 9003 for printing output.
‎2007 Sep 18 9:00 AM
Hi,
In your flow logic use a variable to pass the screen number to the CALL SUBSCREEN statement.
And on the push button just set the variable to 9003.
Then automatically when the PBO is called again you will have this new screen.
Regards,
Sesh
‎2007 Sep 18 9:07 AM
Hi,
MODULE USER_COMMAND_9001 INPUT.
case okcode_9001.
when 'PUSH'.
SCRNO = 9003.
TABS-ACTIVETAB = 'TAB3'.
endcase.
ENDMODULE.
<b>flow logic:</b>
PROCESS BEFORE OUTPUT.
MODULE STATUS_9001.
CALL SUBSCREEN SUBA INCLUDING 'ZBHTSTRIP' SCRNO.
*
PROCESS AFTER INPUT.
MODULE USER_COMMAND_9001.
CALL SUBSCREEN SUBA.
rgds,
bharat.