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

Issue with internal table too small

Former Member
0 Likes
1,683

Hi All

In my issue the value of one field is overflow error(dump).The field data element is referred to standard data element 'QUAN(13)'.Is there any other solution to over come it.

Thanks

Vamsi

Hi All

In my issue the value of one field is overflow error(dump).The field data element is referred to standard data element 'QUAN(13)'.Is there any other solution to over come it.

Thanks

Vamsi

12 REPLIES 12
Read only

davis_raja
Active Participant
0 Likes
1,605

Change the data element of the field to a bigger value.

Read only

0 Likes
1,605

Hi Pious

Can you please tell me data element which is greater the 13 and equal to 'QUAN'.

Thanks

Vamsi

Read only

0 Likes
1,605

Hi Pious

Can you please tell me data element which is greater the 13 and equal to 'QUAN'.

Thanks

Vamsi

Read only

0 Likes
1,605

Create a domain with data type as QUAN with the number of characters and decimal places which you require.

Read only

0 Likes
1,605

Hi Mohan Vamsi

Use Data Element :  VMENG

Data type : MENG15

or create you own...

Read only

0 Likes
1,605

Can you share the screenshot of your table?

Read only

nabheetscn
SAP Champion
SAP Champion
0 Likes
1,605

Hi Mohan

This field you are filling from which table field?

Nabheet

Read only

0 Likes
1,605

ymm_mdps

Read only

0 Likes
1,605

ymm_mdps it is not standard one...

what data type  you used to create this data element with length...

better share your code...

Read only

0 Likes
1,605

This is your custom table. So you can easily increase the domain for the given field to the required length or you can create a new domain with data type as QUAN and length as per your requirement.

Read only

sivaganesh_krishnan
Contributor
0 Likes
1,605

Hi Mohan,

The reason for this dump is that , you are passing values higher than the fixed length 13 . Try using some other Domain may be try KWMENG which has length 15 or else try creating your own custom domain with higher length as you want.

Regards,

Sivaganesh

Read only

Former Member
0 Likes
1,605

Thanks all