2011 Oct 12 9:58 AM
what is the difference between explicit and implicit memory?
Moderator message: please search for available information/documentation.
Edited by: Thomas Zloch on Oct 12, 2011 6:15 PM
2011 Oct 12 10:02 AM
Hi,
Do you want to know Internal memory & External memory??
Regards,
Rahul
2011 Oct 12 10:17 AM
2011 Oct 12 10:28 AM
Hi,
External memory ---
SAP Memory is a global memory area which all sessions within a SAPgui have access to if they run on the same application server instance. This allows for passing data between sessions.
The SET PARAMETER ID and GET PARAMETER ID statements are used to manipulate the SAP Memory.
SET PARAMETER ID 'MAT' field p_matnr.
GET PARAMETER ID 'MAT' field p_matnr.
Internal Memory -
ABAP Memory is a memory area which all programs in the call stack within the same internal session can access. The EXPORT and IMPORT statements are used here.
export p_matnr = p_matnr to memory id 'MAT'.
import p_matnr = p_matnr from memory id 'MAT'.
Hope this resolve your query.
Regards,
Rahul
2011 Oct 12 10:05 AM
we got explicit enhancments and implicit enhancements
AND we got
internal memory and external memory.
So what´s it gonna be?
2011 Oct 12 10:18 AM
2011 Oct 12 10:27 AM
Sorry then Smoogie, learned something new today, and first i was laughing at you.
Thanks for sharing
2011 Oct 12 10:24 AM
Hi,
There are two types of memories in SAP. They are the ABAP memory( implicit memory) and SAP memory(Explicit memory).
Refer the below link for more details.
http://wiki.sdn.sap.com/wiki/display/ABAP/ABAPLanguageandRuntimeEnvironment