How can I retrive the first sender?

Hi Guru.
So this is my scenario:
JDBC_System, here starts the process, "sends" some data to a BPM.
The BPM call a custom RFC in the R3_System.
When the R3_System sends the response, I lost the "original sender" (in this case JDBC_System) because the sender is R3_system and receiver is the BPM.
So, I need the "original sender" (JDBC_System) because I need to send an alert to some people.
I cannot modify the RFC in SAP System.
In the future I can have more JDBC_system and for each JDBC_System and I need to send an email to several users.
How can i do this?
Thanks thanks guru.
Bye
Manuel

> well the simplest solution would have been to get the
> sender system via dynamic configuration,pass that
> onto RFC and then get it back .
> but since you can't modify RFC i can think of a dirty
> work around.
> design one data type with a two tags <Sender> and
> <UniqueID> and use it on the receiver side,in message
> mapping get the sender system and map it to <Sender>
> and map the unique ID of actual message to
> <UniqueID>,now configure one more receiver in
> Receiver determination and simply drop this <Sender>
> and <UniqueID> in some table on R/3(via another
> dummy ZRFC) ,once you get back the response,do a RFC
> lookup based upon this <UniqueID> ,get the <Sender>
> value and then populate it in response message
>  mapping.
> t definitely is a dirty work around,other experts
> might have better solution,but as of now,thats all i
> can think of
> Thanx
> Aamir
What do you mean with <UniqueID> is the message ID of the first step (JDBC to BPM) or is a "cross id" for all the step in the flow?
Thanks
Manuel

