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 remove spacing and underline between label and value at selection-screen of subscreen?

shiz0frenik
Participant
0 Kudos

Hi, experts.
How to remove spacing and underline between label and value at selection-screen of subscreen?

 

SELECTION-SCREEN : BEGIN OF SCREEN 247 as SUBSCREEN.
  PARAMETERS :      werks    type ekpo-werks,
                    matnr     type matnr,
                    lgort      type EKPO-LGORT.
  SELECT-OPTIONS : so_data for budat.
SELECTION-SCREEN : END OF SCREEN 247.

 

PROCESS BEFORE OUTPUT.
  MODULE STATUS_0240.
  call SUBSCREEN sub
  INCLUDING sy-repid '0247'.
PROCESS AFTER INPUT.
  call SUBSCREEN sub.
  MODULE USER_COMMAND_0240.
1 REPLY 1

Sandra_Rossi
Active Contributor

You can customize it a little bit only by using SELECTION-SCREEN BEGIN/END OF LINE, although I don't see a good reason to just "remove spacing and underline".