‎2007 Oct 24 9:50 PM
Hello ABAP Gurus,
I'm using the EXPORT/IMPORT statements to pass data with in the sale order processing (with in the user exits) and i wanted to clarify that, when sales order are created using batch process, will there be any chance of overwriting the current sales order values with the next sales order, if the values for the current sales order not been imported.
I understand that the ABAP memory is available with in the lifetime of session and when the sales order are created in the batch process, the batch process will be executed in the single session with batch user id.
Thanks in advance
‎2007 Oct 24 9:59 PM
Hi,
Yes, the values will be over written for the current sales order values with the next sales order, if the values for the current sales order not been imported.
<b><REMOVED BY MODERATOR></b>
Thanks
Dany
Message was edited by:
Alvaro Tejada Galindo
‎2007 Oct 24 10:09 PM
Thanks for the response.
I would like to know what the likelihood of happening this is.I know if the situation happens the memory will be overwritten as it replaces the current values and will not append the values.
‎2007 Oct 25 12:53 AM
‎2007 Oct 26 4:51 AM
‎2007 Oct 26 4:58 AM
Hi pramodh,
Can you explain as what you want to know. Yes the memory will be overwritten.
Regards,
Atish
‎2007 Oct 26 6:52 AM
Hello Atish,
i was trying to find out, whether my thinking of overwriting could actually happen in real time?.
Let me know?
‎2007 Oct 26 6:56 AM
Hi pramodh,
Yes it will happen. Also it is good practise to use
FREE MEMORY ID id.
after IMPORT.
and before EXPORT.
Why take a chance :).
Regards,
Atish
‎2007 Oct 26 3:46 PM
‎2007 Oct 24 10:07 PM
Hi Pramodh,
Definitely, the old values will be overwritten by the new ones.
Hope this helps.
<b><REMOVED BY MODERATOR></b>
Thanks,
Srinivasa
Message was edited by:
Alvaro Tejada Galindo
‎2007 Oct 24 10:09 PM
Hello Pramodh,
You can use the FREE MEMORY ID 'ZSSSSS' after your IMPORT statement.
Regards,
Naimesh Patel
‎2007 Oct 26 5:01 AM
Hi,
use the userexit USEREXIT_REFRESH_DOCUMENT. to refresh the memory parameters...This will be called even multiple orders is getting processed..
In the sales order processing...This user exit will be triggered whenever the document is getting processed..
Thanks
Naren