Usage of  sync-asyn bridge problem in BPM in particular scenario

scenario is to send a Stock availability check from one suboffice to other suboffice which does not involve any R/3 activities.
I need to send SOAP request to XI, BPM receives request through synchronous interface.
BPM has to send request to DB through synchronous interface and gets response
Questions:
1) whether sync-async bridge comes into picture in BPM or not
2) i am really confused how many Data types,Message types and message interfaces i have to create.
3) what are all the message interfaces i have to create
4) abt Integration Directory activities.
Its would be appreciated if u tell step by step.
Its urgent..
Thanks & Regards.,
Pushparaju.B

I have created these things as of now , but problem in interface mapping
<u>Interface Objects</u>
Data Types
1)DT_Soap_request
2)DT_Soap_response
3)DT_Jdbc_request
4)DT_Jdbc_response
corresponding message types
1)MT_Soap_request
2)MT_Soap_response
3)MT_Jdbc_request
4)MT_Jdbc_request_response
Message Interfaces
1)MI_SOAP (inbound asynchronous) MT_Soap_Response and MT_Soap_Request input message
2)MI_JDBC (outbound asynchronous) MT_Jdbc_response output message and MT_Jdbc_request input message
<u>Mapping Objects</u>
Message mappings
1) MM_Jdbc_Response_Soap_Response where MT_Jdbc_request_response and target message is MT_Soap_response
2) MM_Soap_Request_Jdbc_Request where source message is MT_Soap_request and target message is MT_Jdbc_request
Error in interface mapping is
IM_Soap_Request_Jdbc_Request has interfaces source is MI_JDBC and target is MI_SOAP
<b> No object found for message mapping in request tab</b>
can anyone help me please its urgent.
why its not detecting the message mapping in request tab
Thanks & Regards.,
Pushparaju.B.

