‎2008 Apr 04 5:45 AM
Hi All,
I have the following parameter like this in my program:
parameters: p_dl(60) type c.
So, When I execute, I'm getting 'P_DL as the text for this parameter.
But I want a different text for the parameter. like 'Distribution'.
How can I achieve this?
Thanks in advance,
Pradeep
‎2008 Apr 04 5:47 AM
Hi,
Once ur program is active, check with menu GOTO -> TEXT ELEMENTS -> SELECTION TEXTS. Give name for the selection screen elements there.
Reward points if helpful.
Regards,
Ramya
‎2008 Apr 04 5:49 AM
go to SE32 transaction and give ur program name,go to change mode select SELECTION TEXT tab and give ur required text near p_dl.
reward if useful..
Regards
Sugumar G
‎2008 Apr 04 5:53 AM
Hi Friend,
In your program screen follow this below navigation
in the top menu bar
Goto --> Text elements --> Selection Texts
Here u will get one screen specifying Text symbols , selection texts, list headings
in the selection texts tab your paramater name will be there so provide your text for that P_DL parameter and activate it.
then execute your program , U will get your text over there in the selection screen for that parameter.
Regards,
Suresh.S
‎2008 Apr 04 5:53 AM
Hi,
if u want language independent do like this.
parameters: p_dl(60) type c.
AT SELECTION-SCREEN OUTPUT.
%_P_DL_%_APP_%-TEXT = 'Distribution'.
if u want language dependent use text eelements
rgds,
bharat.
‎2008 Apr 04 5:56 AM
Hi Pradeep,
If u want to enter texts to the paramerters or select-options follow the steps.
See the menu bar >>>GOTO >> Selection Text >>
Give the text u want at the respective parameter then save and activate..
u will get wat u want.
Reward if Helpful
Jagadish.
‎2008 Apr 04 6:01 AM
Hi,
Once the program is active , then
Goto --> Text elements --> Selection Texts - Give the name which u want as - Distribution, Save & Activate. Then u execute ur program and see the text which u entered in Selection texts.
reward if helpful.
Iyswarya
‎2008 Apr 04 6:04 AM
Hi,
go to se38 transaction-> give your prg name->go to text elements->selection text->give the parameter name there.
You can find your description.
Regards,
Sindhu
‎2008 Apr 04 6:21 AM