cancel
Showing results for 
Search instead for 
Did you mean: 

ABAP proxy client sending to XI and Receive the data back from the DB

Former Member
0 Kudos

Hi

I am new to XI need a clarification on the following scenario

I have a scenarion where ABAP Proxy (Clinet) from ECC will be sending the data to Data base server via XI, and needs to return the values back to ECC

ECC -


> XI/PI -


> Remote server (Database)

<--


XI/PI <--


Can anyone give idea how can I develop this scenario.

I am sure I would be using the Proxy BADI to send the data from ECC to XI in Asyscrounous mode,

Thanks

PR

Accepted Solutions (0)

Answers (6)

Answers (6)

Former Member
0 Kudos

Thanks

Former Member
0 Kudos

Hi,

JDBC supports Synchronous call. Also Proxy can be Synchronous.

Simply create the Interfaces. For the Sender Interface, create the Proxy Class and use the method EXECUTE SYNCHRONOUS to give the Sync call to the DB System.

Regards,

Subhendu

Former Member
0 Kudos

Hi

it is fine that you are using Proxy to DB and DB to proxy, but what is the interface abt, you want everything in one interface or two interface ,it will be fine if you explain for what you are doing the interface ,

Ihpe you can use JDBC for the extrernal Database and Proxy in the R/3

Former Member
0 Kudos

Hello,

Make ABAP proxy client synchronous if possible and as well as jdbc receiver.

As its proxy client, no need to use XI adaper.

Regards,

Sreenivas.

Former Member
0 Kudos

Hi,

As you said the data will be sent asynchronously from BAPI to XI which means you will have to split up the scenario into two.

First One -

Sender Proxy - XI - Receiver JDBC.

Second -

Sender JDBC - XI - Receiver Proxy.

You can set a flag to"1" when you insert data into table. the run a query on the database which will fetch record whose flay is set to "1" and also simultaneously rest the flag to "0" to indicate that this record is already send to SAP.You can make use of stored procedures too.

Please award points if the reply is useful.

Regards,

Pragati

Former Member
0 Kudos

First of all you need responce back so you have to configure Synch. scenario.

you can use XI adapter for Proxy and JDBC adapter for database.

after that you can generate proxy class in ECC from interface, which you can use in ABAP coding.