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

SAP_CONVERT_TO_CSV_FORMAT issue

aba212
Participant
0 Likes
976

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

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
Read only

Former Member
0 Likes
713

Hi Satish,

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

Thanks,

Read only

RaymondGiuseppi
Active Contributor
0 Likes
713

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.