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: 

How to increase input field length in selection screen.

former_member244346
Participant

Hi Experts,

I have an issue with selection screen, in selection screen parameter field referring to string, Similar way selection option also referring to char 255. but problem is when i am entering data in parameter field full value accepting but in select option field not accepting full length of value. Any one can help on this.

5 REPLIES 5

raymond_giuseppi
Active Contributor
0 Kudos

Read first online help on SELECT-OPTIONS (look for conversion routine between dynpro and interna table, so truncated values)

0 Kudos

Hi Raymond,

Could you please elaborate it, I am not getting exactly.

Thanks,

What's your version?

Sandra_Rossi
Active Contributor
0 Kudos
REPORT.
TYPES c255 TYPE c LENGTH 255.
DATA c255 TYPE c255.
PARAMETERS string1 TYPE c255 LOWER CASE.
SELECT-OPTIONS string2 FOR c255 LOWER CASE.

No issue on my ABAP 7.31 system:

if I enter in STRING2 : "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."

then I get STRING2-LOW = "Lorem ipsum...irure dolor i" i.e. it's 255 characters long.

I suppose OP run an old version (before 7.02)