2007 Aug 09 12:47 PM
Hello colleagues,
I call a function module in a new task and then I create a new window with CALL SCREEN 1001. I (or customer) would not like to have a dialog box, so I cannot call CALL SCREEN 1000 STARTING AT 3 3 ENDING AT 80 24. I cannot set a screen size in a design phase for some reason. Is there a possibility to influence the screen size on runtime?
Kind regards
Radim Benek
2007 Aug 09 12:49 PM
Hi Radim,
You can see this only at run time but not at design time. You can't influence the size of the window in runtime. If you felt it is small or bigger, then do changes according to the STARTING AT and ENDINT AT positions.
Thanks,
Vinay
2007 Aug 09 12:51 PM
Please try to put variable in place of screen defination.
Like below ;
CALL SCREEN 1000 STARTING AT <VAR1> <VAR2>
ENDING AT <VAR3> <VAR4>.
The variable you can decide depend upon the contains need to display in new dialog window.
2007 Aug 09 1:21 PM
Hello colleagues,
if I do STARTING AT 3 3 ENDING AT 80 24 then a dialog box is created, which customer do not want. He wants to have a normal screen.
Regards
Radim