Similar Messages

  • BPM - Receive Sync/ASync Bridge Problem

    Hi,
    I am creating a scenario for an inbound Synch request to be serviced by a BPM process.
    Here is the problem that I am facing while trying to configure the Receive Step
    - I created a Message Interface defined as Abstract Synchronous.
    - I created a process model and put in a Receive Step: Mode - Opens S/A Bridge, Synchronous Interface - defined as above.
    - I define a container with Abstract type. But when I try to locate the above defined Abstract Synch message interface, I cannot find it.
    - As a workaround, I create another Abstract Message Interface defined as Abstract ASynch.
    - I create a container with this Abstract ASynch message type.
    - I use this container in the Receive Step.
    But activating the Business Process gives the error:
    Message to be received and Synchronous Interface do not have identical types.
    Can someone give me the correct procedure to configure the Sync / ASync Bridge ? thanks,
    -Manish

    Dan,
    This is the link you are looking for?
    http://help.sap.com/saphelp_nw04/helpdata/en/83/d2a84028c9e469e10000000a1550b0/frameset.htm

  • BPM correlation and Sync-Asyn Bridge....

    Regarding Sync-Asyn ,I have gone thru these blogs...
    Demonstrating Use of Synchronous-Asynchronous Bridge to Integrate Synchronous and Asynchronous systems using ccBPM in SAP Xi - Use of Synch - Asynch bridge in ccBPM
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1403 [original link is broken] [original link is broken] [original link is broken] - Use of Synch - Asynch bridge in ccBPM
    I am not able to do a end to end scenario...using this ....So could any one give me a step by step guide for the syn-asyn Bridge.
    And also step by step for correlation...
    Please help me in this regard....

    Hi,
    Defining Sync/Async Communication
    To enable the communication between a synchronously calling business system (synchronous outbound interface) and an asynchronously called business system (asynchronous inbound and outbound interface), you can define a sync/async bridge in an integration process. You can only define one sync/async bridge for each integration process.
    You can also achieve sync/async communication by using the JMS adapter. If you do not have any particular demand for monitoring or for troubleshooting, SAP recommends that you use sync/async communication in the JMS adapter instead. The advantage of using the JMS adapter over synch/async communication using an integration process is a significant increase in system performance.
    See: Async/Sync and Sync/Async Bridge in JMS Adapter
    Structure of a Sync/Async Bridge
    The following table outlines the minimum components of a sync/async bridge:
    Step
    Use
    Receive step to open the sync/async bridge
    Receives the message request from the synchronously calling business system and opens the sync/async bridge
    Asynchronous send step
    Sends the received message asynchronously to the asynchronously called business system
    Receive step
    Receives the message from the asynchronously called business system
    Send step to close the sync/async bridge
    Sends, for example, the response from the asynchronously called business system to the synchronously calling business system
    Performance Considerations
    If you insert additional steps in the sync/async bridge, the synchronous time is increased correspondingly. If the time that elapses before the sync/async bridge is closed is too long, this can lead to problems.
    Fault Messages
    It is currently not possible to send fault messages back to the synchronously calling business system. If you want to return error statuses to the synchronously calling business system, you can define a field for an error indicator in the message that is sent to the synchronous interface.
    Procedure
    Define a Receive Step to Open the Sync/Async Bridge
           1.      Insert the receive step to open the sync/async bridge in the integration process.
    You can do this at the following points:
    ○       Directly after the start marker
    ○       As the first step in a block if the block is the first step of the integration process and if it has the mode Standard
    ○       As the first step in a fork. If the fork already contains some starting receive steps, the Start Process indicator is automatically reset for these steps.
           2.      In the object area, define the container element that receives the synchronously sent message.
    Specify an asynchronous, abstract interface in the container element. The message must correspond to the request message of the synchronous interface used to receive the message.
           3.      Select this container element in the Message field in the properties area of the receive step.
           4.      In the Mode field, select Open S/A Bridge.
           5.      Select the Start Process field.
    The receive step to open the sync/async bridge must start the integration process. There must be no other receive steps to start the integration process.
           6.      Specify the synchronous interface for receiving the message from the synchronously calling business system. The message type of the message to be received and the request message from the synchronous interface must be identical.
    Define an Asynchronous Send Step
           7.      Insert a send step that sends the received message asynchronously to the asynchronously called business system.
    See also: Sending Messages from Integration Processes Asynchronously
    Define a Receive Step
           8.      Insert a receive step that receives the message from the asynchronously called business system.
    Define a Send Step to Close the Sync/Async Bridge
           9.      Insert the send step at the required position in the process definition.
    Do not insert the send step in a loop, block, or fork.
       10.      In the Mode field, select Close S/A Bridge.
    The integration process must not contain any further send steps to close a sync/async bridge.
       11.      In the Opened By field, specify the receive step that opened the sync/async bridge.
       12.      In the message field, specify the message that is sent to the synchronous interface.
    This message must be of the same type as the response message from the synchronous interface that you specified in the opening receive step.
    Example
    You can find an example of a sync/async bridge in the Integration Repository under SAP Basis à SAP Basis 6.40, namespace http://sap.com/xi/XI/System/Patterns under BpmPatternSyncAsyncBridge.
    For a description of the example, see Example: Sync/Async Communication.
    Reg,
    suresh

  • How to realize a Sync-Asyn Bridge

    Hey Folks,
    I was trying to 'decode' whatever is written in the How to guide (Realize a sync - async and async - sync bridge in the adapter framework). Thanks to Bhavesh he posted the thread on the Async - Sync part and so i thought i would figure out the Sync - Async part.
    Ok so here is what i have done till now (with no success);
    its a HTTP <-> XI <-> File
    So;
    2 DT/MT for HTTP, 2 DT/MT for file
    1 MI outbound sync -> http
    1 MI inbound sync -> File
    the 2 mappings and the 1 IM
    In configuration;
    1 rec. file adapter and 1 sender file adapter
    the configuration is as usual for a sync scenario; except for the sender agreement for the sender file adapter, i configure a dummy sender agreement with dummy interface and dummy namespace but the original CC created.
    In the Recv. file channel module part;
    1     AF_Modules/RequestOnewayBean     Local Enterprise Bean     2
    2     CallSapAdapter     Local Enterprise Bean     0
    3     AF_Modules/WaitResponseBean     Local Enterprise Bean     1
    2     passThrough     true
    in the sender file channel;
    1     AF_Modules/NotifyResponseBean     Local Enterprise Bean     1
    So any of you guys who did something on that document, i hope can throw some light
    Cos i am sure i am missing something here !!!
    ~~ShaBZ

    HI,
    Are you using BPM or not??
    Can you plz tell me the SP number/version.
    I hope Sync - Asyn without BPM is possible with latest SP.
    Please see the below links
    /people/community.user/blog/2006/12/12/http-to-rfc--a-starter-kit
    Searching for a BPM scenario
    With BPM
    /people/sriram.vasudevan3/blog/2005/01/11/demonstrating-use-of-synchronous-asynchronous-bridge-to-integrate-synchronous-and-asynchronous-systems-using-ccbpm-in-sap-xi
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1403 [original link is broken] [original link is broken] [original link is broken] [original link is broken]
    Regards
    Chilla..

  • Sync-Asyn Bridge

    Hello friends,
    Could any one give information or blog on Synch -Asyn Bridge used in HTTP --> RFC scenario

    Hi,
    Refer this..
    https://www.sdn.sap.com/sdn/weblogs.sdn?blog=/pub/wlg/1403 [original link is broken] [original link is broken] [original link is broken]
    BPM Sync- Async Bridge
    Pipeline timeout error
    /people/pooja.pandey/blog/2005/07/27/idocs-multiple-types-collection-in-bpm
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/e3d59c90-0201-0010-ac83-cfd0071f095a
    Who to manage TimeOut in BPM ?
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/eb5cc090-0201-0010-5284-fd5376b01934
    /people/sriram.vasudevan3/blog/2005/01/11/demonstrating-use-of-synchronous-asynchronous-bridge-to-integrate-synchronous-and-asynchronous-systems-using-ccbpm-in-sap-xi - Use of Synch - Asynch bridge in ccBPM
    regards,
    vasanth.

  • Correlation and Sync Asyn Bridge

    Regarding Sync-Asyn ,I have gone thru these blogs...
    Demonstrating Use of Synchronous-Asynchronous Bridge to Integrate Synchronous and Asynchronous systems using ccBPM in SAP Xi - Use of Synch - Asynch bridge in ccBPM
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1403 [original link is broken] [original link is broken] [original link is broken] - Use of Synch - Asynch bridge in ccBPM
    I am not able to do a end to end scenario...using this ....So could any one give me a step by step guide for the syn-asyn Bridge.
    And also step by step for correlation...
    Please help me in this regard....
    <Moderator note: thread locked. I moved your last post to XI, please do not post duplicate questions>
    Edited by: Mike Pokraka on Jul 7, 2008 1:00 PM

    Regarding Sync-Asyn ,I have gone thru these blogs...
    Demonstrating Use of Synchronous-Asynchronous Bridge to Integrate Synchronous and Asynchronous systems using ccBPM in SAP Xi - Use of Synch - Asynch bridge in ccBPM
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1403 [original link is broken] [original link is broken] [original link is broken] - Use of Synch - Asynch bridge in ccBPM
    I am not able to do a end to end scenario...using this ....So could any one give me a step by step guide for the syn-asyn Bridge.
    And also step by step for correlation...
    Please help me in this regard....
    <Moderator note: thread locked. I moved your last post to XI, please do not post duplicate questions>
    Edited by: Mike Pokraka on Jul 7, 2008 1:00 PM

  • When is Sync-Async bridge used in BPM? Kindly help!

    Hi Experts,
       I am finding it difficult to understand when to use Sync-Async bridge. In the example given by SAP it is not clear what they mean by following:
    1. We use Sync-Async bridge when the sender system is Sync and Receiver system is Async. What do you mean when you say receiver is Async?
    2. When Receiver is Async then how will it send a response?
    3. Can somebody explain the "Wait" mechanism used to get the response?
    4. Can we use Sync-Async bridge when both the sender and receiver systems are Sync? How?
    Please help me with the answers
    Thanks & Regards,
    Gopal

    Hi,
    In a simple way ill tell you. Suppose we need to check the reservation seats of Train or flite then the sender(our) side is Asynchronous and receiver(server) side is Synchronous, because the receiver(server) takes the request and send the response(seats r avail or not).
    For your second question
         If the receiver is Async then it doesn't send the response.
    For your fourth question chk this
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1403 [original link is broken] [original link is broken] [original link is broken]
    For more info Check this links
    Demonstrating Use of Synchronous-Asynchronous Bridge to Integrate Synchronous and Asynchronous systems using ccBPM in SAP Xi
    http://help.sap.com/saphelp_nw04/helpdata/en/83/d2a84028c9e469e10000000a1550b0/content.htm

  • Sync - Async Bridge problem

    hi all,
    is the first time i use this BPM
    my scenario is simple. i have a ws ho send a interface ID, a java mapping that read flat file, convert into xml and send the response. this XML is save in drive. this file is picked by a file adapter and send the xml to ws as response.
    i undertand how to create de BPM bu no how to configure the Interface Mapping.
    Thanks
    Rodrigo

    Interface Mapping is between SOAP Request <--> Your XML message Request Response.
    Only one interface mapping is required.
    Message Interface Required
    1. SOAP Synchronous
    2. XML Request Async
    3. XML Resp Async
    4. XML Message Request Response Sync
    Gaurav Jain
    Reward Points if answer is helpful

  • Problem regarding bpm message split scenario

    hi experts,
    iam doing a scenario file->bpm->file scenario
    msg->msg1+msg2 message will be split like this
    my second msg is logically deleted from system.i found this in PE of sxmb_moni
    i got only the first part of the splitting.
    start->receive->transformation->fork->two receiver determinations for two branches and-> after that two send steps after two receiver determnations -->close of fork->stop
    sxi_cache is zero
    where it went wrong.
    could u plz tell me the reason when this will happen(second message is logically deleted).

    HI
    Are you following this blog
    Illustration of Multi-Mapping and Message Split using BPM in SAP Exchange Infrastructure
    Check with your Transformation step and receiver determination you are trying in fork.
    Check with your mapping. Is it creating target messages properly.
    Thanks
    Gaurav

  • Sync / Async Bridge without BPM

    Hi All,
    I was trying to implement the Sync / Async Bridge without the BPM. I am trying a HTTP to JMS Sync / Async Bridge. I have followed the following link and done exactly the same as shown in the document
    http://help.sap.com/saphelp_nw04/helpdata/EN/45/20d2b4c20a0732e10000000a155369/content.htm
    I have used a Java application which will poll the request queue and then place the message in the response queue with the same correlation ID frm the request queue.
    After following the above link the response message was not appearing, the message were going to deilvering status and after some time i found that they were cancelled without errors
    I searched in the forums for many solutions but what i found was this thread which stated that since the XI message ID is 32 bytes and Correlation ID is only 24 bytes its difficult for Modules to identify the response since the correlation is truncated.
    JMS: Synch/Async bridge - how to configure
    I tried changing the configuration in the reciver JMS channel to XI Conversion ID instead of Message ID and this also doesnt give me fruitfull results. The message was not being placed in the request queue, it gave an error saying that the conversion id was null. Though in the thread it seems to have worked for him.
    After this i planned to dynamically generate a Correlation ID (a dummy one) of 24bytes and i sent it to the request queue this time the message was retrived from the response queue only to find that the correlation ID this time has been converted to some other format
    Corrletion ID sent to the request queue: ABCDEFGHIJKLMNOPQRSTUVWX
    Corrlation ID coming in the response queue : 4142434445464748494a4b4c4d4e4f505152535455565758
    Can anyone put some light on what i exactly need to do or tell me why the conversion ID worked for Daneil in the thread and it gave me an error saying that the Conversion id is null
    Rgds
    Aditya

    Hi Prateek,
    This is what was tried in my first case. I did exactly what was given in that link.But since the Message id being 32 bytes and length of correlation id is 24 bytes id is getting truncated.
    So its not working fine.
    @ke i am having a look at the note will update you on this
    Thanks for your response
    Rgds
    Aditya

  • Sync/ Asycn Bridge Time out error

    Hi Experts,
    I have defined a BPM Sync/Async bridge for belwo mentioned requirement
    1. ECC calls a sync proxy.
    2. PI receives the message using Sync Async bridge
    3. PI will connect to a DB to read a table record status (Sync mode)
    4. If record staus is 'completed', it will again connect to DB to make it 'InProgress' synchronously
    5. If record status is not 'complete', it wont connec to DB
    6. Based on the status (eithe in progress or completed) a response message will be given back to ECC as part of response  message. Here I am closing the Sync/ Async bridge
    When I am executing this scenario, BPM is not starting & I see error in SXMB_MONI as "Timeout condition of pipeline reached".
    Please suggest what could be wrong.
    Thanks.
    Regards
    Sushil

    Hello
    Try increasing the timeout parameter - CHECK_FOR_ASYNC_RESPONSE_TIMEOUT (in trx sxmb_admin -> Integration Engine Configuration). Do you still get the error after increasing the timeout?
    Regards
    Mark

  • Need help with scenario BPM Http-RFC Sync/async bridge

    hi all!
    i've got the following scenario: HTTP-BPM(XI)-RFC synchronous both of them. for that, i'm using S/A bridge in the BPM, but i'm getting the error 'Timeout condition of pipeline reached'. i think the problem is that the process gets lost in the sync/async communication, because in the trace level shows CL_XMS_PLSRV_CALL_BPE-ENTER_PLSRV" and after that every message are 'wait time starting'.
    don't know the reason of the error. Maybe I missed something to configure?
    the BPM is like this:
    Receiver(Open Sync/Async bridge) -> Transformation (mapping from http request to RFC request) -> SyncSend (RFC request and response) -> Transformation (mapping from rfc response to http response) -> Send (Close S/A Bridge)
    the IR is configured like this:
    Message Types u2013 External Definitions u2013 Imported Objects
    mt_cxml_request -> contains xsd of xcml request template.
    mt_cxml_response -> contains xsd of xcml response template.
    zintegracion_pedidos -> imported RFC from R/3
    zintegracion_pedidos.response -> imported RFC from R/3
    Message Interfaces
    mi_cxml_request_async_abs
    mi_cxml_request_sync_abs
    mi_cxml_request_sync_out
    mi_xcml_response_async
    mi_rfc_request_asyn_abs
    mi_rfc_request_sync_abs
    mi_rfc_request_sync_in
    mi_rfc_response_async_abs
    Message Mappings
    mm_cxml_request_to_rfc_request -> mapping from http request (cxml) to rfc request.
    mm_rfc_response_to_cxml_response -> mapping from rfc response to http response (cxml).
    Interface Mappings
    im_cxml_request_async_abs_to_rfc_request_async_abs
    im_rfc_response_async_abs_to_cxml_response_async_abs
    and the ID is configured like this:
    Business system DES -> created business system for RFC adapter with interface mi_rfc_request_sync_in as receiver. Comunication channel u2018RFC Receiveru2019
    Businnes service VW -> created businnes service for HTTP adapter with interface mi_cxml_request_sync_out as sender. Comunication channel u2018HTTP Senderu2019
    Receiver Determination
    two receiver determinations. One for BPM and the other one for RFC(R/3):
    |VW| mi_cxml_request_sync_out:
    |BPM_PO| mi_rfc_request_sync_abs:
    Interface Determination
    two interface determinations:
    |VW| mi_cxml_request_sync_out | | BPM_PO:
    |BPM_PO| mi_rfc_request_sync_abs | * | * :
    Sender Agreement
    VW
    mi_cxml_request_sync_out
    Receiver Agreement
    |BPM_PO| |DES| mi_rfc_request_sync_in

    hi all,
    i've removed the transformations from the BPM, and i've created:
    in IR:
    - interface mapping: im_xcml_request_to_rfc_request_sync_abs
                                    source interface: mi_cxml_request-sync_abs
                                    target interface: mi_rfc_request_sync_abs
    in ID:
    - receiver determination: |VW| mi_cxml_request_sync_abs
                                      sender service: VW
                                      interface: mi_cxml_request_sync_abs
                                      receiver: DES
                                      interface mapping:im_xcml_request_to_rfc_request_sync_abs
    - interface determination: |VW| mi_cxml_erquest_sync_abs ||
                                         sender service: VW
                                         interface: mi_cxml_request_sync_abs
                                         inbound interface: mi_rfc_request_sync_abs
                                         interface mapping: im_xcml_request_to_rfc_request_sync_abs
    - receiver agreement: |VW| |DES| mi_rfc_request_sync_abs
                                   sender service: VW
                                   receiver service: DES
                                   receiver interface: mi_rfc_request_sync_abs
    not sure these are the steps i had to do for mapping xml to rfc. but the result is the same error as before, the timeout.
    i couldn't test with RTW because i'm getting an error 401 unauthorized.
    i'd do it without BPM but the issue is that i wanted to add another step that would be to send the response from rfc to mail too once i got this BPM running. i mean, the response from RFC would be sent to http response and mail both.
    the only way i can imagine to do it is with BPM but i'm really fed up with it.
    thank u very much folks

  • BPM Design using sync-async  bridge

    Hi Arpit,
    Below mentioned is an overview of the process flow which we are trying to implement.
    1. A synchronous interface takes in the request
    2. After the mapping, a file is created
    3. Another file adapter reads this file and sends a message back to the sync interface. This step is to make sure that the file is created
    I'm using a sync-async bridge for this process, since file creation and reading processes are asynchronous and the request/response is synchronous.
    Can somebody help me by telling how to design the BPM. How many send and receive steps are required etc?
    Thanks,
    Sandeep
        | Request  |    |    |       |    |     |    |       |
        |--------->|    |    |       |    |     |    |File   |
    HTTP|          |Sync|--->|Mapping|--->|Async|--->|Adapter|
        |<---------|I/f |<-  |       |    |I/f  |    |(write)|
        | Response |    | |  |       |    |     |    |_______|
                          |                              |
                          |                              |
                          |                          ____|___
                          ||      |   |        |    |        |
                          -|Async |<--|File Adp|<---|Folder  |
                           | I/f  |   |(read)  |    |________|

    Hi
    <i>>>I have to map the incoming xml from HTTP to another format before creating the file.</i>
    Ya then u can use the transform Step in between the
    sync Recv ---> Transform ---> Send to File System
    <i>>>Once a file is read, that interface has to send an acknowledgement message telling the status.</i>
    Wht type of acknowledgement msg telling the status.
    I think u can add another element in ur created file payload like <b>Status</b>: Created (ConstanT)
    Then u can map the payload of the readed file with tis payload having Ststus init.Fo this u need a <b>Transformation</b> Step.
    BTW i was searching some previous blogs and i got this and it is bit related to ur scenario.Go thru this
    /people/sriram.vasudevan3/blog/2005/01/11/demonstrating-use-of-synchronous-asynchronous-bridge-to-integrate-synchronous-and-asynchronous-systems-using-ccbpm-in-sap-xi
    Hope it helps.
    Regards
    Arpit Seth

  • Doubt on Sync-Async  bridge using BPM

    Hi Experts,
                     I had a doubt on Sync-Async  bridge using BPM,
       1. If sender system is SAP system and receiver system is non-sap system then while configuring in Integration Directory how many  Receiver Determinations should be done ?
    2.Plz explain if we have 2 receivers i.e one sender SAP system and 2 non-sap systems then what will be the no. of receiver determinations?
    3.How we have to count no. of receiver determinations if we have 2 receivers and 1 receiver system? If so what is the no. of receiver determinations in case of 1 receiver syst and 2 receiver systems?
    Plz clarify above questions  good answers will be definetly rewarded.
                                                                                    Regards,
                                                                                    Vinod.

    vinod,
    ... Sync-Async bridge and Recievr determination are not related....
    Sync-Async bridge means.. u r sending some request syncronously...and u r expecting the response also in synchronous way... but u r not getting the response  directly...u r getting it via BPM..i.e asynchornously.....
    see here what is the  Use of Synch - Asynch bridge in ccBPM
    /people/sriram.vasudevan3/blog/2005/01/11/demonstrating-use-of-synchronous-asynchronous-bridge-to-integrate-synchronous-and-asynchronous-systems-using-ccbpm-in-sap-xi
    and here if u have 2 reciver... u have to create 2 receiver determination and ofcourse for BPM one reciver dtrmination is required.... since in BPM related scenario BPM will act as a reciver...BPM(IP) wil first recive the message then it will be forwarded to Receiver system!!! so total 3.
    <b>3.How we have to count no. of receiver determinations if we have 2 receivers and 1 receiver system? If so what is the no. of receiver determinations in case of 1 receiver syst and 2 receiver systems?</b>
    r u telling that u r having two recivers and each receiver is receiving messages using 2 interaces???
    u have 2 use 2 receiver determination and 4 interface determination.
    regards
    biplab

  • Async-Sync-Async Bridge Without BPM

    HI Folks,
    I have a requirement as
    u201CAn Asynchronous SOAP request is triggered to PI and then should get records from a (JDBC)database and write the result to a fileu201D
    It is of Aync-Sync-Async Bridge and i have to do without BPM
    I know by using some module parameters at sender communication channel we can do this.
    But my query
    1)Is that for SOAP sender communication channel can we provide the same module parameters
    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
    2) Does the SOAP support the without BPM scenarios
    3)Scenario is like Soap --> JDBC -->File (Async - Sync - Async) and how abt for Soap --> RFC -->File (Async - Sync - Async)
    Thanks in Advance
    Lemon

    For your requirement , you can handle this scenario without BPM in two ways.
    1) Async sync bridge without BPM.   You are going to use request response bean and one way response bean module to achieve this. very simple. See this [link|http://wiki.sdn.sap.com/wiki/display/XI/File-RFC-File(Without%20BPM)]
    In the sender SOAP channel you have to configure first request response bean, second callsapadapter and third onewayresponse bean. Refer this link. Simply follow file sender configuration for your soap sender or RFC sender.
    Note: one receiver agreement , one receiver determination, one interface determination. only two receiver channels one jdbc and one file.
    2) You can create SOAP  to File asynchronous.  Using quality of service  EO and creating service interface asynchronous mode.   In the mapping area do JDBC lookup.  If your version is 7.1 then this lookup is available. This is pretty simple no need to do async to sync pattern.
    Hope that helps.

Maybe you are looking for

  • Sharing music between users on one MacBook

    Is it possible for two different users (who share one MacBook) to share the one iTunes library of music? Cannot seem to make this work.

  • Character encoding problem

              We are using WebLogic 7.0 SP4 on Solaris 8 w/ jdk131_10. By default we don't specify           the "encoding" jsp-param of the jsp-descriptor in the weblogic.xml. The BEA documentation           says "If not set, this parameter defaults to

  • Thread problem in swing application?

    Hi, I have a doubt in GridLayout and Threads. I�m doing one small application which is accepting images and Alphabets. Actually, What I�m doing running images and alphabets(combinedly) in frequent intervals. For this I used GridLayout and Thread conc

  • HT5454 What does this do for me as a LAPTOP user?

    What does Apple Deskttop Client 3.6.1 do for me as a Macbook Pro OS X 10.7.5 user?

  • Re: CS5.5 Not rendering

    I was working on my mini movie and I was rendering as I went along. I saved it and came back to it to add more but now it won't render the stuff I did before. I clicked render effects, nothing, I clicked render entire area nothing. Edit: I'll be a bi