Place 2 blocks in a line in a selection-screen
Hi,
I have to programm a selection screen where I have to put some parameters in a block, and in the same line other paramaters in ather block. It is possiblie to do it, and if so, how?
Thanks,
It is NOT allowed to do that:
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN BEGIN OF BLOCK B002 WITH FRAME TITLE TEXT-H02.
PARAMETERS: P1 ----
SELECTION-SCREEN POSITION 20.
PARAMETERS: P2 ----
SELECTION-SCREEN END OF BLOCK B002.
SELECTION-SCREEN END OF LINE.
You will get error. Maybe you can try to create screen by Screen painter and use Sub-screen to do that.
Hi,
I knew that I can do it like that. Thanks for your help, I will try as you wrote me.