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: 

how to modify the selection screen frame.

Former Member
0 Kudos
1,614

<b>Friends,

I need to create two separate blocks A | B.

Using SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME , we can able to create the blocks one below the other.

How to create two blocks side by side?

And also how to fix the size for the block

Example: block with specific height and width

Please help it

<b></b></b>

5 REPLIES 5

Former Member
0 Kudos
317

Hi,

You can't create Two or Multiple blocks using the Selection Screen Frames.

You can design them (different blocks) on SCREENS (Screen layout) using

SE51 transaction.

You can only create the Blocks one below the other using SELECTION SCREEN Frames.

Regards,

Anji

Former Member
0 Kudos
317

Hi,

If you use the WITH FRAME addition, a frame is drawn around the block. You can nest up to five different blocks with frames.

SELECTION-SCREEN BEGIN OF BLOCK RAD1
                          WITH FRAME TITLE TEXT-002.
  PARAMETERS R1 RADIOBUTTON GROUP GR1.
  PARAMETERS R2 RADIOBUTTON GROUP GR1.

SELECTION-SCREEN BEGIN OF BLOCK RAD2
                          WITH FRAME TITLE TEXT-002.
  PARAMETERS R3 RADIOBUTTON GROUP GR2.
  PARAMETERS R4 RADIOBUTTON GROUP GR2.
SELECTION-SCREEN END OF BLOCK RAD2.

SELECTION-SCREEN END OF BLOCK RAD1.

Regards

Sudheer

0 Kudos
317

In this case screen comes one in another ..

but how to get these screens side by side.??

We can design the screens side by side or ij any manner through SE 51. but how can we make these things in selection-screen(screen number 1000) i.e frames or blocks side by side

Message was edited by:

RK Pasupuleti

sreeramkumar_madisetty
Active Contributor
0 Kudos
317

Hi

You can design the selection blocks side by side using the screen Painter.

For this use the transaction code SE51.

Regards,

kumar

Former Member
0 Kudos
317

Hi Vijay,

You can write a code for selection-screen block with frame and then you have to make changes to the screen '1000' of the program using SE51 transaction (screen painter).

Go to layout and resize and move the frames as per your requirement.

Reward points if helpful.

Thanks & Regards,

Kartavya Kaushik