‎2007 Jan 25 2:16 PM
Hi,
Can anyone let me know how can I make a text or comment in a selection screen
(SELECTION-SCREEN: COMMENT /1(65) TEXT-005.) to a different color or make it bold?
Thanks.
Uma.
Message was edited by:
Uma
‎2007 Jan 25 2:18 PM
Hi Uma,
You can not do different color or make it bold in selection screen.
Reward points if this Helps.
Manish
‎2007 Jan 25 3:19 PM
It is the disadvantage for reports concept. Aswell advantage for Scripts concepts.
The one can not modify the fonts for selection screens or the reports. But can be possible in Scripts and Smartforms.
Cheers.
‎2007 Jan 25 3:25 PM
Hi,
It's not possible to change font and to keep it bold. It's possible only in scripts and smartforms. If u want to give colour or different font style , make use of either scripts or smartforms.
‎2007 Jan 25 3:47 PM
Using Different Font and Bold/Italics etc is possible in Scripts/Smartforms/Report lists ( using Dynamic Document), not for Selection screen
‎2007 Jan 25 3:58 PM
HI,
Can you highlight the comment. Use the below code
SELECTION-SCREEN: COMMENT /1(65) TEXT-005 FOR FIELD P_BUKRS MODIF ID SC1
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
IF SCREEN-GROUP1 = 'SC1'.
SCREEN-INTENSIFIED = 1.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
the above code would highlight your comments. Usually the highlighted text would be in Red or blue color.
Regards,
Vara