cancel
Showing results for 
Search instead for 
Did you mean: 

jdbc

Former Member
0 Kudos

hi...fri's,

my scenario is jdbc (async) to jdbc(sync) is it posible with out using bpm ...

Thanks in advance,

Pasi.

Accepted Solutions (0)

Answers (2)

Answers (2)

Shabarish_Nair
Active Contributor
0 Kudos

For a asyn to sync scenario, yes it is possible.

Your development will be similar to this - /people/arpit.seth/blog/2005/06/27/rfc-scenario-using-bpm--starter-kit

Also in case you are on SP19 (XI 3.0), then you can avoid BPM. REf the folowing, an extract from an earlier post. (Not it talks about File to RFC scenario but still the base is of a ASYNC to SYNC scenario)

<i>From SP 19 on XI 3.0 and SP 10 on PI 7.0, a File - RFC - File ( Asynch - Synch ) scenario can be done without a BPM.

Steps:

Integration Repository

The Integration Repository will be similar to any Synchronous Scenario ( say HTTP - RFC ) . 1 Outbound Synch message Interface and 1 Inbound Synch Message Interface.

Integration Directory

This is where a few differences lie, so let me take some time.

1. The Receiver Determination , Interface Determination will be the same as in HTTP - RFC synch scenario. Create the Sender File Adapter, Receiver RFC Adapter and Receiver File Adapter.

2. Sender Agreement will be for the Sender File Adapter. Sender Agreement uses the Synch Outbound Message Interface.

3. Receiver Agreement will be for the Receiver RFC adapter. Receievr Agreement will use the RFC as thge Inbound Message Interface.

4. We need to add a few modules in the Sender File Adapter.

Go to the Modules Tab of the Sender File Adater, and add the following modules in the same sequence,

Number - ModuleName - Type - ModuleKey

1- AF_Modules/RequestResponseBean - Local Enterprise Bean - 1

2- CallSapAdapter-Local Enterprise Bean - 2

3-AF_Modules/ResponseOnewayBean-3

Parameters

ModuleKey - ParameterName - ParameterValue

1 - passThrough - true

3-receiverChannel - Receiver File Adapter Name

3-receiverService - Receiver Business Service/ System

With this configuration, you can now handle the requirement without a BPM

This feature been already blogged for JMS Adapters in these blogs ,

Sync/Async communication in JMS adapter without BPM (SP19)

Async/Sync Communication using JMS adapter without BPM (SP 19)

Dynamic Configuration is also possible,and this as well as many other options are discussed in the How To guide - "How To Realize a sync-async and async-sync

bridge within the Adapter Framework" available on the Service Market Place.

For info on the Modules used here, look into these links,

Request Response Bean - http://help.sap.com/saphelp_nw04/helpdata/en/45/20c210c20a0732e10000000a155369/content.htm

Response Oneway Bean - http://help.sap.com/saphelp_nw04/helpdata/en/45/20cc5dc2180733e10000000a155369/content.htm</i>;

Former Member
0 Kudos