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

Long text in selection screen

Former Member
0 Likes
8,183

Dear all,

I created a selection screen and i placed 2 fields invoice no and date, standard 1000 screen.

and i want to introduce a long text in that screen. is it possible. if possible please tell me the procedure.

Dear all,

I created a selection screen and i placed 2 fields invoice no and date, standard 1000 screen.

and i want to introduce a long text in that screen. is it possible. if possible please tell me the procedure.

7 REPLIES 7
Read only

former_member242255
Active Contributor
0 Likes
3,774

can you be a bit more clear on long text means,the type of field or?

Read only

Former Member
0 Likes
3,774

Hi Charitha,

On your selection screen elements,

you can maintain selection texts for those elements from the menu bar,

i.e goto->text element->selection text

Hope it helps

Regrds

Mansi

Edited by: MANSI ASNANI on Mar 3, 2009 1:16 PM

Read only

I355602
Product and Topic Expert
Product and Topic Expert
0 Likes
3,774

Hi,

Goto SE38 open your report --> goto menu GOTO --> click TEXT ELEMENTS --> click SELECTION TEXT --> give corresponding text for parameter and activate.

Now when you execute your program then you will see the new text this time.

Hope this helps you.

Regards,

Tarun

Read only

Former Member
0 Likes
3,774

Hi Charitha,

Try it this way:

SELECTION-SCREEN COMMENT /1(75) TEXT.PARAMETERS:
  MATNR TYPE MATNR.    " for text element against matnr go to -> text element -> selection text

INITIALIZATION.

  TEXT = 'Enter a material number below'.

With luck,

Pritam.

Edited by: Pritam Ghosh on Mar 3, 2009 1:48 PM

Read only

Former Member
0 Likes
3,774

Hi Reddy,

if u want to display long text for the selection field,

then goto->textelements->selection texts and then u have to click the click the check boxes for each selection field entry.

No need to type long text.

Regards,

Read only

Former Member
0 Likes
3,774

Hi Charitha,

SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME TITLE TEXT-102.

 PARAMETERS : EXI RADIOBUTTON GROUP RG1.

 SELECTION-SCREEN BEGIN OF LINE.

PARAMETERS : MISS RADIOBUTTON GROUP RG1.
SELECTION-SCREEN COMMENT 3(55) text-103.

3(55) - 55 will let you type characters..you can change it depending upon the length of your text on selection screen. 
Double click on the text-103 and type your long text
You can try the same with select-option also... 

SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN BEGIN OF LINE.

PARAMETERS : BOTH RADIOBUTTON GROUP RG1.
SELECTION-SCREEN COMMENT 3(55) text-100.

SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN END OF BLOCK B2.

Copy this code and try the same for selct-option...this will fix the issue.

REgards Kittu

Read only

Former Member
0 Likes
3,774

Hi Charitha,

SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME TITLE TEXT-102.

SELECTION-SCREEN BEGIN OF LINE.
 Select-option : v_miss for vbak.
SELECTION-SCREEN COMMENT 3(55) text-103.
SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN BEGIN OF LINE.
Select-option : v_miss1 for kunnr.
SELECTION-SCREEN COMMENT 3(55) text-103.
SELECTION-SCREEN END OF LINE.

You can do the same for as many select options as you would like to add the long text.

Try with this..Hope this helps.....

If you need any further help then please paste your code...It will be helpful to provide you with the solution.

Regards,

Kittu