창하나 띄우면서 사이즈 조절을 하려고하는데
뒤쪽에 붙는 숫자들을 조절하려니 그냥 통밥으로 하고 있네요 ㅠ.ㅠ
at 뒤에 붙는 숫자들이 정확히 어떤식인지 설명좀 해주세요
그냥 숫자 조절해가면서 눈짐작으로 사이즈를 맞추려니 깝깝하네요
예)
CALL SCREEN 1100 STARTING AT 5 5
ENDING AT 30 8.
창하나 띄우면서 사이즈 조절을 하려고하는데
뒤쪽에 붙는 숫자들을 조절하려니 그냥 통밥으로 하고 있네요 ㅠ.ㅠ
at 뒤에 붙는 숫자들이 정확히 어떤식인지 설명좀 해주세요
그냥 숫자 조절해가면서 눈짐작으로 사이즈를 맞추려니 깝깝하네요
예)
CALL SCREEN 1100 STARTING AT 5 5
ENDING AT 30 8.
CALL SCREEN
Syntax
CALL SCREEN dynnr
[STARTING AT col1 lin1
[ENDING AT col2 lin2]].
Addition:
... STARTING AT col1 lin1 [ENDING AT col2 lin2]
Effect
This statement calls the dynpro with the dynpro number specified in dynnr. For dynnr, a data object of type n and length 4 is expected. The call starts a new dynpro sequence, which is embedded into the current dynpro sequence. The dynpro with dynpro number dynnr is the initial dynpro of the dynpro sequence. In a dynpro sequence started by a transaction code, you can nest up to 50 other dynpro sequences.
The called dynpro sequence is terminated as soon as one of the involved dynpros branches to a next dynpro with number 0. The program continues after CALL SCREEN.
The statement CALL SCREEN accesses the dynpros of the relevant main program of the current program group and these use the global data and dialog modules of the main program. Except when calling a dynpro in an externally called subroutine, the main program usually is the current program. If the specified dynpro does not exist in the main program of the program group, an untreatable exception occurs.
By default, the screens of all dynpros of the called dynpro sequence are displayed in the current window. Use addition STARTING AT to open a modal dialog window.
Addition
... STARTING AT col1 lin1 [ENDING AT col2 lin2]
Effect
Use addition STARTING AT to open a new popup level and to display all screens of the called dynpro sequence in a modal dialog window. The upper left corner of the dialog window is determined by the values col1 and lin1 for column and line. The values refer to the window with popup level 0. The lower right corner is set automatically or you can use col2 and lin2 to specify it after ENDING AT. For col1, lin1, col2 and lin2, data objects of type i are expected. The values of col1, lin1 should be smaller than those of col2, lin2, because otherwise the behavior is undefined. The maximum popup level is 9.
Notes
Exceptions
Non-Catchable Exceptions
Runtime Error: DYNPRO_NOT_FOUND