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

SAP Memory

Former Member
0 Likes
428

Hello All,

Would like to know certain items like -

1. Can we place an ZTable entries into SAP Memory?

2. If we can, How can i read the entries available in SAP Memery record by record?

It would be great if some related code is provided.....

Regards,

- PSK

3 REPLIES 3
Read only

Former Member
0 Likes
385

Hi !

You can export a complete table to the ABAP-Memory using the

EXPORT obj1 TO MEMORY ... ID key

statement where obj1 is a internal table.

In Memory exported tables can only be imported completely. You cannot do any selection within the memory.

You'll have to do the selection after importing the data.

Regards

Rainer

Some points would be nice if that helped a bit.

Read only

nishanthbhandar
Contributor
0 Likes
385

Read the documentation for EXPORT and IMPORT.You can set the values to ABAP memory but for SAP memory as far as i know you cannot export Ztable entries.