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: 

How to remove an entry from a memory area?

Former Member
0 Kudos

Hi Experts,

We are facing an issue where a user has exported some wrong data to ABAP memory through an export statement.

The export statement that exported the values is:

EXPORT range_tab_epown

range_tab_dpown

popnot TO DATABASE indx(oh) ID indxkey.

Due to the restrictions in the design of the program, EXPORT statement cannot be executed again for this user.

All we want is to erase this data somehow from the memory area OH.

->We do not want to create a Z report which will erase/replace the data through ABAP statements FREE/DELETE.

->Also ,we cannot alter the data through export statement in debugging mode.

->Resetting the buffer of this user through SU53 Or Log-in/ Log-off does not erase the data.

*Please suggest if we can remove the data from ABAP memory (area OH) for a particular user without creating a Z report.

*Is there any utility program or function module that exists which can help us erase this data?

*Also, please throw some light on the memory where the data is getting stored through the above EXPORT statement.

Regards,

Sid

1 ACCEPTED SOLUTION

matt
Active Contributor
0 Kudos

>EXPORT range_tab_epown

>range_tab_dpown

>popnot TO DATABASE indx(oh) ID indxkey.

This export doesn't write to any memory area. As the key words suggest - it writes TO DATABASE. specifically to cluster table indx, with relid oh.

As far as I am aware, there are no utility programs - you will have to have some ABAP developed.

matt

1 REPLY 1

matt
Active Contributor
0 Kudos

>EXPORT range_tab_epown

>range_tab_dpown

>popnot TO DATABASE indx(oh) ID indxkey.

This export doesn't write to any memory area. As the key words suggest - it writes TO DATABASE. specifically to cluster table indx, with relid oh.

As far as I am aware, there are no utility programs - you will have to have some ABAP developed.

matt