‎2008 Dec 04 11:04 AM
I have created a Transaction using two screens,one is normal screen(100) and the other one is subscreen(110).
In flow logic of 100 PBO, I have written the following statement.
call subscreen SUB including 'zmod1' '110'.
I have activated the two screens.But I am getting run time error.
Error:
Program "zmod1" tried to use screen "0110".
The screen does not exist.
Can any one please give me the solution for this problem.
‎2008 Dec 04 11:09 AM
Ensure screen 110 is activated.
Try changing call to
call subscreen SUB including 'ZMOD1' '0110'.Moreover do not forget to write
CALL SUBSCREEN SUB
in your PAI.
Regards,
Mohaiyuddin
‎2008 Dec 04 11:09 AM
Ensure screen 110 is activated.
Try changing call to
call subscreen SUB including 'ZMOD1' '0110'.Moreover do not forget to write
CALL SUBSCREEN SUB
in your PAI.
Regards,
Mohaiyuddin
‎2008 Dec 04 11:10 AM
check wheather u have written CALL SUBSCREEN: AREA1in pai r not
see below example
PROCESS BEFORE OUTPUT.
MODULE STATUS_100.
CALL SUBSCREEN: AREA1 INCLUDING SY-REPID NUMBER1,
AREA2 INCLUDING SY-REPID NUMBER2.
PROCESS AFTER INPUT.
MODULE CANCEL AT EXIT-COMMAND.
MODULE SAVE_OK.
CALL SUBSCREEN: AREA1,
AREA2.
MODULE USER_COMMAND_100.
‎2008 Dec 04 11:13 AM
Hi,
Program name must be upper case.
call subscreen SUB including 'ZMOD1' '110'.
‎2008 Dec 04 11:14 AM
Hi,
make sure that you select the subscreen radio button in the SCREEN attribute tab of screen 110.
regards
Ramchander Rao.K