Application Development 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: 

How to display text in blue color

Former Member
0 Kudos

Hi All,

in my selection screen i am having one checkbox. for this checkbox i am giving description as 'Manufacturer'.This description has to come in blue color. anybody can tell me how to do this.

thanks,

maheedhar

6 REPLIES 6

Former Member
0 Kudos

Hi,

I am not sure if it is possible. Because there is no option to specify the color of the displayed text other than in reports.

Thanks...

Preetham S

Former Member
0 Kudos

Hi,

At selection-screen output.

Loop at screen.

modify screen.

if screen-group1 = 'grp1'.

Activate INTENSIFIED

endif.

endloop.

Reward if useful!

Former Member
0 Kudos

On the screen painter, go to the properties of the field, and check the 'Bright' property in the 'Display' category.

Hope this helps.

Sudha

Former Member
0 Kudos

Hi,

try this:

SELECTION-SCREEN: BEGIN OF LINE.

SELECTION-SCREEN: COMMENT 1(20) T_WERKS.

PARAMETERS: P_WERKS LIKE MARC-WERKS.

SELECTION-SCREEN: COMMENT 40(20) T_WERKS1 MODIF ID INT.

SELECTION-SCREEN: END OF LINE.

************************************************************************

AT SELECTION-SCREEN OUTPUT.

LOOP AT SCREEN.

<b> IF SCREEN-GROUP1 EQ 'INT'.

SCREEN-INTENSIFIED = '1'.

MODIFY SCREEN.

ENDIF.</b>

ENDLOOP.

************************************************************************

INITIALIZATION.

T_WERKS = 'Werk normal'.

T_WERKS1 = 'Werk blue'.

************************************************************************

START-OF-SELECTION.

*

*

END-OF-SELECTION.

Regards, Dieter

Former Member
0 Kudos

Hi,

check this demo..<b>demo_at_selection_screen_pbo</b>

reward if it helps..

Regards,

Omkar.

Message was edited by:

Omkaram Yanamala

Former Member
0 Kudos

Hi All,

Problem has been sloved.

Thanks,

Maheedhar