cancel
Showing results for 
Search instead for 
Did you mean: 

synchronous server proxy trigger

Former Member
0 Kudos

Hi All,

i have a interface like webservice <--


> SAP XI <--


> SAP (Synchronous).

we decided to go SOAP ---Proxy interface is it correct way?

if it is correct then how we trigger the SAP report when we got the input from the webservice it should online.

when ever user enter the input it should come to SAP and based on that input SAP will provides the inforamation related to that input.

please let me know about do we need to do any ABAP coding for trigger?

thanks In advance

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

>> i have a interface like webservice <--


> SAP XI <--


> SAP (Synchronous).

>> we decided to go SOAP ---Proxy interface is it correct way?

Yes

>> if it is correct then how we trigger the SAP report when we got the input from the webservice it should online.

You don't need to trigger anything( XI will take care of it at runtime )

>> when ever user enter the input it should come to SAP and based on that input SAP will provides the inforamation related to that input.

User will provide input which will be pushed to XI via SOAP adapter. XI will push the input to SAP via proxy

>> please let me know about do we need to do any ABAP coding for trigger?

You need to do ABAP coding for the server proxy i.e you need to do coding for the business logic( converting input to output as per requirement); no coding for trigger etc

You could proceed as follows:

1. Built two service interfaces in XI - one outbound( for SOAP) and another inbound( for Proxy)

2. For the inbound interface, generate the proxy in the SAP system

3. Within this proxy, embed ABAP code for business logic

4. Do configuration for adapters

5. Generate the WSDL from outbound interface and provide it to the user

rgds

Answers (3)

Answers (3)

Former Member
0 Kudos

i got the way how to this like

we can go for the WS adapter as receiver communication channel but before this we need to do publish the or proxy class as webservice in SOAMANAGER transaction in ECC.

PriyankaAnagani
Active Contributor
0 Kudos

Hi,

>>we decided to go SOAP ---Proxy interface is it correct way? Yes, it is correct. Desig SOAPto Proxy interface. In the server proxy, write the ABAP code which will take the input from SOAP request and fetch the data from SAP database based on input and send the response back .

Regards

Priyanka

monicabhosale
Active Participant
0 Kudos

Hello,

Yes we need ABAP code to triger outbound proxy .you need to write the code to into inbound proxy class to trigger outbound proxy to send your o/p date to your webservice.

Regards

Monica