I have to align more than one element
in same line in a selection screen.
It is possible with the following code.
now the problem is i need space between these elements. how can i achieve it?
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT (8) txt1.
PARAMETERS : location AS CHECKBOX,
loc(5) TYPE c.
SELECTION-SCREEN COMMENT (15) txt2.
PARAMETERS : dept AS CHECKBOX,
dpt(5) TYPE c.
SELECTION-SCREEN COMMENT (7) txt3.
PARAMETERS : product AS CHECKBOX,
prdt(5) TYPE c.
SELECTION-SCREEN END OF LINE.