‎2008 Apr 11 7:02 PM
Anyway to make selection-screen comment text stand-out. ie. bold underline, etc.?
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN POSITION 1.
SELECTION-SCREEN COMMENT 1(79) text-099.
SELECTION-SCREEN END OF LINE.
Thank-You
‎2008 Apr 11 7:22 PM
For underline, you can give it for the comment.
SELECTION-SCREEN COMMENT 1(12) text-099.
SELECTION-SCREEN ULINE /1(12).
PARAMETERS: P_MATNR LIKE MARA-MATNR.
Thanks,
Srinivas
‎2008 Apr 11 7:22 PM
For underline, you can give it for the comment.
SELECTION-SCREEN COMMENT 1(12) text-099.
SELECTION-SCREEN ULINE /1(12).
PARAMETERS: P_MATNR LIKE MARA-MATNR.
Thanks,
Srinivas
‎2008 Apr 11 7:32 PM
Try this:
SELECTION-SCREEN COMMENT......MODIF ID XXX.
Then in the PBO loop through the screen
LOOP AT SCREEN.
If screen-group1 = XXX
screen-intensified = '1'.
modify screen.
endif.
Don't have a system on hand so I don't know if it works but give it a try.
Bert