cancel
Showing results for 
Search instead for 
Did you mean: 

How to Write..

Former Member
0 Kudos

Hi,

How to write <b>SAP Proxy Enhancements</b> in XI. kindly give some example please.

Thanks in advance,

Regards,

Kannan.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Open SPROXY transaction in XI system, and go to SAP BASIS 6.40 (SWCV) expand it and look at the Message Interfaces Inbound and Outbound.

There is one <b>BookingOrderConfirmation_In</b> Message Interface for inbound, if you expand that you will interface <b>II_SXIDAG_BOOK_ORDER_CONFIRM</b>, double click on that and then double click on ABAP Name <b>CL_SXIDAG_BOOK_ORDER_CONFIRM</b>, then double click on Analyze <b>II_SXIDAG_BOOK_ORDER_CONFIRM~EXECUTE_ASYNCHRONOUS</b>.

You can see the code.

Follow the samething for outbound except it is <b>BookingOrderConfirmation_Out</b>

Answers (1)

Answers (1)

udo_martens
Active Contributor
0 Kudos

Hi Kannan,

u can generate proxys in transaction SPROXY from ur interfaces.

An outbound interface u cant change, but u can call it with specified values and so send a message triggerd by an ABAP programm.

A inbound proxy will be executed if a message is reaching the interface. U can put code into the inbound proxy to work with the values. Look to the type of parameters input and output of the execute method. Input is 4 synchronous and asynchronous, output (the answer) only 4 asynchronous messages. Usually this parameters are deep structures, look to the graphical view to handle that easier.

Regards,

Udo