Question on the rpd has more then one connection pool

Here is a question: I have create a dedicated connection pool for rpd metadata translation, the user guide says that connection pool will used only for translation,
but when I view data from the table it make me to select a connection pool,
so when the rpd deployed to server , how does the server decide to use which one to query data which one for the translation?

Hi,
When you create variables then separate connection pool plays a major role. And while creating variables you are made to choose a connection pool. So when ever the variable is called then the connection comes into picture. Same works for translation too.
Please let me know further and hope this helped/ answered.
Regards
MuRam

Similar Messages

  • If my component has more then one button,how to create click events

    I am learning about java beans
    My java class
    public class ButtonClass extends JButton implements Serializable{
    // ButtonHandler bh;
    public ButtonClass() {
    setText( "Hello world!" );
    setOpaque( true );
    setBackground( Color.ORANGE );
    setForeground( Color.BLUE);
    setVerticalAlignment( CENTER );
    setHorizontalAlignment( CENTER );
    // addActionListener(new ButtonHandler(new JTextArea("Hello")));
    But i want to create Bean having more then one button on my bean.
    But how to create event individually for each button

    Do you mean how do you process each event from the buttons and know which button casued the event?
    If that is what you mean then look at ButtonGroup. You can add the same mouselistener to each button and then check which one cause the event:
    myButtonEvent.getButton()

  • How can I use the N8 with more then one VOIP-Accou...

    Hello,
    on my older Nokia-phones (N82 and E52) there wasn't a problem to use more then 2 different VOIP-Accounts. Now I have successfully create one VOIP-Account on my N8. The target should be to create an another (different) VOIP-Account and switch to this, if it's necessary. The second VOIP-Account should be a backup-solution ;-)
    Thanks

    OK, so did you try creating a second VOIP account on the N8?  What steps did you try, and what were the results?  If you post specific details, you will get better answers.
    Lumia 920, Lumia 800
    Nokia N8-00 (NAM, Product Code: 059C8T6), Symbian Belle, Type RM-596, 111.030.0609
    Nokia 5800 XpressMusic (NAM, Product Code: 0577454) Software v51.2.007, Type RM-428

  • Does BPEL allow partnerlinks where the WSDL has more than one namespace

    Hi
    I have a WSDL where the schema is in a different namespace than the message types. BPEL Designer throws "Exception: Problem building schema" when accessing the variable in the "Assign" activity. Can someone point out if there is a problem with my WSDL file ?
    <?xml version="1.0" encoding="UTF-8"?>
    <definitions name="ProvWithXSL"
    targetNamespace="http://xmlns.oracle.com/ProvWithXSL"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:client="http://xmlns.oracle.com/ProvWithXSL"
    xmlns:tns="http://www.example.org"
    xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/">
         <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
         TYPE DEFINITION - List of services participating in this BPEL process
         The default output of the BPEL designer uses strings as input and
         output to the BPEL Process. But you can define or import any XML
         Schema type and us them as part of the message types.
         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
         <types>
              <schema attributeFormDefault="qualified"
                   elementFormDefault="qualified"
    targetNamespace="http://www.example.org"
    xmlns:tns="http://www.example.org">
                   xmlns="http://www.w3.org/2001/XMLSchema">
    <complexType name="EventHdr">
    <sequence>
    <element name="eventType" type="string"/>
    <element name="eventID" type="string"/>
    <element name="eventSrc" type="string"/>
    <element name="objectDN" type="string"/>
    <element name="profileID" type="string"/>
    </sequence>
    </complexType>
    <complexType name="Attribute">
    <sequence>
    <element name="attrname" type="string"/>
    <element name="attrval" type="string" maxOccurs="unbounded"/>
    </sequence>
    </complexType>
    <complexType name="EventAttrs">
    <sequence>
    <element name="attr" type="tns:Attribute" maxOccurs="unbounded"/>
    </sequence>
    </complexType>
    <element name="event">
    <complexType>
    <sequence>
    <element name="hdr" type="tns:EventHdr"/>
    <element name="attrs" type="tns:EventAttrs"/>
    </sequence>
    </complexType>
    </element>
    <element name="ProvWithXSLProcessRequest">
              <complexType>
                   <sequence>
                        <element name="parameters" type="string"/>
                   </sequence>
              </complexType>
         </element>
         <element name="ProvWithXSLProcessResponse">
              <complexType>
                   <sequence>
                        <element name="result" type="string"/>
                   </sequence>
              </complexType>
         </element>
    </schema>
    </types>
         <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
         MESSAGE TYPE DEFINITION - Definition of the message types used as
         part of the port type defintions
         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
         <message name="ProvWithXSLRequestMessage">
              <!--<part name="payload" element="tns:event"/>-->
    <part name="payload" element="tns:ProvWithXSLProcessRequest"/>
         </message>
         <message name="ProvWithXSLResponseMessage">
              <part name="payload" element="tns:ProvWithXSLProcessResponse"/>
         </message>
         <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
         PORT TYPE DEFINITION - A port type groups a set of operations into
         a logical service unit.
         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
         <!-- portType implemented by the ProvWithXSL BPEL process -->
         <portType name="ProvWithXSL">
              <operation name="initiate">
                   <input message="client:ProvWithXSLRequestMessage"/>
              </operation>
         </portType>
         <!-- portType implemented by the requester of ProvWithXSL BPEL process
         for asynchronous callback purposes
         -->
         <portType name="ProvWithXSLCallback">
              <operation name="onResult">
                   <input message="client:ProvWithXSLResponseMessage"/>
              </operation>
         </portType>
         <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
         PARTNER LINK TYPE DEFINITION
         the ProvWithXSL partnerLinkType binds the provider and
         requester portType into an asynchronous conversation.
         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
         <plnk:partnerLinkType name="ProvWithXSL">
              <plnk:role name="ProvWithXSLProvider">
                   <plnk:portType name="client:ProvWithXSL"/>
              </plnk:role>
              <plnk:role name="ProvWithXSLRequester">
                   <plnk:portType name="client:ProvWithXSLCallback"/>
              </plnk:role>
         </plnk:partnerLinkType>
    </definitions>

    You can use more than one namespace (done so before), and several ways to do so.
    But first, there's one error in your schema definition:
    <schema attributeFormDefault="qualified"
    elementFormDefault="qualified"
    targetNamespace="http://www.example.org"
    xmlns:tns="http://www.example.org">
    xmlns="http://www.w3.org/2001/XMLSchema">
    remove the ">" after xmlns:tns. Btw, this will cause the exception to occur as well.
    Why not put your elements in a new schema, like below, and leave the original ports & messages intact, as you don't change anything in it from the original generation. Just add this schema above/below the schema for the messages and it will work just fine.
    hth,
    Mike
    So, you will have a wsdl that looks like:
    <schema attributeFormDefault="qualified"
    elementFormDefault="qualified"
    targetNamespace="http://www.example.org"
    xmlns:tns="http://www.example.org"
    xmlns="http://www.w3.org/2001/XMLSchema">
    <complexType name="EventHdr">
    <sequence>
    <element name="eventType" type="string"/>
    <element name="eventID" type="string"/>
    <element name="eventSrc" type="string"/>
    <element name="objectDN" type="string"/>
    <element name="profileID" type="string"/>
    </sequence>
    </complexType>
    <complexType name="Attribute">
    <sequence>
    <element name="attrname" type="string"/>
    <element name="attrval" type="string" maxOccurs="unbounded"/>
    </sequence>
    </complexType>
    <complexType name="EventAttrs">
    <sequence>
    <element name="attr" type="tns:Attribute" maxOccurs="unbounded"/>
    </sequence>
    </complexType>
    <element name="event">
    <complexType>
    <sequence>
    <element name="hdr" type="tns:EventHdr"/>
    <element name="attrs" type="tns:EventAttrs"/>
    </sequence>
    </complexType>
    </element>
    </schema>     
    <schema attributeFormDefault="qualified"
    elementFormDefault="qualified"
    targetNamespace="http://xmlns.oracle.com/ProvWithXSL"
    xmlns:tns="http://www.example.org"
    xmlns="http://www.w3.org/2001/XMLSchema">
    <element name="ProvWithXSLProcessRequest">
    <complexType>
    <sequence>
    <element name="parameters" type="string"/>
    </sequence>
    </complexType>
    </element>
    <element name="ProvWithXSLProcessResponse">
    <complexType>
    <sequence>
    <element name="result" type="string"/>
    </sequence>
    </complexType>
    </element>
    </schema>

  • How to use more than one connection pool to 2 different databases ??? (Weblogic 5.1)

    Hello,
    In my application, I must use two different databases to retrieve
    informations...
    My application use EJB so I created two pool of connection named pool1 and
    pool2...
    But when I yet used the pool1 to connect to first database and I try to use
    the pool2 (to connect to the second database), an SQLException occurs :
    "java.sql.SQLException: Connection has already been created in this tx
    context for pool named <first pool's name>. Illegal attempt to create
    connection from another pool: <second pool's name>"
    I have found the answer in www.bea.com
    http://e-docs.bea.com/wls/docs61/faq/JTA.html#738373
    Anybody can help me and give me the more easy,quickly and the more efficient
    way to use two database with two different connection pool..
    Thanks..
    Dephi

    Hi
    You need to configure TxDataSource with XA connection pool.
    More information can be found here:
    http://e-docs.bea.com/wls/docs61/jta/thirdpartytx.html
    Regards,
    Slava Imeshev
    [email protected]
    "Philippe Da Cunha" <pdacunha@@webraska.com> wrote in message
    news:3bfcd6ee$[email protected]..
    Hello,
    In my application, I must use two different databases to retrieve
    informations...
    My application use EJB so I created two pool of connection named pool1 and
    pool2...
    But when I yet used the pool1 to connect to first database and I try touse
    the pool2 (to connect to the second database), an SQLException occurs :
    "java.sql.SQLException: Connection has already been created in this tx
    context for pool named <first pool's name>. Illegal attempt to create
    connection from another pool: <second pool's name>"
    I have found the answer in www.bea.com
    http://e-docs.bea.com/wls/docs61/faq/JTA.html#738373
    Anybody can help me and give me the more easy,quickly and the moreefficient
    way to use two database with two different connection pool..
    Thanks..
    Dephi

  • Opening  the same form more then one time in the same session

    H! I want to accomplish the following .... I have a form that has a button. The code in the when-buttin-pressed trigger is a call_form - to open another form. I want to be able to push this button as many times as the user may want and the form should keep opening a new form. Meaning I can have 10 forms of the second form open if I want. The user basically wants to be able to flip between the data on the same form opening up this form a couple of times in different windows. when I use the call form the button on the initial form is becoming disabled - not allowing me to push it again to open another form without closing the one already open. Please HELP!

    Sounds like you need Run_product rather than Call_form.
    It will establish multiple database sessions, and the user will be responsible for terminating them. And I am not sure, but this may only be possible in client/server forms.

  • Is there a feature that allows the user to add another open field while completing a form?  If I create one field to enter your child's name and social, is there an "add" button to create another field if the user has more than one child?

    Name
    Social Security
    Child 1
    Social 1
    Child 2
    Social 2

    Hi blabla12345,
    (untested and without warranty)
    replace this line:
    const sSaveCUBE = "CUBE";
    with this:
    const sSaveCUBE = "cube";
    Have fun

  • Digital Signature more then one BinarySecurityToken? without SignatureValue

    Hello together,
    XI7.0 calls an external webservice using SOAP. The communication runs successfully without any warning. But! The messages must be singed and encrypted.
    Iu2019ve configured signature authentication. The signed messages can not being processed by external web service. The error is:
             <faultcode xmlns:ns1="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">ns1:SecurityTokenUnavailable</faultcode>
             <faultstring>Referenced security token could not be retrieved (Reference "#sap-23")
    The output of SOAP Adapter contains 3 BinarySecurtyToken blocks, which are similar! But only one of it has SignatureValues. I mean it can be reason of the error.
    My question is:
    Is it possible that Security Tag has more then one BinarySecurityToken? The message is signed with PKCS#12 key, which contains 3 certificate chains.  But If I take another private key without any certificate chain (self-signed) I have the same problem: 3 Binary SecurityToken.
    So the question: How many Token are possible within Security Tag?? Why? If not what have I to`do?
    Here is an outout of SOAP Adapter.
       <SOAP:Header>
             <wsse:Security xmlns:wsse='http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd' SOAP:mustUnderstand='1'>
                <wsse:BinarySecurityToken xmlns:wsu='http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd' wsu:Id='sap-3' ValueType='http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3' EncodingType='http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary'>SIGNATURE </wsse:BinarySecurityToken>
                <ds:Signature xmlns:ds='http://www.w3.org/2000/09/xmldsig#'>
                   <ds:SignedInfo>
                      <ds:CanonicalizationMethod Algorithm='http://www.w3.org/2001/10/xml-exc-c14n#'/>
                      <ds:SignatureMethod Algorithm='http://www.w3.org/2000/09/xmldsig#rsa-sha1'/>
                      <ds:Reference URI='#wsuid-body-51cf5350-ab2e-11dd-9ef0-00144fa86689'>
                         <ds:Transforms>
                            <ds:Transform Algorithm='http://www.w3.org/2001/10/xml-exc-c14n#'/>
                         </ds:Transforms>
                         <ds:DigestMethod Algorithm='http://www.w3.org/2000/09/xmldsig#sha1'/>
                         <ds:DigestValue>E99gPpCexjdz7tk+wWp92r4DYNA=</ds:DigestValue>
                      </ds:Reference>
                   </ds:SignedInfo>
                   <ds:SignatureValue>SIGNATURE VALUE </ds:SignatureValue>
                   <ds:KeyInfo>
                      <wsse:SecurityTokenReference>
                         <wsse:Reference URI='#sap-23'/>
                      </wsse:SecurityTokenReference>
                   </ds:KeyInfo>
                </ds:Signature>
                <wsse:BinarySecurityToken xmlns:wsu='http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd' wsu:Id='sap-23' ValueType='http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3' EncodingType='http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary'> SIGNATURE</wsse:BinarySecurityToken>
                <wsse:BinarySecurityToken xmlns:wsu='http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd' wsu:Id='sap-23' ValueType='http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3' EncodingType='http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary'>SIGNATURE </wsse:BinarySecurityToken>
             </wsse:Security>
          </SOAP:Header>
          <SOAP:Body xmlns:wsu='http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd' wsu:Id='wsuid-body-51cf5350-ab2e-11dd-9ef0-00144fa86689'>
             <ns1:Request xmlns:ns1='http://blabla.com /'>
                <a></a>
             </ns1: Request>
          </SOAP:Body>
       </SOAP:Envelope>
    If anybody has done it have an idea how to do it please let me know.
    Thank you!! Anna

    Dear Anna
    I also need to use the similar soap header to call synchronous web service from PI 7.3 dual stack.
    I am trying to achieve this through receiver soap adapter with webServiceSecurity profile.
    I have done the required config on receiver agreement but still not able to get the digital signatures.
    I really appreciate if you can provide any pointers on this.
    Thanks
    Sapna

  • Sync to more then one computer

    Hello,
    this may sound like a silly question, but I was wondering if you can sync the iPhone to more then one computer.
    I have a laptop, and a iMac, both are synced to keep each others content merged and up to date.
    I want to get some of the music which is on both locations on my iPhone. in the photos and music areas .
    can this be done?

    No, not for music. The phone can only be synced to ONE music library, but contacts, calendars, and ohotos can be synced to multiple computers easily (Windows, Mac, or both, doesn't matter).
    I think it's possible to copy the files form one of your computers to the other (almost like you would do if you got a new computer and were transfering your music library to the new one) to consolidate your library all on one machine.
    -SB

  • SMS pick phone number randomly if the contact has more than 1 phone number

    When sending SMS, it pick the phone number randomly if the contact has more than one phone numbers. SMS ignore the default phone number too. Anyone having the same issue?

    You might try something like this:
    INSERT INTO
        DUAL_TARGET
            PERSON_NO,
            FNAME,
            CNUM
    SELECT
        PERSON_NO,
        FNAME,
        CASE
           WHEN COUNT(*) > 1 THEN
               NULL
           ELSE
               MAX(CNUM)
        END AS CNUM
    FROM
        DUAL_DATA
    WHERE
        CTYPE = 'cc'
    GROUP BY
        PERSON_NO,
        FNAME;

  • Debuging more then one DC

    Hi!
    If someone could tell me, is it possible, while debug, to go through the code in more then one DC, it will be great.
    As i see it now, there is only possible to debug one DC ( 1 application in it),
    and i can't test project the consists of several DCs.
    Thank you very much in advance!
    BR
    Diana

    Hi,
    In the debug configuration for web dynpro ... go to "Source" tab.
    You can select multiple projects there.
    Select "Add"..Then select java project .. and then list of projects to be selected.
    [You can select the sources in most of debug configuration in any IDE based on eclipse]
    Add the projects for the dc you want to debug.
    [ You have to sync the dc's you want to debug ]
    Regards,
    Ashwani Kr Sharma

  • Hi gurus in scripts i want to display more then one main window on the page

    hi gurus in scripts i want to display more then one main window on the page how it is to follow any body explain to me plz.

    Hi all,
        I am printing check printing from F110 with Z-form and it has been assigne to FBZP also..
        My client need to print the check information twise that means main window data two times.
        like this: 
           First main window.  :      invice#       amt            amt
                                               9002          4000          4000
                                               9005          5000          4000
    Al so they want like to print same in down part of the main window.
           First main window.  :      invice#       amt            amt
                                               9002          4000          4000
                                               9005          5000          4000
    For this i  have created instance main window of main window like MAIN    01,  but it is not displaying the data in instnce window data
    in the instance main window. 
    Question: Could you please let me know abt the same or good solution. How to cal main window instance , i tried with  
    /:   NEW-WINDOW      in instance main window part but it also appering in main windoe also.
    could you please let me know how to call instance main window or any other solution to get teh data like my example above.
    thx

  • On some pages the text from more than one paragraph stack up on top of each other, like writing something then writing something else on top of it.

    On some pages the text from more than one paragraph stack up on top of each other, like writing something then writing something else over the top of it. Some pages will run text and pictures together, like a car rear-ending another or a train pile up. Other pages will cut an image or text short, i.e. it will display a portion of the top of the image or text but not the rest. This happens on Amazon for example, the section where it says "Customers who looked at this also looked at" will allow only a certain amount of the upper portion of the description immediately below the picture of the product but below that section everything is fine until I get to another section displaying more products and their descriptions and then it cuts the bottom portions off again. I've noticed this behavior mostly in the sections with product photos, the text sections seem okay. YouTube also displays this behavior. It's even doing it on this page right now. Below this box I can read "The more information you can provide the better chance your question will be answered " , but directly below that in the next sentence I can see the start of it with "Troublshootin" and the "Automatically Add" in a green field covering the "g". The next clear text is "A window will open in the top corner. Click Allow, and then click Install. If the automated way doesn't work, try these manual steps." I tried turning of pre-fetching, clearing history, cookies, and cache, scanning for malware with Avast and Windows Defender all to no avail. It began when I upgraded from dial up to DSL via AT&T Uverse. I have a Motorola NVG510 modem. The modem was replaced an hour ago along with new dedicated lines and DSL/Phone splitter from the box by an AT&T technician to make sure my incoming lines were up to par. He ran a connection test and verified everything is up to standards. IE does not display this behavior. I am running Firefox20.0.1 and all previous versions have acted the same way since I upgraded to DSL about 3 months ago.

    If you have increased the minimum font size then try the default setting "none" in case the current setting is causing problems.
    *Tools > Options > Content : Fonts & Colors > Advanced > Minimum Font Size (none)
    Make sure that you allow websites to choose their fonts.
    *Tools > Options > Content : Fonts & Colors > Advanced: [X] "Allow pages to choose their own fonts, instead of my selections above"
    It is better not to increase the minimum font size, but use an extension to set the default page zoom to prevent issues with text not being displayed properly.
    You can use an extension to set a default font size and page zoom on web pages.
    *Default FullZoom Level: https://addons.mozilla.org/firefox/addon/default-fullzoom-level/
    *NoSquint: https://addons.mozilla.org/firefox/addon/nosquint/

  • How can I restrict more then one user to access the table?

    Hi !
    I have a problem and two solutions and I am a bit confused as to
    which one is the best one and/or can there be any better way of
    handling the problem ?
    Problem : I have to update a key field of a table when I update
    it in the form 5.0 screen. I am basically doing a maintenance of
    a table and if a certain field is updated then the change has to
    be reflected in two more tables. But the issue is that the field
    is a part of the key in those two tables. So all I can think of
    is that I need to insert new set or rows for that new value of
    the field and delete the old set of records for old values of
    the field.
    There are two ways of doing it;
    1.One option can be to explicitely define two cursors separately
    and fetch the values in them one by one and then insert the new
    records and then delete the old records in both the tables. This
    I feel will be a cumbersome process both in terms of processing
    time and the coding.
    2.Second option I was thinking can be to create two flat tables
    (without keys) and insert the values in them and update the
    changed field there and then insert the rows in the respective
    tables. Delete the old records in the main tables and delets the
    records in these flat tables. This is a bit more faster and
    easier to predict and code. This seems to be a better option for
    me.
    Any comments on these ?
    In both the cases I was thinking of making some provision so
    that more then one person can't update the table simultaneously.
    Since if there are more then one persons doing the processing
    then some inconsistency might creep into the whole process.
    This is easier to do in the second process as if I check the
    data in the flat tables and if there is some data then I can
    presume that some one is doing the processing and I can ask the
    other person to hold for a while. But in this case how can I
    stop more then two people to simultaneously check for the empty
    table and start inserting the record ?
    I was just thinking of having a sepatare table having only one
    field and this will be a key field and as the process begins the
    process will insert a fix value say 'Y' in the key field and at
    the end of the process the record will be deleted and this way
    we can restrict the user to access the process more then one at
    a time..? Since you can't have same value of the key in a table
    more then once.
    Any better way of handling it will be deeply appreciated.
    How about locking the table at the begining and releasing the
    lock at the end ? Will there be any issue in that? since I am
    inserting and deleting the rows in the same transaction.
    Comments welcome,
    Shobhit
    null

    How about performing the update IN the database using a stored
    procedure?
    By using non-database fields on your form to get the
    information, you can then call the procedure in the database to
    perform the updates. If an error occurs in the procedure you
    rollback, if necessary, and send a message or status back to the
    form. If it succeeds you might wish to commit and then re-
    execute the form's query -- using either the original key values
    or the new key values...
    null

  • How to call more then one Function modules at the same time

    HI ,
    How to call more then one FM at the same time .
    Modertor Message: Interview-type Questions are not allowed.
    Edited by: kishan P on Jan 2, 2012 2:22 PM

    They are a few different models of the MacBook Pro ranging from 15.4" i7's to 17" i7's. I would use the same models together though when imaging them just like I do with PC's. For example I would Ghost 5 Lenovo T420 Thinkpads at the same time which all share the same exact specs and config. Looking to do the same with the MBP. I have .dmg image of OSX 10.8.1 on a firewire drive which I'm using. I image all my MBP's with this drive, the only downside is I have to do each MBP one at a time.
    Thanks

Maybe you are looking for

  • Re: exit from a while loop in sub vi

    I think the mail didn`t get through first time. Repeat posting - Sorry if this occurs twice Shane Hallo, Can the use of occurrences solve this problem? The Main program can create an occurrence which can be passed to the sub-VIs. Upon pressing the bu

  • Date Format in Portal Report

    Hi, I have created a SQL Report with following select statement. Looks like portal has default format mask for date type as 'DD-MM-YY'. If I put DD-MM-YYYY or DD-MM-RRRR in Format Mask field in Column Formatting screen, the reports generates 04-10-00

  • How to do backup database in the menu of Oracle XE

    Dear all, When I do database backup selecting from the Oracle XE menu, it output the error as below : sql statement: create pfile=''C:\ORACLEXE\APP\ORACLE\PRODUCT\10.2.0\SERVER\DATABASE\SPFILE2INIT.ORA'' from spfile RMAN-00571: ======================

  • Why doesn't Grep Styles with pos lookbehind work?

    Hi, I've posted another thread but I suppose I expected too much. I'll try to siplify this. I have text where I want to catch underlined text: Ponny, - Cob--.499,- 125, - 135, - 145, - 155--.399,- 140, - 150, - 160, - 170--..99,- 140, - 150---99,- Th

  • I cannot connect to my iMac or my Mackbook from my Windows 7 PC after installing Lion. Worked fine with Snow Leopard

    I have a 2009 iMac and a mid 2007 Macbook. I also have an HTPC running Windows 7. I can connect fine to the HTPC from either the iMac or the Macbook, however, I am completely unable to connect to my Macbook or iMac from my PC. This was never a proble