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

MEMORY_NO_MORE_PAGING

arpit_lunawat
Explorer
0 Likes
1,173

while running a report in background we were getting following error

"SAP paging overflow when storing data in the ABAP/4 memory"

we were using following logic ( export <itab> to memory id and import <itab> from memory id )

Sample Program

export HEADER to memory id 'ZVS'.

export LIST to memory id 'ZVB'.

export LIST to memory id 'YPPMIS'

Please suggest how to solve this problem.

Regards,

Arpit


while running a report in background we were getting following error

"SAP paging overflow when storing data in the ABAP/4 memory"

we were using following logic ( export <itab> to memory id and import <itab> from memory id )

Sample Program

export HEADER to memory id 'ZVS'.

export LIST to memory id 'ZVB'.

export LIST to memory id 'YPPMIS'

Please suggest how to solve this problem.

Regards,

Arpit


3 REPLIES 3
Read only

Ajit_K_Panda
Product and Topic Expert
Product and Topic Expert
0 Likes
928

Hi,

The dump MEMORY_NO_MORE_PAGING come when the page memory on filesystem

level is exhausted.

Please increase the parameter rdisp/PG_MAXFS and restart the system.

Please note that you must have enough free space on the harddisk.

More information in SAP Note 133909 - Maximum value for PG_MAXFS, PG_SHM, ROLL_MAXFS.

Regards,

Ajit

Read only

custodio_deoliveira
Active Contributor
0 Likes
928

Hi Arpit,

Now I'm not sure if you posted it twice or my reply went missing. Anyway, you are probably exporting too much data to memory. Have a look at note 1563748.

Cheers,

Custodio

Read only

arpit_lunawat
Explorer
0 Likes
928

thanks a lot