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

colour in selection screen

Former Member
0 Likes
3,024

Hi all,

can anyone please tell me is there a way to

colour the select option or parameter or radiabutton text.

Also, i wanted to know how can insert a blank line between two parameters in the selection screen.

Thanks & Regards

Sukant

1 ACCEPTED SOLUTION
Read only

MarcinPciak
Active Contributor
0 Likes
2,091

Hi,

1) Coloring text of parameter at selection screen is just intensifying it. You do:


AT SELECTION SCREEN OUTPUT.
loop at screen.
   screen-intensified = 1.
   modify screen.
endloop.

2) Adding blank line:


SELECTION-SCREEN SKIP 1.

Regards

Marcin

7 REPLIES 7
Read only

Former Member
0 Likes
2,091

Hi Sukant,

You can insert a line using the following code:

SELECTION-SCREEN SKIP.

Regards,

Saba

Read only

MarcinPciak
Active Contributor
0 Likes
2,092

Hi,

1) Coloring text of parameter at selection screen is just intensifying it. You do:


AT SELECTION SCREEN OUTPUT.
loop at screen.
   screen-intensified = 1.
   modify screen.
endloop.

2) Adding blank line:


SELECTION-SCREEN SKIP 1.

Regards

Marcin

Read only

Former Member
0 Likes
2,091

Hi,

Just simple maintain blocks with frames like Given below...

SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME.

SELECTION-SCREEN COMMENT 1(15) text-001.

PARAMETERS: p1(3) TYPE c,

p2(5) TYPE c.

SELECTION-SCREEN COMMENT 55(10) p_wmunit.

SELECTION-SCREEN END OF BLOCK..

Thanks&Regards,

Naresh

Read only

Former Member
0 Likes
2,091
Read only

Former Member
0 Likes
2,091

Hi all,

besides the blue colour , is there a way to get more colours

like we have the option of choosing the range from 1 to 7 in ALV ?

Thanks & Regards

Sukant

Read only

0 Likes
2,091

hi,

use this program.

SHOWCOLO.

Read only

Former Member
0 Likes
2,091

Hi gautham,

for the report output i know how to get colours,

i want to know about the different colours i can use in selection screen.

Thanks

Sukant