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

Deleting ABAP memory

Former Member
0 Likes
681

Hi,

Is there a way that I can delete the contents of an ABAP memory without writing an ABAP program?

Thanks a lot.

Joseph

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
627

Hi,

Little abap prog will require to delete ABAP Memory.

Cheers....

4 REPLIES 4
Read only

Former Member
0 Likes
627

U can delete it using FREE MEMORY statement, but that means u need to do it using ABAP program.

Have a look at below link.

http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3beb358411d1829f0000e829fbfe/content.htm

Best Regards,

Vibha

*Please mark all the helpful answers

Read only

Former Member
0 Likes
627

hi

good

i think you have to take the help of ABAP program to delete the content of the ABAP memory.

go through this link

http://help.sap.com/saphelp_nw2004s/helpdata/en/fc/eb3bc4358411d1829f0000e829fbfe/content.htm

thanks

mrutyun

Message was edited by: Mrutyunjaya Tripathy

Read only

Former Member
0 Likes
628

Hi,

Little abap prog will require to delete ABAP Memory.

Cheers....

Read only

Former Member
0 Likes
627

Hi,

SAP memory values are stored in table tpara so u can

call FM RS_PARAMETER_DELETE to delete memory variable

ABAP memory you have to write program

report ztest.

export vatnr to memory id 'TEST'.

import vmatnr from memory id 'TEST'.

free memory id 'TEST'.

FREE MEMORY deletes the entire ABAP/4 memory, including data

exported with EXPORT TO MEMORY ID key.

Regards

amole