‎2011 Aug 02 2:46 PM
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.
‎2011 Aug 02 3:34 PM
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
‎2011 Aug 02 3:49 PM
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.
‎2011 Aug 03 12:30 AM
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
‎2011 Aug 03 5:25 AM
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.