Can we pass the login details to an adapter at runtime?

HI,
I have a ESB service which pulls data of a particular daterange from a table in a database A and puts the data into another table in a different database B.
Now I have many databases at different locations which are exactly same as database A from which I need to pull the data and push into database B using the same ESB serivice that I described above.
How can I make my ESB service capable of receiving the login credentials and daterange at runtime say from a GUI and pull the data from the database and push it into database B? Normally we give the connection details at the design time only. Can we give them at runtime?
Thanks,
RV

You need to make different connections for all as it uses the JNDI name (defined at design time) to create a connection.
cheers
James

Similar Messages

  • How can i display the login details in the Web Ui

    Hi All,
              How can i display the information regarding the person who logged into the Web Ui and where can i find the seetings regardin this.Please provide your valuable suggestions
    Regrads,
    Lakshman.P

    look at this link https://wiki.sdn.sap.com/wiki/display/CRM/WelcomeUserMessageinWeb+UI and you will solve your problem.
    have a nice day.

  • I cannot upload photos from iPhoto 9 to Flikr. When I attempt to do so, I get the message "the login details or auth token passed were invalid." Please help.

    I cannot upload photos from iPhoto 9 to Flikr. When I try, I get the message "the login details or auth token passed were invalid."  I am using iPhoto 9 version 8.1.2, and my OS is 10.9.5. My computer is a MacBook Pro. I do not have this trouble with my iMac.  This trouble started before I updated to OS10.9.5.  I do not have this problem when uploading to FaceBook or sending by e-mail.
    This problem started when I tried to upload some photos after hitting the "use other account" tab. This took me to a Flikr site asking me for permission to make my iPhoto information available to others.  I clicked "yes," and then I changed my mind and clicked "no." I haven't been able to upload to Flikr since.
    I searched Flikr and Yahoo for a solution, and Yahoo says the trouble is in iPhoto.  I checked my Flikr account, and iPhoto extensions are enabled.
    I need to upload some school and alumni photos, so I sure could use some help. I am Not computer proficient.  Thank you.

    1. You did not get an error message telling you that your iPhoto library was getting full. You got a message telling you that your HD was getting full, right?
    OS X needs about 10 gigs of hard drive space for normal OS operations - things like virtual memory, temporary files and so on.
    Without this space your Mac will slow down as the OS hunts for space on the disk, files will be fragmented, also slowing things down, apps will crash and the risk of data corruption - that is damage to your files, photos, music - increases exponentially.
    Your first priority is to make more space on that HD. Nothing else can be done until you do.
    Purchase an external HD and move your Photos and Music to it. Both iPhoto and iTunes can run perfectly well with the Library on an external disk.
    Your Library has been damaged from being run on an overfull disk.
    How much free space on it now?

  • How can we pass the master report value in to detail  report

    Hi All,
    My question is how can I pass the master report value in to detail (Child) report filter?
    I mean I have one master report if I click on employee name then I have to pass the employee id in to details report filter. Then detail report will display data for that particular employee.
    How can I achieve this one in OBIEE?
    Please help me to resolve this issue. Thanks in advance for your time and support.

    In that case, you should look at using Go Url. In your column formula for the employee name, create a hyperlink to the detail report and pass the employee id.
    Take a look at this post: Re: Dyanmic display of the Image Link URL
    Thanks!

  • How can i pass the value one from to another form?

    hi all
    how can i pass the value one from to another form  with out use it when ever i want to needed this value that ican useit?
    like i have two fields U_test1 and U_test2  table name @AUSR
    that i have  four form  A! , A2,A3,A4    please tell me in details....?

    Hi,
    U can assign the values to some variables and access then in ur required forms.
    Vasu Natari.

  • How can I pass the adress of a cluster to a dll

    Hi,
    I need to pass the adress of the struct(cluster) below from labview 7.1 to a dll written in C++.
    Can anyone help ?
    typedef struct
    unsigned char DPV1_Supported;
    unsigned char Max_Channel_Data_Length;
    unsigned char Extra_Alarm_SAP;
    unsigned int C1_Response_Timeout;
    unsigned char NormParameters [7];
    unsigned char UserParamLength;
    unsigned char UserParameters [248];
    unsigned char ConfigLength;
    unsigned char Configuration [256];
    unsigned char OutputLength;
    unsigned char OutputData [256];
    unsigned char InputLength;
    unsigned char InputData [256];
    unsigned char NormDiagnosis [6];
    unsigned char UserDiagLength;
    unsigned char UserDiagnosis [256];
    BOOL bCommunicate;
    BOOL bOperate;
    BOOL bNewDiag;
    } DP_DATA;
    Thanks,
    Andreas

    Can you explain me the difference between LabView arrays and C arrays more detailed.
    A C array of THINGs is a pointer to a THING. The THING is followed in memory by another THING, etc., etc.
    There is no difference between a pointer to a THING and an array of THINGs, (except the expectation of the user is that the array contains more than one THING). But physically, they are both pointers to a THING.
    In C, if you pass an array to some function which operates on it, you also have to have some convention to separately pass the number of items in the array. The array itself has no way of indicating its own size. A C string is terminated by a null byte - that's one way. Other functions require you to pass a separate parameter to indicate how many elements are in the array.
    A LabVIEW array is a different beast. It is a HANDLE, not a pointer. When you resolve the handle, you interpret the first 4 bytes as an I32 with the current dimension size in it. If you have a 2-D array, you interpret the first TWO I32s as the current dimension size. If you have a 3-D array, you interpret the first THREE I32s, etc. etc.
    Immediately after the dimension size(s), follows the data itself.
    Read this for the official explanation. It's a good idea to print this out and keep it around.
    http://zone.ni.com/devzone/conceptd.nsf/webmain/370DFC6FD19B318C86256A33006BFB78?opendocument target=_blank
    Why I can't put an array inside a cluster
    I didn't mean to imply that you can't do that. You can. LabVIEW will handle it correctly. But you can't pass the cluster to C and have it understood, using ordinary C array declarations.
    It's legal in LabVIEW to have a cluster with an I32 followed by an array of DBLs, for example.
    But if you pass that thing to a DLL or CIN, what gets passed is a pointer to an 8-byte chunk of memory.
    The first four bytes are the I32 value. The second four bytes are a HANDLE to the array data. The handle points to a pointer, the pointer points to a chunk of memory, the first four bytes of that chunk are the dimension size.
    The bottom line is you can't treat it as an array in LabVIEW, and also as an array in C.
    You have three choices:
    1... Change the C code to understand LabVIEW arrays. There are lots of library tools to help you deal with LabVIEW arrays.
    2... Change the LabVIEW code to fake the structure that C requires. If you have an array of 256 Bytes, you'll have to fake that with a CLUSTER of 256 U8s. If you have an array declared as int[123]. you'll have to make a CLUSTER of 123 I32s. You can make the data fit the C declaration, but you have to study the details.
    3... Duplicate the functionality of your C code in LabVIEW.
    Hope that helps.
    Steve Bird
    Culverson Software - Elegant software that is a pleasure to use.
    Culverson.com
    Blog for (mostly LabVIEW) programmers: Tips And Tricks

  • Error!! Can not find the delivery details for the delivery Id :

    hi all,
    I have a report which i need to burst in seven different reports wherein my delivery key is column "emp_id". Now when i schedule the report to burst then the report completes with a warning. I see that there are various delivery cycles for the report and for one of the cycles i get the following message
    Error!! Can not find the delivery details for the delivery Id :
    hence, what happens due to this is, even there are successful deliveries for other delivery ids but then i get only two rows of data in each of the seven bursted ouput xls files. wheareas the data runs in thousands of rows for each cycle.
    Hence whats happening is, that due to error /warning in one of the delivery cycles other reports are also not showing data.
    I am not sure whats causing the issue and why i am not getting complete bursted files out.
    Please suggest
    Thanks
    Ronny

    I guess, you are in 10.1.3.3.2 :),
    in the latest release 10.1.3.4.1, there are more enhancement wrto bursting and performance i believe.
    check th release notes
    can you send me the xml and bursting query you have, i can try simulating in my local.

  • How can i pass the Input value to the sql file in the korn shell ??

    Hi,
    How can i pass the Input value to the sql file in the korn shell ??
    I have to pass the 4 different values to the sql file and each time i pass the value it has to generate the txt file for that value like wise it has to generate the 4 files at each run.
    can any one help me out.
    Raja

    Can you please more elaberate., perhaps you should more elaberate.
    sqlplus is a program. you start it from the korn shell. when it's finished, processing control returns to the korn shell. the korn shell and sqlplus do not communicate back and forth.
    so "spool the output from .sql file to some txt file from k shell, while passing the input parameters to the sql file from korn shell" makes no sense.

  • How can I pass the photos from one iphone to another?

    how can I pass the photos from one iphone to another?

    Use the Beaming feature. See the info at the ? In iPhoto for iOS.

  • How can we pass the select-option value to modulepool program?

    hi,
      how can we pass the select-option value to modulepool program ?
      Because if i declared select-options in executable program and i used SSCRFIELDS to define push buttons in selection screen.
               My requirement if enter the values to select-options and press UPDATE pussbotton then i want call screen which contains tablecontrol.
               How i get select-option values to PAI of call screen for getting the data from database table to my internal table?

    Oh I thought that you have selection-screen and again you are working on dialog programming.
    if you want to use select-option directly in module pool then it is not possible.
    but you can do other way.
    create two varaiables
    data : v_kun_low like kna1-kunnr,
             v_kun_high like kna1-kunnr.
    use these two variables in layout ,let user knows that he can not give options like gt,lt,eq ,it will be always BT.
    and also when you see normal report program,you can use multiple values in either low or high,but here it is not possibel.
    use can enter only low value and high value.
    when you come to program point of view
    declare one range
    ranges r_kunnr for kna1-kunnr.
    do the coding like
    r_kunnr-low = v_kun_low.
    r_kunnr-high = v_kun_high.
    r_kunnr-options = 'BT'.
    r_kunnr-sign = 'I'.
    append r_kunnr.
    now you can use r_kunnr in select query ,it will work like select-option.
    other than this there is no option.
    Thanks
    Seshu

  • I have 2 devices, and I inadvertently set up a new account on one.  Now I can't download books that are on my Nook to my Android G3 and vice versa.  I can't remember the login for the nook.  How can I change it?

    I inadvertently set up a new account on an android and it doesn't match the ID for a Nook.  I cannot share library books between the devices, and I can't remember the login I used for the nook.  The nook books appear on my bookshelf from the library, but when I try to download to my android, it won't allow it as it is set up as a different account.  The library can't help me and Barnes & Noble can't help me.  I need support from Adobe to fix my login.

    Hi ruffdog64,
    If you are having issues changing the signed in Apple ID on your iPhone, you may find the following article helpful:
    iOS: Sign in with a different Apple ID in the iTunes Store, App Store, and iBooks Store
    http://support.apple.com/kb/ht1311
    Regards,
    - Brenden

  • How can I pass the value to another frame?

    Hi all,
    The following is part of my coding of a frame. Once i click on the jButton2, the selected value will be stored into a variable named NAME and the value will be displayed by a label in same frame. At the same time, a new frame named TESTING3 will be set to visible.
    private void jButton2ActionPerformed(java.awt.event.ActionEvent evt)
    // TODO add your handling code here:
        String name = (String)jList1.getSelectedValue();
        jLabel1.setText(name);       //display the value in a label in same frame
        new testing3().setVisible(true);     //a new frame set to visible
    }      Question: How can I pass the value to TESTING3 frame and display it on that frame?
    Thanks,
    ning.

    just make an archive that save that variable and them get them from de clase were you save it
    public class sav {
    String n;
    public sav {
    n="";
    public void addn(String x){
    n=x;
    public String shown(){
    return n;
    and them save it from the frame
    sav sun = new sav();
    sav.addn(f);
    them call it from the other frame
    sav sin = new sav();
    String s = sin.shown();
    label.setText(s);
    and i think thats you want to do if its not please explain me better
    bye

  • I have a 15 inch mac book pro running osx 10.5.8. I recently moved to FL and switched to Comcast (only option). Now when I access one of my banks, I can get past the login page and the opening page of my account but the data is unavailable. Bank no help.

    I have a 15 inch mac book pro running osx 10.5.8. I recently moved to Florida and switched to Comcast (the only option). Now when I access my bank website, I can get past the login to my account page but the data is permanently unavailable. The bank says no one else has this problem. Everything is up to date as far as software is concerned. . .I just update anything that comes up. I have not had this problem with this computer anywhere else and I am not having a problem with any other website. I have the problem with both Safari and Google Chrome.

    Harden your Mac against malware attacks

  • How can we pass the entire rows of a table to a web service in a VC model ?

    Hi,
    On the click of the submit button, I have to pass the rows of two tables into an enterprise service. This service also takes other fields of a form as an input.
    How can we pass the entire rows of a table into a service ?
    Regards,
    Nitin

    Hi Nitin,
    It seems that you have two or three different structures to pass data using your webservice. In your main question, two tables, you can join both in one table and from there call the webservice. In order to pass the entire table you need:
    1. Draw a line between your joinned table and your service,
    2. Map the fields,
    3. Create a 'SUBMIT' in your table tool bar. Right click on your table and choose 'Create Toobar', '+', name and choose 'Submit' as your event.
    4. Go to Configure Element (Table View) 'Multiple' at Selection Mode.
    Reward points if helps you to solve your question.
    Regards,
    Gilson Teixeira

  • I can't pass the activation on my iPhone 4 after I've updated on iOS 7

    Hello!
    After I've up-to-date my iOS version to 7.0.4, my phone can't pass the activation as it requares appleID of the previous owner. Today I have no contact with this guy. This iPhone was purchased with the conclusion of a social contract. Serial number on the box coincides with serial in settings of the phone.
    Please help me with this unpleasantness.

    Welcome to the Apple community.
    Unfortunately, you cannot do very much with your phone unless you get assistance from the previous owner, they should either provide you with the password to unlock it or remove their account from the phone entirely remotely through iCloud.com > Find My Phone.

Maybe you are looking for