2022 Aug 24 4:05 PM
I have a user exit where export is written and using job_open, job_close submiting another program ... and when I try to import at job level I am not getting values,
any suggestions on this?
2022 Aug 24 4:53 PM
If you are talking about statements EXPORT TO MEMORY and IMPORT FROM MEMORY, they can't work between two different ABAP sessions, they work only inside the same ABAP session, as explained in ABAP documentation - Sessions and Memory Areas.
From ABAP documentation of MEMORY: "If MEMORY is specified, the data cluster is written into the ABAP Memory".
2022 Aug 24 5:41 PM
Hi sandra.rossi sandrarossi thank you, thats 100% right its about memory, sadly there is no other way to do so, looks like ending up creating selection-screen parameters and import the value,
Let me know if there is any other way, thank you.
2022 Aug 25 6:58 AM
Adding a parameter to pass an additional argument seems very logical.
2022 Aug 25 7:18 AM
Hi satishv8
If you can explain your requirement viz.
what is the memory value you are exporting.. a single value or table data?
What is the frequency of export and import? meaning.. many exports and background job is only one ? or one to one?
This will help us to think of any solution.
2022 Oct 03 5:33 PM