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

Maximum output File length?

mattnewell
Explorer
0 Likes
1,304

I am trying to write a 1208 character output file, but the file seems to truncate at 1100 characters. Is this a program issue or a limit?

Thanks

8 REPLIES 8
Read only

Former Member
0 Likes
1,029

Not sure...I never had to download something that big...

Greetings,

Blag.

Read only

0 Likes
1,029

Alvaro / Matt,

Are you downloading this file (as in to the client machine) or trying to output it to the App server?

Outputting a file generally means writing to the App server - which is not downloading.

Read only

0 Likes
1,029

If you are outputting to the App server, what OS are you running?

Read only

0 Likes
1,029

I am outputting to a App Server.

Read only

0 Likes
1,029

Hey Matt:

Check the length of your structure. A previous employer that I worked for generate files that had character lengths of 2500 characters for benefit entitlements. Check the size of the Z-Structure if thats what you are using.

As for the 1023 size limit, that is an SAP table, via SE16 length limit, but Z-tables and structures, you should be able set those accordingly.

Read only

Former Member
0 Likes
1,029

You may want to check to see the size of the itab or structure that you downloading this file into. Look at how many characters the structure is.

<REMOVED BY MODERATOR>

John

Edited by: Alvaro Tejada Galindo on Jan 11, 2008 3:58 PM

Read only

Former Member
0 Likes
1,029

HI Matt,

in sap the system allows a maximum of 1023 characters.

Thanks,

Sagar.

Read only

mattnewell
Explorer
0 Likes
1,029

Thanks