‎2009 Jul 21 2:29 PM
How to display parameters one beside the other instead of one below the other in the normal selection screen
Thank U.
‎2009 Jul 21 2:34 PM
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
‎2009 Jul 21 2:31 PM
Hey use selection screen comment statement and dont use text for that parameter..
Raghav
‎2009 Jul 21 2:34 PM
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
‎2009 Jul 21 2:34 PM
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
‎2009 Jul 21 2:34 PM
Hi,
Use selection screen begin of line
selection screen end of line.
regards,
Rama reddy