‎2007 May 17 3:37 AM
Hello All
I have created a selection-screen with select-options, everything is working fine except that instead of showing the field descriptions its showing field names. Is there a way through which I can display the description rather than the field names. The following is my selection screen declaration:
SELECTION-SCREEN: BEGIN OF BLOCK selections
WITH FRAME TITLE text-f01.
SELECT-OPTIONS vstel FOR likp-vstel.
SELECT-OPTIONS kunag FOR likp-kunnr.
SELECT-OPTIONS lifnr FOR lfa1-lifnr.
SELECT-OPTIONS scacd FOR lfa1-scacd.
SELECT-OPTIONS datbg FOR vttk-datbg
SELECTION-SCREEN: END OF BLOCK selections.
In the screen I want to show it as
Origin Point----
>>>>>>>> Options
Dest.Point----
>>>>>>>> Options
Would appreciate your help.
Thanks
Sunil
‎2007 May 17 3:51 AM
Open the report where you have declared the select-options.
Then use the menu path :
Goto->Text Elements->Selection Texts.
Here you can give your own names for your select options.
Activate the texts. Activate your report and run.
Hope this helps you.
‎2007 May 17 3:51 AM
Open the report where you have declared the select-options.
Then use the menu path :
Goto->Text Elements->Selection Texts.
Here you can give your own names for your select options.
Activate the texts. Activate your report and run.
Hope this helps you.
‎2007 May 17 3:55 AM
Hi Sunil,
After activation of your report.
From menu bar
Goto --> Text Elements --> selection texts
adjacent to fieldname give the text(ex. Origin Point)
save & activate.
Reward points to all answers.
Regards,
SaiRam
‎2007 May 17 3:59 AM
Hi
You can do it like this.
Goto->Text Elements->Selection Texts.
Here you can give your own names for your select options.
activate the texts then activate your report and run.
reaward All Helpfull answers.............
‎2007 May 17 4:10 AM
Hi Sunil Rao,
Open your ABAP via SE38 then goto menu Goto->Text elements->Selection texts
Here you can change "?..." to your description that you want to show or if your field name have referred to table filed(data dict) you can tick at check box to use a description from table filed
After you have already declared, do not forget to click ACTIVATE (Ctrl+F3).
Now go back to your code and test run.
Hope this help.
Regards,
Tiwa.
‎2007 May 17 4:11 AM
Hi Sunil,
Open the report program in which you declare this select-options.
Then In menu bar,
<b>Goto -> Text Elements -> Selection Text.</b>
In selection text u can see ur select-options name
like below.
vstel--
kunag----?
lifnr--
scacd----?
datbg-----?
In the place of ? you can edit what ever you want
in selection screen when u execute a program.
Hope you got it.
Reward if it useful.
‎2007 May 17 4:15 AM
Hi,
To get the description of the fields in the menu bar
Goto->Text Elements->Selection Texts.
There u can give what ever description u want for that particular field.
‎2007 May 17 4:18 AM