Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Selection screen font

Former Member
0 Likes
2,139

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

5 REPLIES 5
Read only

Former Member
0 Likes
1,190

Hi Uma,

You can not do different color or make it bold in selection screen.

Reward points if this Helps.

Manish

Read only

Former Member
0 Likes
1,190

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.

Read only

Former Member
0 Likes
1,190

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.

Read only

0 Likes
1,190

Using Different Font and Bold/Italics etc is possible in Scripts/Smartforms/Report lists ( using Dynamic Document), not for Selection screen

Read only

Former Member
0 Likes
1,190

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