2009 Mar 03 12:05 PM
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.
2009 Mar 03 12:10 PM
can you be a bit more clear on long text means,the type of field or?
2009 Mar 03 12:14 PM
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
2009 Mar 03 12:26 PM
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
2009 Mar 03 12:36 PM
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
2009 Mar 03 12:39 PM
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,
2009 Mar 03 1:00 PM
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
2009 Mar 03 1:06 PM
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