Application Development and Automation 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: 
Read only

Selection Screens

Murali_Shanmu
SAP Champion
SAP Champion
0 Likes
696

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
Read only

Former Member
0 Likes
671

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

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 !!!!

5 REPLIES 5
Read only

hymavathi_oruganti
Active Contributor
0 Likes
671

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.

Read only

0 Likes
671

Hi

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

Read only

0 Likes
671

Any Suggestions ?

Read only

0 Likes
671

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

Read only

Former Member
0 Likes
672

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