‎2008 Jul 19 8:03 AM
Hi
i have developed a module-pool prg..
at end of screen i have a requirement to pop up
window & do entries...
..but now i have
created a table control
i want to call this table control at end of user screen as popup...
can any one help me...
‎2008 Jul 22 10:59 AM
Hi Friend,
Yes you can do it, if the table control is in different screem.
After the processing of one screen...
CALL SCREEN <screen number> STARTING AT 10 20
ENDING AT 50 60. It will pop up.
Regards
Krishnendu
‎2008 Jul 22 10:59 AM
Hi Friend,
Yes you can do it, if the table control is in different screem.
After the processing of one screen...
CALL SCREEN <screen number> STARTING AT 10 20
ENDING AT 50 60. It will pop up.
Regards
Krishnendu
‎2008 Jul 22 11:02 AM
hiii
you can create a dialog screen with table control..and at the end of the screen while you click or any other event is triggered call that screen using CALL SCREEN 200.
regards
twinkal
‎2008 Jul 22 11:06 AM
Hi,
Yes this can be done ur table control should be on other screen,
Plz look at the example code.
MODULE user_command_9001 INPUT.
CASE g_ok_code .
WHEN '....'.
PERFORM f0601_save.
WHEN '......'.
PERFORM f0600_show_selections.
**CALL SCREEN 9002 STARTING AT 1 1 ENDING AT 130 20*.*
ENDCASE.
ENDMODULE. " USER_COMMAND_9001 INPUThope this heps.
plz reward if useful.
thanks,
dhanashri.
‎2008 Jul 22 5:59 PM