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

Selection-Screen Comment?

Former Member
0 Likes
1,545

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
Read only

Former Member
0 Likes
953

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
Read only

Former Member
0 Likes
954

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

Read only

b_deterd2
Active Contributor
0 Likes
953

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