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: 

SAP_CONVERT_TO_CSV_FORMAT issue

veerusap
Participant
0 Kudos

Hi All,

I have an issue on report. I have a report, it will execute in background daily. It have 13 Lacks records in its final internal table. But in back ground the internal table data will be downloaded into application server in .CSV format. Here issue is , I'm getting all records into internal table successfully but while downloading the file into application server it's going to dumb and it's showing "Memory issue". Can any body help on this.

Here for converting the file I'm using SAP_CONVERT_TO_CSV_FORMAT funtion module.

Pleas help me on this ASAP.

Thanks in Advance,

Satish

2 REPLIES 2

former_member200754
Participant
0 Kudos

Hi Satish,

It will better if you go to ST22 then screenshot the dump.

Thanks,

raymond_giuseppi
Active Contributor
0 Kudos

For such volumn of data, did you try to split the 'TRANSFER' data to dataset in package/subset, e.g. OPEN FOR OUTPUT/fetch some data/some TRANSFER/CLOSE/FREE itab then OPEN again but FOR APPENDING/fetch more data/some transfer/CLOSE/FREE itab, until end of data reached.