‎2006 Nov 02 8:24 AM
Hi,
Is there a way that I can delete the contents of an ABAP memory without writing an ABAP program?
Thanks a lot.
Joseph
‎2006 Nov 02 9:41 AM
Hi,
Little abap prog will require to delete ABAP Memory.
Cheers....
‎2006 Nov 02 8:35 AM
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
‎2006 Nov 02 9:24 AM
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
‎2006 Nov 02 9:41 AM
Hi,
Little abap prog will require to delete ABAP Memory.
Cheers....
‎2006 Nov 02 10:35 AM
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