Similar Messages

  • How can i show the first item in the list as selected item

    Aslam o Alikum (Hi)
    Dear All
    How can i show the first item in the list as selected item when user click on the list. Right now when user click the list the list shows the last item in the list as selected or highlighted. Furthermore if the list item have large no of value and a scroll bar along with it then the list scroll to last item when user click it with mouse. I want that when user click the list item with mouse list should show the first item as highlighted.
    Take Care
    Allah Hafiz

    Hi!
    You can set list "initial value" using When-Create-Record trigger.
    I.g.
    :<Block_name>.<list_item_name> := Get_List_Element_Value('<Block_name>.<list_item_name>', 1);

  • How can I have the first letter after a sentence ending period automatically capitalize?  Can't seem to figure it out...thanks!

    How can I have the first letter after a sentence ending period automatically capitalize?  Can't seem to figure it out...thanks!

    You need to fix capitalization in Pages Preferences > Auto-Correction. When you select this option, you can just keep typing in lower case and the first letter of the next sentence will automatically promote to upper case.

  • How can I connect the first generation ipod to macbook air?

    How can I connect the first generation ipod to macbook air or macbook pro? Using an adapter?

    macbook air
    The only theoretical solution is an USB ExpressCard adapter and FireWire ExpressCard. I don't know if anyone's actually attempted it.
    macbook pro
    A FireWire 400 to 800 cable or adapter, also known as 6 pin to 9 pin.
    (53970)

  • I had an Apple Id then changed to another , how can I retrive the amount from the old Id account.?

    I had an Apple Id then changed to another , how can I retrive the amount from the old Id account.?  Can I link one Id with another ?

    Apple IDs can't be "linked" or merged.  However, if you are trying to transfer a credit balance from one account to another iTunes store support may be able to help you with that: http://www.apple.com/emea/support/itunes/contact.html.

  • How can I fade the first slide in a slideshow in from black?

    Novice user here, but I can't seem to find an answer to this question. I've created a couple of slideshow, and have imported them to iDVD to burn the DVDs. When I play the show in iPhoto, they're fine. But when I play a finished DVD (or the demo of the DVD in iDVD), the first slide does not fade in like iPhoto did. It's a really jarring start. I fiddled with Ken Burns effects, but all that seems to do it effect how the slide ends, not how it starts.
    How can I start the DVD slide show at black and fade the first slide in, just like iPhoto automatically did?
    BTW ... haven't upgrade to the new iLife software yet if that helps.

    Hi DogWonder!
    if it were me, I think the simplest thing to do is take a photo with the lens cover on the camera, basically a black pic. Now use this one at the beginning of your DVD/Slide Show... or even between slides for a little more drama, if you wanted...
    Good luck, Rick

  • How can i do the server send a message in a particular time?

    Hi everyone!
    in my program, clients choose a number from 1 to 10 and send it to the server.
    server produces a number every 5 min and send the client the result (if they
    win or lose) immediately.
    i 'd like to convert this, in order the result to be sent from the server to client when the time(5min) is finished - just before a second draw occurs.
    so the clients must wait to be notified by the server and disconnected when
    the server sends the result.
    can anyone help me on how to convert this piece of code to do that task?
    // control thread's execution
          public void run()
             int message=0;
             Timer timer = new Timer();
             TimerTask task = new TimerTask(){
                public void run() {               
                   rnum=randGen.nextInt(10);
            display.append( "\n"+ "THE MAGIC NUMBER IS: " + rnum );
         timer.scheduleAtFixedRate(task, 100, 30000) ;
    // process connection
             try {
                // read message from client
                do {
                   try {
                      message =  input.readInt();
                      if (message==rnum){output.writeUTF("SERVER>>> YOU WON: MAGIC NUMBER IS: " +rnum);}
                       else {output.writeUTF("SERVER>>> YOU LOSE: MAGIC NUMBER IS: " +rnum);}
                      display.append( "\n\n" +"PLAYER " + clientNumber + " SELECTED NUMBER " + message );
                      display.setCaretPosition( display.getText().length() );
                   // process problems reading from client
                   catch ( IOException ioException ) {
                      display.append( "\nUnknown object type received" );
                } while ( message!=-1 ); //temporary
        

    Do you not have a Sent Items folder of some description? 
    Search using Spotlight (little magnifying glass in the top right of your screen), that may be able to help.

  • (JTable) How can i get the first columns cell in a selected row?

    Hello. I am trying to figure out how i can get the first columns cell within a selected row no matter what cell is selected in that row. I have a class that extends AbstractTableModel which represents the table. Now i have another class that extends DefaultSelectionModel. Each model is added to the JTable via setModel(TableModel dataModel), setSelectionModel(ListSelectionModel newModel). Now i don't understand what i have to return from getMaxSelectionIndex(). Any ides? Thanks.
      class xTableModel extends AbstractTableModel{
         private static String[] cols;
         private Object[][] data;
            public void setTableModel(Object data[][], String[] cols){
             this.cols = cols;
             this.data = data;
            public String getColumnName(int col){
             return cols[col];
            public int getRowCount() {
             return data.length;
            public Object getValueAt(int row, int col) {
             return data[row][col];           
            public void setValueAt(Object value,int row,int col){
             data[row][col]=value;
            public int getColumnCount(){
             return cols.length;
    class ColumnListenerModel extends DefaultListSelectionModel{
         public int getMaxSelectionIndex(){}

    int row = table.getSelectedRow();
    Object data = table.getValueAt(row, 0);

  • How can we retrive the cancelled PO once it is approved and paid?

    Dear All,
    I have a question
    =============
    Mistakenly one of our user has taken the receipts and cancelled the Paid PO. Now is there any way to retrive the cancelled PO?
    I think we cannot retrive the PO once it is cancelled, now what my point is how it will impact on the GL since, it's been already paid and transferred to GL?
    Note: We are using the version 11.5.10.2 and enabled the encumbrance for PO's.
    Please let me know..
    Regards,
    Kevin.
    Edited by: kevin329 on Jul 23, 2009 3:09 AM

    Hi Kevin,
    Can you please provied me the data fix Qurey how to set the CANCELED_DATE to Null.I will suggest you to please raise an SR with Oracle Metalink for any data fixes, as these datafixes are data dependent.
    Also for more info you can refer the following ML doc,
    [How To Diagnose Purchase Order Cancel|https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=832803.1]
    Thanks,
    Anchorage :)

  • How can I see the first frame of a clip in the Event Library

    I slate my shots for a reason, but when I am looking in the Event Library I see a random frame a couple of seconds in to the clip instead of the first frame, how can I set it so I can see the first frame?
    Thanks in advance

    Switch to filmstrip view and zoom in.

  • How can I obtain the first 10 charcter from field and the last 4 characters

    Hi
       I need to obtaind the first 10 characters from field AWKEY from BSEG table, and the last 4 characters, how can I obtain certains position from field??
        Example:
      AWKEY field from BSEG can be for example :
    51000573112002
       This mean that you can obtain separately:
    5100057311 - BELNR (field)
    2002- GJAHR (field)
        As you can see, the first 10 positions are BELNR and the last 4 positions are GJAHR.
         But sometimes you find in old rows:
    5100057312US502001
         This mean that you can get from this field:
    10 positions for BELNR : 5100057312
    4 positions for BUKRS or WERKS : US50  - in this case, I don´t know if its is BURKS or WERKS...for this reason only I want to take only the first 10 positions and the last 4 position to compare.
    4 posiition for GJAHR: 2001
       I rewards all the answers.
       Thank you.
    Alicia

    Hi, thank you for yours answers
    Let me try to explain more what I need to do:
    I have a Internal Table that I create with EKBE table:
      SELECT  MANDT EBELN EBELP GJAHR BELNR BEWTP BUDAT
              MENGE WRBTR WAERS WERKS SHKZG DMBTR
              ZEKKN VGABE BUZEI
        INTO CORRESPONDING FIELDS OF TABLE LIST_EKBE
        FROM EKBE
          WHERE EBELN IN R_EBELN
            AND BEWTP IN ('E','Q','R').
    The result is all the rows that have this conditions..then with this internal table I need to looking for each BELNR in BKPF table, but sometimes you can find the row compare EKBE-BELNR with BKPF-BELNR...but in many cases, you don´t find the row in this way, you need to add EKBE-BELNR and EKBE-GJAHR and looking for in BKPF with field AWKEY..
    For this reason I CONCATENATE in this way:
    LOOP AT LIST_EKBE.
        V_BELNR = LIST_EKBE-BELNR.
        V_GJAHR = LIST_EKBE-GJAHR.
        CONCATENATE V_BELNR V_GJAHR  INTO V_AWKEY.
        SELECT SINGLE MANDT BUKRS BELNR GJAHR AWKEY
        INTO (BKPF-MANDT, BKPF-BUKRS, BKPF-BELNR,
             BKPF-GJAHR, BKPF-AWKEY)
        FROM BKPF
        WHERE AWKEY = V_AWKEY.
    ENDLOOP.
      But I saw that sometimes you don´t find the record in BKPF because the AWKEY is formed with BELNRBUKRSGJAHR....or may be with BELNRWERKSGJAHR ...I don´t know if is BUKRS or WERKS the second field...for this reason I try only read in the select..if its posible the first 10 postions and the last 4 positions...but Im not sure if its possible..
      The reason for that I looking for the BELNR field in BKPF field for AWKEY its because sometimes de BELNR in BKPF its different..example:
    In EKBE you have:
    BELNR: 5105618260
    GJAHR: 2006
    If you looking for in BKPF you don´t find sometimes exactly the field BELNR : 5105618260.. then you need try looking for the AWKEY field then you need to add BELNR+GJAHR..example:
    BKPF:
    BELNR: 5105611111
    GJAHR: 2006
    AWKEY: 51056182602006
    But in other cases... I found that in AWKEY exist for example:
    BELNR: 5105611111
    GJAHR: 2006
    AWKEY: 5105618260US502006
    In the last case I supouse that I can divide in:
    AWKEY: 5105618260-US50-2006 ... but I don´t know what its the field that have the information US50..may be is BUKRS or may be its WERKS
    May be some people know what its exactly this field and can help me..
    With the solution that some of yours give me..I don´t know the how I can make the select? and if its posible make in this way
    Thank you a lot

  • How can I remove the first exchange server 2010 without any problems in DC

    Hi,
    our actually exchange is running on windows server 2008R2 with exchange 2010. I already install & configured a second Exchange 2010 server in the same domain. I also moved every mailbox to the new server. Now I have to deactivate the first server and
    I don't know, if I have to do something or can I deactivate the "old" server without any issues.
    If I can deactivate it, how can I do this? Is it enough to uninstall exchange 2010 on the server and after that I uninstall the windows server? Did I have to change something before?
    Thanks,
    Mesut Uygun
    btw. sorry for my bad english

    Hi MesutU,
    When you remove first Exchange Server 2010 in your organization, please confirm finish following steps:
    1. Move all mailboxes (including discovery and arbitration) to another server
    2. Move all Public Folder replicas
    3. Move OAB generation server
    4. Update SMTP flow from internet
    5. Update OWA/IMAP/POP/OA access from internet.
    6. Update any routing group connectors if 2003 is present
    7. Turn the old server offline for some days to check whether the new server works well.
    More information about How to Remove the First Exchange 2007 Server in a Coexistence Scenario (even if the version of Exchange server is different), for your conference:
    http://technet.microsoft.com/en-us/library/bb310767(v=exchg.80).aspx
    Best Regards,
    Allen Wang

  • How can I delete the first question, which is still there, that I ever asked in this community support, and that I have already had answered.

    The asking of questions and responding to answers on the support pages is a bit more complicated than I think it should be. The first question I ever asked was answered by a community member, but when I go to ask other questions, that first question is still there. Somehow I bypass that at times and get another question in, as right now. But why does that first question remain? I thought I said in the answers that my question had been answered, and replied to the person who answered it with my thanks.

    Hi Ideato:
    I was not talking about the questions that are in the question and answer section. I mean the question that I keyed in when asked for a summary of my question in one sentence, before it ever gets posted. You are right, of course, that questions and answers from someone else can be helpful to a lot of people.
    CuriosityCat

  • HT1918 how can i get the first device i put in out and the second one to stay in without time restrictions?

    So I've been having an apple account before I got my first and only iphone. But I plugged in my friend's device first into my account and the account read it as the owner device of the ID. Two days later, I plugged in my device and read it as a second device in the accound and therefore, my device is just "borrowing" the ID and it set a time limit to use it. But it needs to be the other way around. The first device is not mine and I want it out, and I want the second device in as the owner of the apple account.
    What do I do?
    I've already removed the first device,but it still has a time restriction on the second device. THE SECOND DEVICE IS MY DEVICE AND ITS MY ACCOUNT!

    "Well, since its the first device into the account, I guess the account read it as the "owner" device of the account."
    There is no such thing as "owner" device at all.
    "Apparently, the account read it as the second device and thought that it was "borrowing" the account since it was the second device"
    There is no such thing as "borrowing" the account.  You can use your account from ANY device/computer that has itunes.
    You seem to completely misunderstand the way it works.
    There is no time limit.  You are confucing your account with associated devices:
    iTunes Store: Associating a device or computer to your Apple ID
    If you want to buy music from your iphone, simply go to Settings and sign into your account.
    The musci your friend bought using your account belongs to you and it is not legal from your friend to use.
    iPhone User Guide (For iOS 6 Software)

  • How can I retrive the password of Wiresless

    Dear All,
    I am useing OralceAS 10g. After open this URL:http://server:7777/webtool/login.uix.......try to login an error occurs.
    Error: Your password has expired. Please contact administrator to reset it.
    how can i recover it.Please it very urgent.
    Thanks in advance

    Hi,
    Did you try logging in as orcladmin ?
    You would have specified the orcladmin password during the Infrastructure installation, before installing the Oracle AS Wireless Mid-tier.
    Regards,
    Sandeep

Maybe you are looking for

  • Final Cut Studio crashing upon opening whenever external drives are active

    Hello folks, I've gotten some great advice on this forum for a while now, through reading other posts. But now I'm hoping I can get some directly tailored advice, as I'm floundering a bit. Thanks in advance for your time, as I've tried to be as thoro

  • LV2009: Graph- Copy Data moves/removes cursors

    Using a right click->Copy Data seems to move or remove cursors from the image copied to the clipboard.  Anyone know of a workaround that doesn't involve screen cap and edit? PrtScn result: Copy Data result: Other results show the cursor changing its

  • Using Layers in templates

    Hi I've got a quick newbie question. I'm designing a website and currently in the process of creating a template for it. When creating the editable regions I want to be able to move and drag my layers wherever I want. But when I open a new page using

  • How do I do a clean re-install of Safari 5.1 under Lion

    I am seeing a number of anomalies in Safari 5.1 behavior/performance under Lion (10.7.1).  This instance of Safari has "inherited" something via Migration Assistant that it should not have. One of the most obvious of these anamolies is that certain w

  • Receiving the new iPad :)

    I'm on the east coast, in PA. It is March 16th! Yes, it's only 1:00am, but March 16th nonetheless! :) This past week has been fun. I keep hearing about all the fun people who are camped out in front of Apple Stores right now are having- sharing an ex