Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Selection Screens

Murali_Shanmu
Active Contributor
0 Kudos

Hi

I have a requirement where I need two Blocks with Titles in one line.

I am using the following line to create a Block :

SELECTION-SCREEN BEGIN OF BLOCK C1 WITH FRAME TITLE TEXT-C16.

SELECTION-SCREEN BEGIN OF BLOCK C2 WITH FRAME TITLE TEXT-C17.

The problem is i am getting them one below the other. I need something like

'SELECTION-SCREEN BEGIN OF LINE' to work for these blocks, so that i get these blocks in One line.

Can anyone Help !!!!

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi ,

I think you cant do that in a report selection screen. Your requirement can be done in Dialog screens.

There is a limitations of 72 characters on selection screen and it cant accommodate 2 blocks along with the set of fields within it.

Regards,

VJ

5 REPLIES 5

hymavathi_oruganti
Active Contributor
0 Kudos

probably the following may work

SELECTION SCREEN BEGIN OF LINE.

SELECTION-SCREEN BEGIN OF BLOCK C1 WITH FRAME TITLE TEXT-C16.

SELECTION-SCREEN BEGIN OF BLOCK C2 WITH FRAME TITLE TEXT-C17.

SELECTION SCREEN END OF LINE.

0 Kudos

Hi

We cannot have BLOCKS within BEGIN OF LINE. It does not allow.

0 Kudos

Any Suggestions ?

0 Kudos

i dont think it is possible....

may be you can try for a tabbed block...

selection-screen begin of tabbed block....

this creates a subscreen area on the selection screen and you can assign a screen to it....

or..as suggested...go for a dialog screen

rgds,

PJ

Former Member
0 Kudos

Hi ,

I think you cant do that in a report selection screen. Your requirement can be done in Dialog screens.

There is a limitations of 72 characters on selection screen and it cant accommodate 2 blocks along with the set of fields within it.

Regards,

VJ