I’m fetching data from SAP system using Extractor. But When I execute the Job, getting this error :-"Error calling RFC function to get reader data: <RFC_ABAP_RUNTIME_FAILURE-(Exception_Key:TSV_TNEW_PAGE_ALLOC_FAILED)- No more storage space available for extending an internal table"If anybody have any solution then pls let me know.
I would be appreciate your Quick response
You should upgrade to PI_BASIS patch 9 or at least implement SAP Note 1533946 (If this is available to public even).
The background of the problem is, the packet size specified in the Extractor Reader (default 10000) might be too large for wide structures and caused your error message TSV_TNEW_PAGE_ALLOC_FAILED. So instead of you fiddling with the proper value, the BAPI itself now breaks the packages into chunks that are at max 200MB large if needed.
You can’t you have to go to your SAP team with that information. But for now, reduce the packet size in the Extractor reader object of your dataflow until it works.
You haven’t used an ABAP transform then to read large tables but pulled the table directly into the regular dataflow. This is only meant for small amounts of data - although in the coming 4.1 release this limitation is gone.
When you say coming in 4.1… we are on DS4 SP2fp5 at the moment and hitting this error (loading data into HANA).
Are you saying that if we don’t want to use extractors but rather pull direct from a DSO, and havent got openhub in our source env to use, we need to wait for the SP4 realease of DS?
We are with DS 4.1 and I have seen that in ABAP Dataflow you can now specify the package size, but we are using Extractors (not ABAP Dataflow), how can we set the package size??
The extractors we are using are sending packages of about 100k rows and in Delta mode we get a SYSTEM_NO_ROLL error, so we would like to reduce it to 50k.
When you open the Extractor in the dataflow, you will see an array size parameter. But if I am not mistaken, it is ignored still.
The logic of setting the array size is actually done inside the ODP API itself. Hence I wonder if you have all SAP Notes installed on the SAP side regarding ODP. Could that be the case?
We had these issues about 2 years ago but not in the last year or so, no where.