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

modifying select options

Former Member
0 Likes
1,389

Hi guys

            my question is about to modify the select options.

For ex:

instead of 'to' in above select options i want to write 'low'.please give suggestions how to do it.Thanks in advance.

1 ACCEPTED SOLUTION
Read only

matt
Active Contributor
0 Likes
1,346

Not possible.

Why do you want "Customer... low Customer..." anyway. Makes no sense.It's supposed to be a range. Or is low your local language word for to?

8 REPLIES 8
Read only

matt
Active Contributor
0 Likes
1,347

Not possible.

Why do you want "Customer... low Customer..." anyway. Makes no sense.It's supposed to be a range. Or is low your local language word for to?

Read only

Former Member
0 Likes
1,346

i want hyphen(-) instead of 'to'.is it possible.

Read only

matt
Active Contributor
0 Likes
1,346

So why did you say low?

But the answer is no - not without an absolutely enormous effort where the cost massively outweighs any possible benefit. Especially since you'd want it for all select options. But if you're wanting it for just one, then that's just bad design. SAP has a standard look and feel - it's foolishness to deviate from that.

Read only

0 Likes
1,346

It's possible with this code bellow, but I still don't see the reason to do it....

field-symbols: <any> type any.

at selection-screen output.

    loop at screen.

        if screen-name cp '*%_APP_%-TO_TEXT'.

            assign (screen-name) to <any>.

            if sy-subrc eq 0.

                <any> = '-'.

            endif.

        endif.

Read only

matt
Active Contributor
0 Likes
1,346

OK - not massively enormous effort then. But I stand by my contention that to make this change is a very bad idea.

Read only

0 Likes
1,346

But I stand by my contention that to make this change is a very bad idea.

I can only agree.

Read only

Former Member
0 Likes
1,346

Thanks Matthew.it worked.

Read only

Former Member
0 Likes
1,346

Your requirement is somewhat odd. I don't know more about SAP GUIXT but it used to tweak screen you can take a look at once. I am not sure this helps to fulfill your requirement.

This link may help you for further...