2008 May 20 8:36 AM
how can u send internal table into abap memory?
2008 May 20 8:39 AM
Dear friend,
please go through link.
http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3bc4358411d1829f0000e829fbfe/frameset.htm
ABAP memory - Transfer data from program to program.
SAP Memory - transfer data from program to Transaction.
When you see 'Export and Import ' and it is ABAP memory'
When you see Set parameter id and get Parameter id and it is called SAP Memory
. SAP Memory is a global memory area which all sessions within a
SAPgui have access to. 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.
2. 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 'ZTESTMAT'.
import p_matnr = p_matnr from memory id 'ZTESTMAT'.
Reward Points if it is helpful
vivek