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: 

How to remove the underline in the parameters in the selection screen?

Former Member
0 Kudos

how to remove the underline from the parameters in the selection screen?

i came through the comment statements in the forum is there any other ways like setting some fields in the declarattion of the parameter itself?

like

parameter:p1 type string .......?

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi

I think you are talking about Selection Texts.

In Se38...after u enter the program..

In Menu, Goto> Text Elements> Selection Texts..

Give the text u want to display in the selection screen in the place of the parameters u have declared.

Regards,

Vishwa.

3 REPLIES 3

Former Member
0 Kudos

Hi

I think you are talking about Selection Texts.

In Se38...after u enter the program..

In Menu, Goto> Text Elements> Selection Texts..

Give the text u want to display in the selection screen in the place of the parameters u have declared.

Regards,

Vishwa.

Former Member
0 Kudos

I dont think there is an alternative to removing the underlines other than to go for COMMENT. In the selection texts (of text elements) we can just give the parameter name or take the standard text from dictionary, but theres no option to remove the underlines.


SELECTION-SCREEN BEGIN OF BLOCK rbg WITH FRAME TITLE tit.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(20) text-001 MODIF ID sc1.
PARAMETERS:
  p_param TYPE vbak-vbeln.
SELECTION-SCREEN END OF LINE.

PARAMETERS:
  p_posnr TYPE vbap-posnr.

SELECTION-SCREEN END OF BLOCK rbg.

Former Member
0 Kudos

Hi ChandraSekaran,

Try this code below:

SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(31) text-002.
PARAMETERS:
  p1 type string.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN END OF BLOCK b1.

Maintain the text elements for Text-001 and Text-002.

Regards,

Swapna.