2007 Nov 23 1:46 PM
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
2007 Nov 23 2:28 PM
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á
2007 Nov 23 2:28 PM
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á
2007 Nov 23 3:01 PM