‎2009 Mar 02 5:09 AM
Hi expert ,
SELECT-OPTIONS : PO_DATE FOR AUFK-ERDAT,
but i want to write po_date as PRODUCTION ORDER DATE , as i know d default value is 8 characters,i want to know the solution problem.plz help me.
‎2009 Mar 02 5:15 AM
hi dinesh,
you can do this by using BEGIN OF LINE, COMMENT
where you can write your own comment(description) and then display the select option..
Regards,
Sravan
‎2009 Mar 02 5:11 AM
Open SE38 , in Menu - Goto Text elements - selection texts.
Here you can chane your selection screen texts.
‎2009 Mar 02 5:15 AM
hi dinesh,
you can do this by using BEGIN OF LINE, COMMENT
where you can write your own comment(description) and then display the select option..
Regards,
Sravan
‎2009 Mar 02 5:15 AM
Hi,
GOTO -> TEXT ELEMENTS -> SELECTTION TEXTS -> GIVE THE REQUIRED HEADING.
Thanks,
Nithya
‎2009 Mar 02 5:16 AM
Hi Dinesh,
In SE38 , in SE38, Menu bar Goto -> Text elements -> selection texts.
you can write your own description in the Text column next to the PO_DATE.
For the paramter naming it can be upto 8 characters but the description can be more than 8 characters.
hope this will help you.
Regards,
Phani.
‎2009 Mar 02 5:17 AM
‎2009 Mar 02 5:20 AM
Hi,
Goto SE38 --> open your report program --> click menu GOTO --> click Text Elements --> click Selection Texts
Here you can see al the parameters/selection option included on the selection screen. Change the output string as per your requirement. Now when you execute your program then you wil see the new text displayed on the output screen.
Hope this helps you.
Regards,
Tarun
‎2009 Mar 02 5:21 AM
Hi Dinesh,
Write required text in the Goto -- > Text elemtns -- >Selection Text...
Regards!
‎2009 Mar 02 5:23 AM
Hi,
Go to SE38, menu bar goto>text elements>selection texts, there you can give the text description.
Regards,
Jyothi CH.
‎2009 Mar 02 5:23 AM
Hi
Good
If you want to add "PRODUCTION ORDER DATE" with your selection screen than you have to design a selection block and inside that block you have to declare a text element and the text for that text element you can assign in menu->go to->selection text
thanks
mrutyun^
‎2009 Mar 02 5:26 AM
Hi,
maintain selection text for select options..
from ur program ,
GOTO -> TEXT ELEMENTS -> SELECTION TEXT
click the checkbox.
save & activate..
Regards,
Mdi.Deeba
‎2009 Mar 02 5:50 AM
Hi dinesh,
Check the following link:-
http://help.sap.com/saphelp_nw70/helpdata/en/e3/960a0beb0711d194d100a0c94260a5/content.htm
Luck,
Bhumika
‎2009 Mar 02 6:03 AM
Hi,
Do u want to display PRODUCTION ORDER DATE in output screen or u need to replace s_podat in report ?
Kindly explain .
‎2009 Mar 02 8:57 AM
Hi,
Check the below code
CALL METHOD wd_this->g_handler->add_selection_field
EXPORTING
i_id = 'MATNR'
I_DESCRIPTION = 'material required' " here you pass the label name which you want to give
it_result = it_ran.
Hope this helps you.
Regards,
Anki Reddy
‎2009 Nov 10 1:55 PM