cancel
Showing results for 
Search instead for 
Did you mean: 

Legacy - XI - R/3 Scenario

Former Member
0 Kudos

Hi All,

I need to fetch data stored in a table and with that data I need to create a PO in R/3. I have done upto this part with asynchronous interfaces. Now I need to get the detail of the created PO and update in a new table in legacy system.

How can I achieve this? Do I need to go for a BPM? If so how should that BPM look like?

Thanks & Regards,

Jai Shankar.

Accepted Solutions (1)

Accepted Solutions (1)

Shabarish_Nair
Active Contributor
0 Kudos

It would always be a better idea to make the design without a BPM so as vijaya mentioned on a design prespective a sync call say with a BAPI would be ideal in your case.

Former Member
0 Kudos

Hi,

I am using ABAP proxy at the receiver end. Also can we use a sender JDBC adapter with BE comm. mode?

Thanks & Regards,

Jai Shankar.

udo_martens
Active Contributor
0 Kudos

Hi Jai,

ABAP proxy is a good decision

You cant use the JDBC sender adapter for synchronous message flow. You need BPM for your task.

Regards,

Udo

Former Member
0 Kudos

Hi,

Can you pls tell me the msg flow for my scenario? How should I design my BPM?

Thanks & Regards,

Jai Shankar.

udo_martens
Active Contributor
0 Kudos

Hi Jai,

JDBC-sender -> BPM (asynchr), 1 outbound, 1 abstract Interface

BPM <-> R/3 (synchr), 1 abstract, 1 inbound interface, 1 inbound proxy at R/3

BPM -> JDBC-Receiver (asynchr), 1 abstr, 1 inbound interface

Regards,

Udo

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

you have two options out here.

1. If you are creating PO with BAPI then all you need to do is synchronus interfaces on both end. RFC being sync and you can create MI sync for JDBC and hence no BPM is required.

2. If you are using ALE/IDoc then you will have to use BPM.

Regards

Vijaya