Async/Sync BPM passing a ID from the Req msg to Rsp MSg

Hi,
I have a File to SAP Standard proxy scenario. The file go though a Async/Sync BPM which sends a SAP standard message post a document to SAP and SAP sends a success or error response back. I then send this response back as a mail message. The problem is that in the response message there is nothing that ties it to the request message. What I need to do is to pass an ID in the request message to the Response message when the Response message comes back from the SAP Proxy.
This will enable us to determine which file was successful and which not.
Your assistance in this matter will be greatly appreciated.
Regards
Willie Hugo

>
Hugo Willie wrote:
> Thank you Shabarish, but the Id I refer to is a uniue id in the request message payload that I would like to pass to response message payload.
there are two ways;
1. Pass the id into sap and let sap pass it back to you
2. do a transformation in your BPM once you get the response from SAP - in this transformation you can add the request message also as source (i.e response from SAP and request message). thus you can map the required value to the final response. In BPM, the data is always persisted so the id will be available always until the BPM execution is ended
my preference will be option 1

Similar Messages

  • My iPhone 4 will not sync my new voice memos from the "Voice Memos" app to my computer. This is frustrating, should not be so hard, can someone please help. I use PC with windows 7 with iPhone version 6.1.3 and iTunes most recent. Thanks.

    My iPhone 4 will not sync my new voice memos from the "Voice Memos" app to my computer. This is frustrating, should not be so hard, can someone please help. I use PC with windows 7 with iPhone version 6.1.3 and iTunes most recent. Thanks.

    In the Music tab of iTunes, do you have 'Include Voice Memos' checked?

  • Had to reinstall Lion.  Backed up music to external hard drive.  When I plug in iPod msg says it's synced w/another iTunes library.  Do i "erase and sync" and re-add music from the hard drive?

    Had to reinstall Lion.  Backed up my music to an external hard drive.  When I plug in my iPod a prompt msg says it's synced w/another iTunes library and asks if I want to "erase and sync" (to what is now an empty library) or "Transfer purchases".  Do i "erase and sync" and re-add music from the hard drive once that's done?

    You just need to tell iTunes where the library is located. If you want it back on your internal drive, copy the entite iTunes folder. Follow the instructions below.
    iTunes: How to move your music to a new computer (Mac or Windows):
      http://support.apple.com/kb/HT4527

  • I am passing range table from the method of ODATA Service to FM but In FM range table is becoming initial.What would be the reason for the same?

    I am passing range table from the method of ODATA Service to FM but In FM range table is becoming initial.What would be the reason for the same?

    Vinod, Can you share detail on how are you sending and how are you reading.

  • How to pass a value from the report to a form ( BIT OF URGENT ).

    Hi,
    I had created a "Form on a Table with Report" on the report I had remove the edit link and set one of the column feilds that functionality. Now I want to know how to pass that value that is clicked ( having hyper link ) on to the form where it runs a SQL query and then displays the reuslts on the form.
    Illustrating with an example.
    I am having these following columns on the report ( these are the results for the join statement )
    JOBNUM JOBNAME DEPTNUMBER SAL EMPNO LNAME FNAME
    In the above JOBNUM is having Hyper link as I removed the edit image.
    Now this is area I am having problem. When the user clicked on the JOBNUM then on form it should display 20 other columns( pulled from 5 other tables ) which are related to that particualr JOBNUM.
    Anybody give me a solution in which area I have to include my SQL statement and how to pass that selected value to that SQL statement.
    Cheers,
    Krishna

    Hi Ron,
    I am doing exaclty what you have suggested me but no luck. I started changing the DEMO_CUSTOMERS application to my requirements.The report is working fine and on the report I have created a page attribute to the Hyper linked column and linked that to the page 2 and assign that attribute with #JOBNUM#.
    I am able to pass that value on to form when I click on the JOBNUM. But the problem is I am not able to pass that value into the SQL query so that my query pulls 20+ columns on to the Form ( which is second page ).
    Small clarification... On the form region it is said FORM NAME and type is HTML is that is the way the APEX was designed or does it need to say region type as FORM.
    Thanks for your help in advance.
    Cheers,
    Krishna.

  • How Do I Sync 2 Apple ID's from the same iPod to my Mac???

    I am currently using two different Apple ID's to purchase and download content on the iPod appstore. The reason I need two accounts is because my first account is Singaporean, and can not redeem gift cards. I have no credit card or paypal and thus I resort to gift cards to purchase paid apps, thus I had to create an American ID to be able to use the gift cards I had.
    Now my iPod is broken.
    It needs to be fixed soon and I've been trying to sync everything on it to my Mac, however I faced a problem.
    Everything was able to sync: music, videos, photos.. except the apps from my second Apple ID. All the Apps from my first account are already synced into my Mac, but the once from my new ID, the ones that I paid for, are unable to sync over. How do I resolve this?

    Hmmm...
    I have two IDs (for a different reason) and I've never had a sync problem.  Check your iTunes settings here:

  • How do i sync and get Angry Birds from the itunes library to ipad?

    I am not able to transfer Angry Birds which i bought from the itunes to the ipad 2? Pl help.

    Plug it into your computer and locate it in iTunes. Select the App section of your iPad and make sure that app is checked to sync. then sync.

  • How can I pass a value from the datagrid to my textinput

    Hi i am new in adobe flex!
    I have only one row in my datagrid and it has 5 dataField. Those dataFields are id, ln, fn, kurs, yr. I want to pass those value into a textinput respectively.
    Heres my code:
    <mx:DataGrid x="396" y="10" width="110" height="124" id="dginfo" enabled="true" dataProvider="{studinfo.lastResult.datas.data}" creationComplete="studinfo.send()" editable="false" visible="true">
                            <mx:columns>
                                <mx:DataGridColumn headerText="C0" dataField="username" visible="false"/>
                                <mx:DataGridColumn headerText="C1" dataField="id"/>
                                <mx:DataGridColumn headerText="C2" dataField="ln"/>
                                <mx:DataGridColumn headerText="C3" dataField="fn"/>
                                <mx:DataGridColumn headerText="C4" dataField="kurs"/>
                                <mx:DataGridColumn headerText="C5" dataField="yr"/>
                            </mx:columns>
                        </mx:DataGrid>
    I want to pass it here (code)
    <mx:TextInput backgroundColor="#ABA5A5" editable="false" enabled="true" color="#000000" horizontalCenter="-50" verticalCenter="-71" id="idview" text="{data.id}"/>
                        <mx:TextInput  id = "idview" editable="false" enabled="true" text="{data.ln}"/>
                        <mx:TextInput  id="lnview"editable="false" enabled="true"text="{data.fn}"/>
                        <mx:TextInput id="fnview" editable="false" enabled="true" text="{data.kurs}"/>
                        <mx:TextInput backgroundColor="#ABA5A5" editable="false" enabled="true"  id="yrview" text="{data.yr}"/>
    My problem is that this code won't work, it won't diplay anything...:D

    it must not display anything as data.ln doesnot have any value. in your code, in the text property of textfield, data is considered as a property of your application, a dynamic object; so even it doesnot have ln property, it is not showing error, neither displaying anything.
    do you mean to populate your textfields if the datagrid row is selected? if so:
    <mx:TextInput  id = "idview" editable="false" enabled="true" text="{dginfo.selectedItem.ln}"/>
    if you want to populate the same data without caring if it is selected in datagrid, you should not think like you are getting data from datagrid, instead, you are getting your values directly from the studinfo.lastResult
    in such:
    <mx:TextInput  id = "idview" editable="false" enabled="true" text="{studinfo.lastResult.datas.data.ln}"/>
    note: if your result contains more than one data, you should treat it as array:
    studinfo.lastResult.datas.data[0].ln

  • HT1267 i've got about 2500 songs on my iphone, i have replaced my computer & lost my library-question is why can't i drag/drop new downloaded music to my iphone without 'syncing' & losing my 2500 songs from the iphone?

    I've got about 2500 songs on my iphone, i have recently replaced my computer because the old one crashed, so i lost all the songs in the itunes library. My question is, it seems that now i am unable to drag/drop new downloaded songs without syncing my iphone & losing my 2500 songs from the phone?

    You cannot. Iphone will sync/manually manage music with one and only one computer at a time.  Syncing/manually managing with another will erase the current content from the iphone.
    It has always been very basic to always maintain a backup copy of your computer.  Use your backup copy to put everything back.

  • How to pass an image from the mobile application to the Adobe Media Server?

    The image is taken as photo from the CameraUI in the Client Side(AIR Mobile Application) and saved as a .jpg file in the mobile. I passed the image byte array values from the client to the server. How to convert that byte array to a file in the Adobe Media server?

    This is very similar to the problem here:
    http://forums.adobe.com/thread/655314
    processByteArray = function(byteArrayAsPlainObject){
         // byteArrayAsPlainObject is an object serialized from a ByteArray but without functions
         // we need to get a ByteArray that we can call functions on
         var usableByteArray = new ByteArray();
         byteArrayAsPlainObject.position = 0; // make sure we start from the beginning
         ByteArray.prototype.readBytes.call(byteArrayAsPlainObject, usableByteArray);
         // now usableByteArray contains what was in the original argument, but we can actually use it on the server side

  • How to pass Security Header from the Physical Service in ODSI

    We have to call a secured Web service using ODSI. We are trying to build a physical service in ODSI using a WSDL which has username token with password text policy inside it. The requests to that web service are bound by the security policy. But ODSI is not allowing us to create a Physical service usin a WSDL with a security policy in it. How can we then pass the security header from the ODSI physical service to the external web service.

    You would need to write a webservice handler for your physical data service to implement the security.
    http://download.oracle.com/docs/cd/E13162_01/odsi/docs10gr3/datasrvc/How%20To%20Create%20SOAP%20Handlers%20for%20Imported%20WSDLs.html

  • Is it possible to pass  a value from the list to another page..

    Hi everyone,
    I created a (list region) on a page and there is a FORM on the same page.I am trying to pass a value from that page to another page when the user selects one of the list entries.I tried with SET THESE ITEM.. WITH THESE VALUES in the list entries like
    SET THESE ITEMS--P13_TESTING_ID
    WITH THESE VALUES --&P10_ID.
    but its not working for me.I want to pass that value only when the user hits that list entry.Is it possible to do.
    Thanku
    phani

    Assuming P10_ID is an item on the FORM, I think , the form would have to be posted (submitted) for the item's vaue to be available in session state.

  • Passing memory settings from the Node Manager to the Managed Server

    All,
    I am trying to start a Managed server from the Node Manager. The configuration is as follows:
    I have a domain with two managed servers(M1, M2). I could start both of them using the shell scripts without any problems. Both of the servers has custom memory settings -Xms3072m -Xmx3072m -XX:PermSize=256m
    to facilitate deployment and effective operation of managed servers (the applications being deployed are kind of large).
    Now, I am trying to start the same two servers using Admin Console:
    In the admin console: I created a Unix Machine(U1) assigned the managed servers (M1, M2) to U1. I started the Node Manager on U1.
    When I try to start a Managed Server from console, the server is starting but the memory settings (-Xms3072m -Xmx3072m -XX:PermSize=256m ) are not passed to the managed server startup, so the application deployment is failing with out of Memory errors. I tried to assign same memory settings to Node manager assuming it will pass on that configuration to the node manager without any luck.
    Any help is appreciated.
    Thanks
    Raj

    Starting Managed Server from Node Manager

  • How do i sync contacts on two iphones from the same computer without merging the contacts

    I called tech support and they suggested I set up a separate user account on my computer and that should create a new windows contact file (which it did).  When I sync the iphone from the new user account, it seems to still be syncing to the windows contacts folder in the main administrator account and not the newly created account.  iIconfirmed this because i deleted one contact from the iphone and one contact from the new windows contact folder.  I then did a sync and no changes occurred on phone or the windows contact folder in teh new user account.  I then went to the original user account and teh name I deleted from teh iphone was deleted from that windows folder.  I am not able to select any different folder to sync contacts with in the itunes "info" tab. Do I need to set up under a completely different computer?

    I called support and they helped me realize the " sync contacts with windows contacts" was unchecked (maybe I didn't click sync or apply when I first checked it?).  He helped me clean up some unnecessary contacts by clicking the contacts box in the advance tab and removing names directly from the windows contacts folder before syncing.

  • HT1923 why won`t my apps sync to my ipod touch from the store menu

    why wont my apps sync from my library to my ipod?new purchases have but old ones wont

    Apps do not sync from the store menu.
    What happens when you try to sync these apps?  Any errors?
    Are the apps in question selected to sync?

Maybe you are looking for

  • I just began to update my itunes and now it won't open

    Hi, My Itunes won't open when i click on in, at first it would do nothing but then when i tried to reinstall it and fix some errors with it, now it acts like its going to download something every time i click on it. What do i need to do so that i can

  • Scheduling agreement to Delivery Document

    Dear All Gurus, I am facing an issue, please advise it is the standard system functionality, if yes tell me the work around. I have a schedulin gagreement with two schedule lines for say 23.03.2010 Qty 5, and 24.03.2010 Qty 5. As per my business scen

  • I had all my jpeg pictures arranged by mumber. I had to restart my computer and now the pictures are rearranged?

    I had all my jpg pics arranged by #. I had to restart my mac because of mail. Now the jpg icon are out of order. I need the pics in order for someone to make a slide show. I am using a flash drive. How do I get the pics back in order? I have # them 0

  • Enq: TX - row lock contention wait event

    Hi, I would like to find which DML query has not given COMMIT or ROLLBACK after the execution. Because one of the development database have more table locks and developer reported that their session was hanging. I referred AWR report also and more ti

  • BPM starting question

    Hi all, I have developed a BPM which basically reads 2 files (INVOICES and BILLING) makes some transformation and send it to a SAP R/3 system. Both files have a data field which it is used to correlate them. So when sender system send INVOICES file o