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

abap memeory

Former Member
0 Likes
380

how can u send internal table into abap memory?

how can u send internal table into abap memory?

1 REPLY 1
Read only

Former Member
0 Likes
365

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