‎2014 Oct 30 1:13 PM
Hello Experts,
I am working on proxy class and created one BAdI.
This badi has INBOUND_PROCESSING and OUTBOUND_PROCESSING methods.
After INBOUND_PROCESSING is executed, delivery gets created.
I want to get some of the parameters sent in INBOUND_PROCESSING and send in OUTBOUND_PROCESSING .
When delivery gets created , after that OUTBOUND_PROCESSING gets called.
I have only delivery number in OUTBOUND_PROCESSING structure, but i need to pass also reference number,article number etc.
I can get these fields from table, but thing is, delivery creation commit happens after outbound processing executed.
How to pass values from INBOUND_PROCESSING to OUTBOUND_PROCESSING.
Thanks,
Gaurav
‎2014 Oct 30 1:28 PM
I could use ABAP memory, but I would like to avoid that.
Is there any standard way? Please help.
‎2014 Oct 30 3:11 PM
Hi Gaurav,
This sounds like you could create a class with some static methods for setting data (to be called in the inbound processing) and for getting the data (in the outbound processing). I don't think you need ABAP shared memory for this, since the inbund and outbound methods are likely called in the same mode.
I hope that helps.
Kind regards,
Valentin