‎2008 Jun 19 3:08 PM
Hi All,
How can we get bold letters (parameters / select-options texts) in selecton screen??
Thx in advance.
‎2008 Jun 19 3:10 PM
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
‎2008 Jun 19 3:13 PM
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