Hello,
I have the requirement of having a checkbox (p_header) and parameter filepath (p_file) on the same line along with the text decription i.e. p_header and P_file.
It should be like this
__ p_header P-file ________________
But I am only getting the checkbox and the p_file path...not the text decription as seen below:
My code is as below:
---------------------------------------------------------------------------------------------------------------------
SELECTION-SCREEN BEGIN OF BLOCK p2 WITH FRAME TITLE text-503.
SELECTION-SCREEN BEGIN OF LINE.
PARAMETERS: p_header AS CHECKBOX.
SELECTION-SCREEN COMMENT 4(17) text-a01 FOR FIELD p_header.
SELECTION-SCREEN POSITION POS_LOW.
PARAMETERS : p_file3 LIKE filename-fileintern OBLIGATORY
DEFAULT 'FILEPATH_xx.OUT'.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN END OF BLOCK p2.
---------------------------------------------------------------------------------------------------------------------
I hope my requirement is clear enough.
I have included text-a01 in Goto->Text symbols and activated, but I am not getting the text on selection screen.
Would truly appreciate your help.