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

Infoset - additional coding

Former Member
0 Likes
448

Hello,

within our infoset we require additional information for a node and in this additional coding we have to select from a custom table. This table is not part of the join or logical database. Is there anyway to save this data globally (similar to 'Statics') in order to save approx 70 selects on this custom table?

Thank you,

Ruairi

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
412

Hi!

You might try out to push the table to the global SAP memory.

Like this:

EXPORT lt_mytable TO MEMORY ID 'ZZLT_MYTABLE'.

And to retrieve it:

IMPORT lt_mytable FROM MEMORY ID 'ZZLT_MYTABLE'.

lt_mytable must have the same structure in both programs.

Regards

Tamá

2 REPLIES 2
Read only

Former Member
0 Likes
413

Hi!

You might try out to push the table to the global SAP memory.

Like this:

EXPORT lt_mytable TO MEMORY ID 'ZZLT_MYTABLE'.

And to retrieve it:

IMPORT lt_mytable FROM MEMORY ID 'ZZLT_MYTABLE'.

lt_mytable must have the same structure in both programs.

Regards

Tamá

Read only

0 Likes
412

Hello Tamás,

that worked.

Thanks a lot!

Ruairi