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

Runtime Error: EXPORT_TOO_MUCH_DATA in Unicode System

Former Member
0 Likes
1,036

Hi,

I am facing this Runtime Error EXPORT_TOO_MUCH_DATA while working with large data in the Unicde system .

The Program throws the dump and is working fine in the Non-Inicode system.

I applied the SAP Note 1157106 which dint help.

Thanks,

Viral.

4 REPLIES 4
Read only

Former Member
0 Likes
821

Hi Viral,

Provide more details, like which program (standard or custom). If custom, which statement causes these dump etc.

There are other notes related to this dump as well.

Regards

Rajvansh

Read only

0 Likes
821

Hi rajesh,

Basically I am calling a Function Module which is throwing this Dump in the Uni-code system.

Here is what the Error Analysis say :

  • An exception occurred that is explained in detail below.

This exception cannot be caught in the context of the current statement.

The reason for the exception is:

The dataset stored under an EXPORT/IMPORT ID is restricted

by

1. The maximum possible size of 2 GB

2. The length of a data record and the capacity of the

sequence counter. This error occurs only if the capacity of the

sequence counter does not go beyond 255.*

The same program (Fm) is working fine in the non-Unicode system being the reason that the data size is not going beyond the

2 GB because of less memory allocation in non-Unicode system.

Thanks,

Viral.

Read only

0 Likes
821

when ever you are exporting you could split the memory into chunks

export <data> memory id D1.

export <data> memory id D2.

import D1.

import D2

Read only

0 Likes
821

Hi J@y,

Is there any SAP Note Available for the same?

As this is a Custom Program and this Function module / Other Function modules like this are called at many place.

So Instead of going and applying this code change at each and every place , I was looking for a SAP Note which actually can do that.

Thanks,

Viral.