Application Development 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: 

Selection-Screen : Select-Options

Former Member
0 Kudos

Hi,

data: s_c(100).

selection-screen: begin of block 1.

select-options: s_o for s_c.

selection-screen: end of block 1.

In this select-option s_o, it is not accepting characters more than 45. It is because by default the selection screen, will set values to low and high select-option as 45. but i need to enter 100 characters.

Please give me the code that i need to insert and how to proceed exactly.

Thankx in adv.

will be rewarded.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi Evangeline,

The maximum output length of the select-option field is 45 characters. More than that it will truncate and i dont think there is any possible way to increase it.

You can, however, use SUBMIT to pass longer selection options to a report if they are specified with the addition NO-DISPLAY and thus do not appear on the selection screen.

Regards,

Yogesh

6 REPLIES 6

former_member194669
Active Contributor
0 Kudos

Hi,

No it is not possible with low and high values .

May be you can try with


selection-screen: begin of block 1.
select-options: s_o for s_c no interval no extension. "<<<<<
selection-screen: end of block 1.

aRs

Former Member
0 Kudos

Hi ,

Try it with :

parameter a type string .

Regards .

Former Member
0 Kudos

Hi evangeline,

1. If we see the documentation of select-options,

it will allow MAX of 45 characters only.

regards,

amit m.

Former Member
0 Kudos

Hi Evangeline,

The maximum output length of the select-option field is 45 characters. More than that it will truncate and i dont think there is any possible way to increase it.

You can, however, use SUBMIT to pass longer selection options to a report if they are specified with the addition NO-DISPLAY and thus do not appear on the selection screen.

Regards,

Yogesh

messier31
Active Contributor
0 Kudos

Hi,

You will have to implement as to parameters. One for high and low.

there you can have 100 char inputs.

Let us know if this solve your prob..

Enjoy SAP.

Pankaj Singh.

Former Member
0 Kudos

better to use PARAMETERS

S@meer