2015 Feb 18 5:55 AM
Hi Friends,
I have come across a scenario in which i want to have the internal table values to be stored at the run time of the program and to retrieve it later and to do it i went through syntax EXPORT MEMORY ID but as per SAP documentation it is mentioned as Obsolete statement , So could u pls suggest me any alternative way to over come this.
Regards,
Vinodkumar.
2015 Feb 18 5:59 AM
Hi,
Did not understand your requirnment fully. If you have submitted one program and taking the values from that submitted program to your main program then in that case your export memory id and import will work. But could not get your statement "retrive it later".
Please explain the senario.
Regards-
Makarand
2015 Feb 18 5:59 AM
Hi,
Did not understand your requirnment fully. If you have submitted one program and taking the values from that submitted program to your main program then in that case your export memory id and import will work. But could not get your statement "retrive it later".
Please explain the senario.
Regards-
Makarand
2015 Feb 18 6:18 AM
Hi,
I am using the below statements, but as per SAP using EXPORT is Obsolete statement
***Export values ***
EXPORT lt_insert FROM lt_insert TO MEMORY ID lv_id_insert.
EXPORT lt_insert FROM lt_insert TO MEMORY ID lv_id_insert_mail.
Regards,
Vinodkumar.
2015 Feb 18 6:42 AM
Hi,
I think you are doing it the correct way. just give the memory in in quotes.
EXPORT lt_insert FROM lt_insert TO MEMORY ID 'lv_id_insert'.
EXPORT lt_insert FROM lt_insert TO MEMORY ID 'lv_id_insert_mail'.
Regards-
Makarand
2015 Feb 18 6:48 AM
Hi,
I got the correct code and it is working fine but my concern is as per SAP it is Obsolete statement in this case using Obsolete statement is not correct so i want to know is there any alternative way to implement the same.
Regards,
Vinodkumar.
2015 Feb 18 7:01 AM
Hi,
I think exporting importing without memory id is obsolete and not with memory id.
Still I have found some nice doc. Try exporing the same.
Regards-
Makarand
2015 Feb 18 6:10 AM