Radiobutton (inc desc) and entry field on same line of SAP selection screen


*ABAP 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.

Radiobutton (inc desc) and entry field on same line of SAP selection screen


*Abap code
SELECTION-SCREEN BEGIN OF BLOCK out WITH FRAME TITLE text-s01.
  SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS: p_filchk AS CHECKBOX.
    SELECTION-SCREEN COMMENT 4(17) text-s02 FOR FIELD p_filchk.
    SELECTION-SCREEN POSITION POS_LOW.
    PARAMETERS: p_file LIKE rlgrap-filename.
  SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN END OF BLOCK out.

Radiobutton (inc desc) and entry field on same line of SAP selection screen

*Abap code
SELECTION-SCREEN BEGIN OF BLOCK out WITH FRAME TITLE text-s01.
selection-screen begin of line.
  parameters: p_and radiobutton group grp1.
  selection-screen comment 4(5) text-010 for field p_and.
  parameters: p_or radiobutton group grp1.
  selection-screen comment (5) text-011 for field p_or.
selection-screen end of line.
SELECTION-SCREEN END OF BLOCK out.

Radiobutton (inc desc) and entry field on same line of SAP selection screen


*Abap code
SELECTION-SCREEN BEGIN OF BLOCK out WITH FRAME TITLE text-s01.
selection-screen begin of line.
  selection-screen comment 1(7) text-su9.  "su9 = Clerk
  parameters: p_clerk1 LIKE knb1-busab OBLIGATORY DEFAULT '51'.
  selection-screen comment 15(19) text-su1. "su1 = Surname begins with
  parameters: p_cstr1(20) type c OBLIGATORY DEFAULT 'ABCD'.
selection-screen end of line.
SELECTION-SCREEN END OF BLOCK out.

Related Articles

Adding buttons to an ABAP report selection screen within SAP
Add buttons to Application toolbar of selection screen
Add buttons with icon to selection screen
Add buttons to dynamically change the selection screen entry fields
ABAP parameter as checkbox plus initiate 'AT selection-screen' EVENT to unselect other checkboxes
Initiate the 'AT selection-screen' EVENT from a checkbox
Dynamically alter a selection screen based on user
SAP dropdown list box for an ABAP report selection screen
Initiate the 'AT selection-screen' EVENT from a LISTBOX within an ABAP report sel screen
ABAP Radiobutton to Initiate the 'AT selection-screen' EVENT on SAP report
ABAP Begin of Block to group selection-screen fields plus add title and frame
Report Selection Screen - Example code and information on various sel screen processing techniques
Selection screen push buttons
F4 search help manually called from report selection screen
Modify Selection Screen(LOOP AT SCREEN)
Restrict select-options to only allow specific restrictions
Add blank line to SAP report selection screen
Add Tab strip to Selection Screen