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: 

DUMP DATA_OFFSET_TOO_LARGE

former_member209962
Participant
0 Kudos

Hi friends

We are facing issue with DUMP DATA_OFFSET_TOO_LARGE this coming on daily basis in our production system and no of dump is increasing

Please find below ST22 log for your reference.

<<Huge dump log removed >>

Message was edited by: Kesavadas Thekkillath

2 REPLIES 2

kakshat
Advisor
Advisor
0 Kudos

As is clear from the dump, your code is trying to access variable L_STRING_COMMENTS with an offset that is greater than the length of the variable's value. The offset you are using should be less than the length of the variable's value. You can get the length of a variable using STRLEN( ) function.

former_member491621
Contributor
0 Kudos

Hi Tabrayz,

The dump is coming on as you are(or your code is) trying to concatenate values with more than 4000 characters into a variable with a length of 4000 characters.

Please check if the sum of lengths of variables to be concatenated is less than 4000 using STRLEN().

Also, you can try and reduce the length of data that is entered(debug and check the lengths of data in the variables and see if you could restrict the input lengths on the screen itself).

Hope this helps