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

How to fetch data from memory??

Former Member
0 Likes
1,520

Hello friends,

Can any body tell me about any class or function Module through which i can fetch the data from global memory.

Arunima Rudra

Hello friends,

Can any body tell me about any class or function Module through which i can fetch the data from global memory.

Arunima Rudra

4 REPLIES 4
Read only

Former Member
0 Likes
911

Hi

u can use import and export command

IMPORT LV_SERNR FROM MEMORY ID 'SER'.

EXPORT LV_SERNR TO MEMORY ID 'SER'.

Amresh

Read only

Former Member
0 Likes
911

Hello,

To fetch the memory ids

For ABAP Memory

we use IMPORT id and EXPORT id

For SAP Memory

we use Set and Get parameter.

Read only

Former Member
0 Likes
911

Hi frnd ,

use this in 1st prorgram ...to export itab

EXPORT T_ITAB TO MEMORY ID 'ABC'.

now in second program import that itab .....

data: itab (Define the itab with the same structure and name as in 1st program )

start of selection.

IMPORT T_ITAB FROM MEMORY ID 'ABC'.

Thanks and regards ..

Priyank

Read only

Former Member
0 Likes
911

Hi ,

check this function 'module 'IMPORT_INFO_FROM_MEMORY'

regards

naveen