F How to comment in Selection Screen in SAP ABAP | CodeTheta

How to comment in Selection Screen in SAP ABAP

February 13, 2024

Code : 

REPORT ZSELECTION_SCREEN_COMMENT.

PARAMETERS: p_name TYPE char20.

SELECTION-SCREEN ULINE /1(50).
SELECTION-SCREEN COMMENT /1(50) comm1.

INITIALIZATION.
comm1 = 'selection screen comment'.

IDE Used To Test This Code : SAP ABAP Editor.

Try this code in your computer for better understanding. Enjoy the code. If you have any Question you can contact us or mail us. We will reply you as soon as possible.

Post a Comment