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: 

Selection-Screen Comment?

Former Member
0 Kudos

Anyway to make selection-screen comment text stand-out. ie. bold underline, etc.?

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN POSITION 1.

SELECTION-SCREEN COMMENT 1(79) text-099.

SELECTION-SCREEN END OF LINE.

Thank-You

1 ACCEPTED SOLUTION

Former Member
0 Kudos

For underline, you can give it for the comment.

SELECTION-SCREEN COMMENT 1(12) text-099.

SELECTION-SCREEN ULINE /1(12).

PARAMETERS: P_MATNR LIKE MARA-MATNR.

Thanks,

Srinivas

2 REPLIES 2

Former Member
0 Kudos

For underline, you can give it for the comment.

SELECTION-SCREEN COMMENT 1(12) text-099.

SELECTION-SCREEN ULINE /1(12).

PARAMETERS: P_MATNR LIKE MARA-MATNR.

Thanks,

Srinivas

b_deterd2
Active Contributor
0 Kudos

Try this:

SELECTION-SCREEN COMMENT......MODIF ID XXX.

Then in the PBO loop through the screen

LOOP AT SCREEN.

If screen-group1 = XXX

screen-intensified = '1'.

modify screen.

endif.

Don't have a system on hand so I don't know if it works but give it a try.

Bert