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 screen framebox's width extension and select option position

Former Member
0 Likes
1,059

Hi,

when i code the following, the select option multiple selection button falls outside the framebox. Is there any way to increase the frame's width or adjust the select option's button? Can I control the select options' distance between the text and input field, the distance between input field skstar10-low and skstar10-high, as well as the position of the word "to" (at the left of skstar10-high)?

SELECTION-SCREEN BEGIN OF BLOCK C10_12 WITH FRAME.

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT (11) TEXT-042 FOR FIELD skstar10.

SELECT-OPTIONS: skstar10 FOR cosp-kstar.

SELECTION-SCREEN COMMENT 61(11) TEXT-043 FOR FIELD skstar11.

SELECT-OPTIONS: skstar11 FOR cosp-kstar.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN END OF BLOCK C10_12.

Hi,

when i code the following, the select option multiple selection button falls outside the framebox. Is there any way to increase the frame's width or adjust the select option's button? Can I control the select options' distance between the text and input field, the distance between input field skstar10-low and skstar10-high, as well as the position of the word "to" (at the left of skstar10-high)?

SELECTION-SCREEN BEGIN OF BLOCK C10_12 WITH FRAME.

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT (11) TEXT-042 FOR FIELD skstar10.

SELECT-OPTIONS: skstar10 FOR cosp-kstar.

SELECTION-SCREEN COMMENT 61(11) TEXT-043 FOR FIELD skstar11.

SELECT-OPTIONS: skstar11 FOR cosp-kstar.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN END OF BLOCK C10_12.

2 REPLIES 2
Read only

rvinod1982
Contributor
0 Likes
556

Hi,

Try this


SELECTION-SCREEN BEGIN OF BLOCK c10_12 WITH FRAME.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT (11) text-042 FOR FIELD skstar10.
SELECT-OPTIONS: skstar10 FOR cosp-kstar.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT (11) text-043 FOR FIELD skstar11.
SELECT-OPTIONS: skstar11 FOR cosp-kstar.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN END OF BLOCK c10_12.

Read only

Former Member
0 Likes
556

Hi

go to SE80 and Just go to the Screen Layout of your screen and increase the width of the frame, and do not add any screen fields over there,

Cheers

Ram