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

Bold Tect in selection screen

Former Member
0 Likes
1,003

Hi All,

How can we get bold letters (parameters / select-options texts) in selecton screen??

Thx in advance.

2 REPLIES 2
Read only

Former Member
0 Likes
546

hiii

you can do it by following way

loop at screen.
if screen-name CS 'p_number1'.
screen-intensified = 1.
endif.
modify screen.
endloop.

reward if useful

thx

twinkal

Read only

Former Member
0 Likes
546

hi,

Assign a modif id to the parameter or select-options.

In the at selection-screen output event write :

loop at screen.

if screen-name1 = 'ABC'. "Modif id

screen-intensified = 1.

modify screen.

endif.

endloop.

Hope this helps.

Regards,

Subramanian