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

Selection-Screen : Select-Options

Former Member
0 Likes
1,116

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
Read only

Former Member
0 Likes
829

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
Read only

former_member194669
Active Contributor
0 Likes
829

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

Read only

Former Member
0 Likes
829

Hi ,

Try it with :

parameter a type string .

Regards .

Read only

Former Member
0 Likes
829

Hi evangeline,

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

it will allow MAX of 45 characters only.

regards,

amit m.

Read only

Former Member
0 Likes
830

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

Read only

messier31
Active Contributor
0 Likes
829

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.

Read only

Former Member
0 Likes
829

better to use PARAMETERS

S@meer