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

Modify Screen

Former Member
0 Likes
619

How to display parameters one beside the other instead of one below the other in the normal selection screen

Thank U.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
577

Hi,

Please Refer this Code,

SELECTION-SCREEN BEGIN OF BLOCK out WITH FRAME TITLE text-s01.

selection-screen begin of line.

parameters: p_type radiobutton group grp1.

selection-screen comment 4(15) text-010 for field p_type.

selection-screen position pos_low.

parameters: p_tinput like p2001-awart.

selection-screen end of line.

selection-screen begin of line.

parameters: p_reason radiobutton group grp1.

selection-screen comment 4(17) text-010 for field p_reason.

selection-screen position pos_low.

parameters: p_rinput like p2001-umsch.

selection-screen end of line.

SELECTION-SCREEN END OF BLOCK out.

Thanks

4 REPLIES 4
Read only

former_member182354
Contributor
0 Likes
577

Hey use selection screen comment statement and dont use text for that parameter..

Raghav

Read only

Former Member
0 Likes
577

see the below example,

SELECTION-SCREEN: BEGIN OF LINE,

COMMENT 1(33) PA_CMNT1.

PARAMETERS: PA_DEL_F TYPE C AS CHECKBOX.

SELECTION-SCREEN: END OF LINE.

Regards,

Vimal.

Edited by: Vimal V on Jul 21, 2009 3:34 PM

Read only

Former Member
0 Likes
578

Hi,

Please Refer this Code,

SELECTION-SCREEN BEGIN OF BLOCK out WITH FRAME TITLE text-s01.

selection-screen begin of line.

parameters: p_type radiobutton group grp1.

selection-screen comment 4(15) text-010 for field p_type.

selection-screen position pos_low.

parameters: p_tinput like p2001-awart.

selection-screen end of line.

selection-screen begin of line.

parameters: p_reason radiobutton group grp1.

selection-screen comment 4(17) text-010 for field p_reason.

selection-screen position pos_low.

parameters: p_rinput like p2001-umsch.

selection-screen end of line.

SELECTION-SCREEN END OF BLOCK out.

Thanks

Read only

Former Member
0 Likes
577

Hi,

Use selection screen begin of line

selection screen end of line.

regards,

Rama reddy