Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

proxy class Inbound method and outbound method

Former Member
0 Likes
580

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

2 REPLIES 2
Read only

Former Member
0 Likes
504

I could use ABAP memory, but I would like to avoid that.

Is there any standard way? Please help.

Read only

Former Member
0 Likes
504

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