Application Development 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: 

accessing the internal tables of one program to other program

Former Member
0 Kudos

can we access the internal table of one executable program to other executable program. If yes, please give me the examples.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

You can use ABAP memoy statement as follows.

In 1 report import the internal table.

IMPORT ITAB[] TO MEMORY ID 'TAB'.

In 2nd report Export the internal table.

EXPORT ITAB[] FROM MEMORY ID 'TAB'.

Regards

4 REPLIES 4

0 Kudos

Hi,

You can use the ABAP memory or SAP MEmory for that reason

You need to either use IMPORT FROM MEORY and EXPORT TO MEMORY.

Using this you can share data between two internal session.

Also check SET/GET PARAMERS but this is for storing parmters not tables and uses SAP Memory.

Regards,

Sesh

0 Kudos

hi:

plz give me the coding.........i'll be thankful...

Former Member
0 Kudos

Hi,

You can pass the values of one program to another by using Submit.

Reward if helpful.

Former Member
0 Kudos

You can use ABAP memoy statement as follows.

In 1 report import the internal table.

IMPORT ITAB[] TO MEMORY ID 'TAB'.

In 2nd report Export the internal table.

EXPORT ITAB[] FROM MEMORY ID 'TAB'.

Regards