W_DUAL_G - how is it populated

Hi All,
I was wondering how W_DUAL_G table gets populated.
I installed OBI Apps in three environments some time ago.
In one I had the W_DUAL_G empty (MSSQL), in the second there was just one row (Oracle) and in the third one I had over 500 rows (Oracle).
Should that table be populated while creating OBAW schema or is there any customized script to do it?
There is not much information in the documentation,
Thank you for any inputs,

Thank you for your answer,
To be honest I had already checked it before - it seems I had run a couple of random tests in different environments long time ago and that where different results came from.
Thanks again,
Regards..

Similar Messages

  • How to achieve populating of price for regular purchases in PO

    When using Purchasing module ( without/shared Inventory ) , i understand we can't create Item codes, my question is How to achieve populating of price for regular purchases.
    Ex : If user requests Laptop for the same model more than one time in a year, i want the price to auto populate in PO and make buyer/requester life easy.

    I don't think you can do this.
    However, if you are creating a requisition, you may be able to use the "Catalog" button to refer to old purchase orders.

  • How to auto populating the field in MS crm

    How to auto populating the field in MS crm

    Hi,
    To populate URL of account based on account name please refer this link.
    If you are asking about the address auto populate/complete refer this link
    To Retrieve from other entity and populate the fields, for example on entering the account name in opportunity form the fields from account form like Sector, Region can be retrieved and can be auto populated in opportunity form using Odata as follows.
    Call the function getAccountDetails in onchange event of Companyname. Do not forget to add Jquery and Json in libraries.
    function getAccountDetails() {
        var companyName = Xrm.Page.getAttribute("customerid").getValue();
        if ((companyName != null)) {
            var companyNameValue = companyName[0].name;
            var companyNameID = companyName[0].id;
            var serverUrl = Xrm.Page.context.getServerUrl();
            //The XRM OData end-point
            var ODATA_ENDPOINT = "/XRMServices/2011/OrganizationData.svc";
            var odataSetName = "AccountSet";
            var odataSelect = serverUrl + ODATA_ENDPOINT + "/" + odataSetName + "(guid'" + companyNameID + "')";
            //alert(odataSelect);
            $.ajax({
                type: "GET",
                contentType: "application/json; charset=utf-8",
                datatype: "json",
                url: odataSelect,
                beforeSend: function (XMLHttpRequest) { XMLHttpRequest.setRequestHeader("Accept", "application/json"); },
                success: function (data, textStatus, XmlHttpRequest) {
                    var result_account = data.d;
                    var name;
                    var Id;
                    var entityType;
                    //replace the fields with the fields on your entity
                    Xrm.Page.getAttribute("new_sector").setValue(result_account.new_Sector.Value);
                    Xrm.Page.getAttribute("new_region").setValue(result_account.new_Region.Value);                     
                error: function (XmlHttpRequest, textStatus, errorThrown) { alert('OData Select Failed: ' + odataSelect); }
    Also as another option if you donot wat the java script then you can go for a workflow to poplate, please refer this link:  https://www.powerobjects.com/blog/2013/11/25/retrieving-data-from-a-related-entity-crm-2013/
    Regards, Rekha.J

  • How FND_PRIMARY_KEYS table populated

    Hello All,<br><br>
    I would like to know how FND_PRIMARY_KEYS are populated. In our application, as per Apps guidelines, we dont have primary key defined on tables. We have indexes. But for Audit Trial we need primary keys. So i would like to know how we can populate the FND_PRIMARY_KEYS table with relevant information ? What information we need to provide and how ?
    <br><br>
    Any pointers are welcome
    <br><br>
    Thanks<br>
    Sindhu

    Is the application, Oracle Applications, or some other vendor's application? Is there a version number?
    I would think that the columns that make up the unique index on a table, providing it has only one unique index, would be the columns that would make up the PK if it were definded. See DBA_IND_COLUMNS. For tables with multiple unique indexes one would likely be the PK and the others UK constraints.
    HTH -- Mark D Powell --

  • How the data populated into tables like USR01,USR02 etc

    Hi,
    I have one theoritical doubt. How the data is populated into tables like USR01, USR02 etc after creating the
    user using SU01. Let me know the process behind it.
    Rgds,
    Chandra.

    Hi Chinna,
    When you create users using SU01, SU10 transaction codes, it uses BAPI_USER_CREATE1 which will update the data in the respective tables.
    Same way BAPI_USER_CHANGE is used when you modify any existing users.
    Hope this answers!!
    Warm Regards,
    Raghu

  • How is DefaultTable populated after dbms_xdb.createResource?

    ** 10gR2 **
    hi, I'm inheriting some XMLDB/PlSql code
    new to XMLDB, appreciate some help
    <p>
    Sample snip of registered xsd:
    <div style="color:red;">
    <xs:complexType name="OurTransactions" xdb:SQLType="OurTransaction1234_T" xdb:SQLSchema="SCOTT">
    <xs:complexContent>
    <xs:extension base="SalesTransactions">
    <xs:sequence>
    <xs:element name="OurTransaction" type="SalesOurType"
    maxOccurs="unbounded" <strong>xdb:defaultTable="OUR_TRANSACTION_TABLE</strong>" xdb:SQLInline="false"
    xdb:SQLName="OurTransaction" xdb:SQLType="SalesOur4321_T"
    xdb:SQLSchema="SCOTT" xdb:defaultTableSchema="SCOTT"
    xdb:SQLCollType="XDB$XMLTYPE_REF_LIST_T" xdb:SQLCollSchema="XDB"/>
    </xs:sequence>
    </xs:extension>
    </xs:complexContent>
    </xs:complexType>
    </div>
    </p>
    <p>
    I do see the XMLtype tables and types referenced in the annotation above.
    <strong>and XML doc is added this way: <span style="color:blue;">
    dbms_xdb.createResource('some_url', xml_clob);</span></strong>
    </p>
    <p>
    the default XMLtype table "OUR_TRANSACTION_TABLE" gets populated after dbms_xdb.createResource
    <strong>
    My question is "How ?"
    How is the default table populated when XML is added via "dbms_xdb.createResource" ?</strong>
    I haven't come across this in the documentation, appreciate if you can point out where in the doco.
    this specific topic is mentioned.
    thanks!
    </p>

    Truncate table should delete the associated resources (at least it appears to in 11g)
    If that doesn't work you can try something like this
    SQL> set timing on
    SQL> --
    SQL> select ANY_PATH
      2    from RESOURCE_VIEW, PURCHASEORDER p
      3   where extractValue(res,'/Resource/XMLRef') = ref(p)
      4  /
    /home/SCOTT/purchaseOrders/2003/Apr/AMCEWEN-20030409123336200304.xml
    /home/SCOTT/purchaseOrders/2003/Apr/EABEL-20030409123336200304.xml
    /home/SCOTT/purchaseOrders/2003/Apr/PTUCKER-20030409120030491PDT.xml
    /home/SCOTT/purchaseOrders/2003/Apr/PTUCKER-20030409123336200304.xml
    /home/SCOTT/purchaseOrders/2003/Apr/SBELL-20030409120030431PDT.xml
    /home/SCOTT/purchaseOrders/2003/Apr/SBELL-20030409123336200304.xml
    /home/SCOTT/purchaseOrders/2003/Apr/SKING-200304091233363200304.xml
    /home/SCOTT/purchaseOrders/2003/Apr/SMCCAIN-20030409120030441PDT.xml
    /home/SCOTT/purchaseOrders/2003/Apr/SMCCAIN-20030409120030451PDT.xml
    /home/SCOTT/purchaseOrders/2003/Apr/SMCCAIN-20030409123336151PDT.xml
    /home/SCOTT/purchaseOrders/2003/Apr/VJONES-20030409120030401PDT.xml
    /home/SCOTT/purchaseOrders/2003/Apr/VJONES-20030409123336301PDT.xml
    /home/SCOTT/purchaseOrders/2003/AsianExamples/BEVERETT-2003110912343601PDT.xml
    /home/SCOTT/purchaseOrders/2003/AsianExamples/BEVERETT-2003112302343802PDT.xml
    /home/SCOTT/purchaseOrders/2003/AsianExamples/CDAVIES-2003100809243618PDT.xml
    /home/SCOTT/purchaseOrders/2003/AsianExamples/CDAVIES-2003120809668273PDT.xml
    /home/SCOTT/purchaseOrders/2003/AsianExamples/ChineseMovieTitles.xml
    /home/SCOTT/purchaseOrders/2003/AsianExamples/WTAYLOR-2003082311908574PDT.xml
    /home/SCOTT/purchaseOrders/2003/Aug/AWALSH-20030809123337203PDT.xml
    /home/SCOTT/purchaseOrders/2003/Aug/AWALSH-20030809123337303PDT.xml
    /home/SCOTT/purchaseOrders/2003/Aug/CJOHNSON-20030809123337283PDT.xml
    /home/SCOTT/purchaseOrders/2003/Aug/DAUSTIN-20030809123337103PDT.xml
    /home/SCOTT/purchaseOrders/2003/Aug/JCHEN-20030809123337123PDT.xml
    /home/SCOTT/purchaseOrders/2003/Aug/JCHEN-20030809123337223PDT.xml
    /home/SCOTT/purchaseOrders/2003/Aug/LSMITH-20030809123337323PDT.xml
    /home/SCOTT/purchaseOrders/2003/Aug/SBELL-20030809123337353PDT.xml
    /home/SCOTT/purchaseOrders/2003/Aug/SKING-20030809123337153PDT.xml
    /home/SCOTT/purchaseOrders/2003/Aug/SMCCAIN-20030809123337173PDT.xml
    /home/SCOTT/purchaseOrders/2003/Aug/TFOX-20030809123337243PDT.xml
    /home/SCOTT/purchaseOrders/2003/Dec/AMCEWEN-20031209123338445PDT.xml
    /home/SCOTT/purchaseOrders/2003/Dec/CJOHNSON-20031209123338595PDT.xml
    /home/SCOTT/purchaseOrders/2003/Dec/DAUSTIN-20031209123338645PDT.xml
    /home/SCOTT/purchaseOrders/2003/Dec/EABEL-20031209123338324PDT.xml
    /home/SCOTT/purchaseOrders/2003/Dec/JCHEN-20031209123338475PDT.xml
    /home/SCOTT/purchaseOrders/2003/Dec/LSMITH-20031209123338535PDT.xml
    /home/SCOTT/purchaseOrders/2003/Dec/PTUCKER-20031209123338565PDT.xml
    /home/SCOTT/purchaseOrders/2003/Dec/SBELL-20031209123338304PDT.xml
    /home/SCOTT/purchaseOrders/2003/Dec/SBELL-20031209123338505PDT.xml
    /home/SCOTT/purchaseOrders/2003/Dec/TFOX-20031209123338354PDT.xml
    /home/SCOTT/purchaseOrders/2003/Dec/VJONES-20031209123338374PDT.xml
    /home/SCOTT/purchaseOrders/2003/Feb/AMCEWEN-20030209123335600PDT.xml
    /home/SCOTT/purchaseOrders/2003/Feb/AMCEWEN-20030209123335701PDT.xml
    /home/SCOTT/purchaseOrders/2003/Feb/DAUSTIN-20030209123335811PDT.xml
    /home/SCOTT/purchaseOrders/2003/Feb/EABEL-20030209123335791PDT.xml
    /home/SCOTT/purchaseOrders/2003/Feb/PTUCKER-20030209123335721PDT.xml
    /home/SCOTT/purchaseOrders/2003/Feb/PTUCKER-20030209123335821PDT.xml
    /home/SCOTT/purchaseOrders/2003/Feb/SBELL-20030209123335771PDT.xml
    /home/SCOTT/purchaseOrders/2003/Feb/SMCCAIN-20030209123335681PDT.xml
    /home/SCOTT/purchaseOrders/2003/Feb/WSMITH-20030209123335650PDT.xml
    /home/SCOTT/purchaseOrders/2003/Feb/WSMITH-20030209123335741PDT.xml
    /home/SCOTT/purchaseOrders/2003/Feb/WSMITH-20030209123335751PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jan/AMCEWEN-20030109123335370PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jan/AWALSH-2003010912333570PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jan/CJOHNSON-20030109123335170PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jan/LSMITH-20030109123335500PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jan/PTUCKER-20030109123335430PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jan/SBELL-20030109123335280PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jan/SKING-20030109123335560PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jan/SMCCAIN-20030109123335470PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jan/TFOX-20030109123335520PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jan/VJONES-20030109123335350PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jan/WSMITH-20030109123335450PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jul/AMCEWEN-20030709123336902PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jul/CJOHNSON-2003070912333783PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jul/DAUSTIN-2003070912333702PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jul/DAUSTIN-2003070912333742PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jul/LSMITH-2003070912333722PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jul/SBELL-2003070912333763PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jul/SKING-20030709123336952PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jul/SMCCAIN-20030709123336972PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jul/TFOX-20030709123336872PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jul/TFOX-20030709123336912PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jul/VJONES-20030709123336932PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jun/AMCEWEN-20030609123336762PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jun/AWALSH-20030609123336642PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jun/CJOHNSON-20030609123336712PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jun/LSMITH-20030609123336852PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jun/SKING-20030609123336622PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jun/SKING-20030609123336822PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jun/SMCCAIN-20030609123336842PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jun/TFOX-20030609123336582PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jun/TFOX-20030609123336782PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jun/VJONES-20030609123336602PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jun/VJONES-20030609123336802PDT.xml
    /home/SCOTT/purchaseOrders/2003/Mar/AWALSH-20030309123335871PDT.xml
    /home/SCOTT/purchaseOrders/2003/Mar/AWALSH-20030309123335911PDT.xml
    /home/SCOTT/purchaseOrders/2003/Mar/AWALSH-20030309123336101PDT.xml
    /home/SCOTT/purchaseOrders/2003/Mar/CJOHNSON-20030309123335851PDT.xml
    /home/SCOTT/purchaseOrders/2003/Mar/DAUSTIN-20030309123335931PDT.xml
    /home/SCOTT/purchaseOrders/2003/Mar/JCHEN-20030309123335961PDT.xml
    /home/SCOTT/purchaseOrders/2003/Mar/LSMITH-2003030912333661PDT.xml
    /home/SCOTT/purchaseOrders/2003/Mar/SBELL-2003030912333601PDT.xml
    /home/SCOTT/purchaseOrders/2003/Mar/SKING-20030309123336131PDT.xml
    /home/SCOTT/purchaseOrders/2003/Mar/TFOX-2003030912333681PDT.xml
    /home/SCOTT/purchaseOrders/2003/Mar/VJONES-20030309123335971PDT.xml
    /home/SCOTT/purchaseOrders/2003/May/CJOHNSON-20030509123336482PDT.xml
    /home/SCOTT/purchaseOrders/2003/May/EABEL-20030509123336382PDT.xml
    /home/SCOTT/purchaseOrders/2003/May/JCHEN-20030509123336462PDT.xml
    /home/SCOTT/purchaseOrders/2003/May/LSMITH-20030509123336562PDT.xml
    /home/SCOTT/purchaseOrders/2003/May/PTUCKER-20030509123336452PDT.xml
    /home/SCOTT/purchaseOrders/2003/May/SBELL-20030509123336362PDT.xml
    /home/SCOTT/purchaseOrders/2003/May/SBELL-20030509123336532PDT.xml
    /home/SCOTT/purchaseOrders/2003/May/SKING-20030509123336392PDT.xml
    /home/SCOTT/purchaseOrders/2003/May/SMCCAIN-20030509123336512PDT.xml
    /home/SCOTT/purchaseOrders/2003/May/VJONES-20030509123336502PDT.xml
    /home/SCOTT/purchaseOrders/2003/May/WSMITH-20030509123336412PDT.xml
    /home/SCOTT/purchaseOrders/2003/Nov/AWALSH-20031109123337954PDT.xml
    /home/SCOTT/purchaseOrders/2003/Nov/AWALSH-2003110912333844PDT.xml
    /home/SCOTT/purchaseOrders/2003/Nov/CJOHNSON-20031109123338124PDT.xml
    /home/SCOTT/purchaseOrders/2003/Nov/CJOHNSON-2003110912333824PDT.xml
    /home/SCOTT/purchaseOrders/2003/Nov/LSMITH-20031109123338234PDT.xml
    /home/SCOTT/purchaseOrders/2003/Nov/SBELL-20031109123338204PDT.xml
    /home/SCOTT/purchaseOrders/2003/Nov/SKING-20031109123337974PDT.xml
    /home/SCOTT/purchaseOrders/2003/Nov/SKING-20031109123338294PDT.xml
    /home/SCOTT/purchaseOrders/2003/Nov/SMCCAIN-2003110912333894PDT.xml
    /home/SCOTT/purchaseOrders/2003/Nov/TFOX-20031109123337994PDT.xml
    /home/SCOTT/purchaseOrders/2003/Nov/WSMITH-20031109123338154PDT.xml
    /home/SCOTT/purchaseOrders/2003/Oct/AMCEWEN-20031009123337874PDT.xml
    /home/SCOTT/purchaseOrders/2003/Oct/DAUSTIN-20031009123337613PDT.xml
    /home/SCOTT/purchaseOrders/2003/Oct/JCHEN-20031009123337633PDT.xml
    /home/SCOTT/purchaseOrders/2003/Oct/JCHEN-20031009123337733PDT.xml
    /home/SCOTT/purchaseOrders/2003/Oct/JCHEN-20031009123337764PDT.xml
    /home/SCOTT/purchaseOrders/2003/Oct/SBELL-20031009123337673PDT.xml
    /home/SCOTT/purchaseOrders/2003/Oct/SKING-20031009123337703PDT.xml
    /home/SCOTT/purchaseOrders/2003/Oct/TFOX-20031009123337653PDT.xml
    /home/SCOTT/purchaseOrders/2003/Oct/TFOX-20031009123337784PDT.xml
    /home/SCOTT/purchaseOrders/2003/Oct/VJONES-20031009123337814PDT.xml
    /home/SCOTT/purchaseOrders/2003/Oct/WSMITH-20031009123337924PDT.xml
    /home/SCOTT/purchaseOrders/2003/Sep/AWALSH-20030909123337483PDT.xml
    /home/SCOTT/purchaseOrders/2003/Sep/DAUSTIN-20030909123337423PDT.xml
    /home/SCOTT/purchaseOrders/2003/Sep/DAUSTIN-20030909123337553PDT.xml
    /home/SCOTT/purchaseOrders/2003/Sep/JCHEN-20030909123337443PDT.xml
    /home/SCOTT/purchaseOrders/2003/Sep/SKING-20030909123337383PDT.xml
    /home/SCOTT/purchaseOrders/2003/Sep/SKING-20030909123337503PDT.xml
    /home/SCOTT/purchaseOrders/2003/Sep/SMCCAIN-20030909123337403PDT.xml
    /home/SCOTT/purchaseOrders/2003/Sep/TFOX-20030909123337463PDT.xml
    /home/SCOTT/purchaseOrders/2003/Sep/TFOX-20030909123337563PDT.xml
    /home/SCOTT/purchaseOrders/2003/Sep/VJONES-20030909123337363PDT.xml
    /home/SCOTT/purchaseOrders/2003/Sep/VJONES-20030909123337583PDT.xml
    139 rows selected.
    Elapsed: 00:00:00.40
    SQL> call dbms_xdbz.DISABLE_HIERARCHY('SCOTT','PURCHASEORDER')
      2  /
    Call completed.
    Elapsed: 00:00:01.81
    SQL> select ANY_PATH
      2    from RESOURCE_VIEW, USER_XML_SCHEMAS
      3   where existsNode
      4         (
      5            res,
      6            '/Resource[SchOID="' || SCHEMA_ID || '" and ElNum="' ||
      7            extractValue
      8            (
      9              schema,
    10              '/xsd:schema/xsd:element[@name="PurchaseOrder"]/@xdb:propNumber',
    11              'xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xdb="http://xmlns.oracle.com/xdb"'
    12            )
    13            || '"]'
    14         )  = 1
    15     and SCHEMA_URL = 'http://localhost:80/home/SCOTT/poSource/xsd/purchaseOrder.xsd'
    16  /
    /home/SCOTT/purchaseOrders/2003/Apr/AMCEWEN-20030409123336200304.xml
    /home/SCOTT/purchaseOrders/2003/Apr/EABEL-20030409123336200304.xml
    /home/SCOTT/purchaseOrders/2003/Apr/PTUCKER-20030409120030491PDT.xml
    /home/SCOTT/purchaseOrders/2003/Apr/PTUCKER-20030409123336200304.xml
    /home/SCOTT/purchaseOrders/2003/Apr/SBELL-20030409120030431PDT.xml
    /home/SCOTT/purchaseOrders/2003/Apr/SBELL-20030409123336200304.xml
    /home/SCOTT/purchaseOrders/2003/Apr/SKING-200304091233363200304.xml
    /home/SCOTT/purchaseOrders/2003/Apr/SMCCAIN-20030409120030441PDT.xml
    /home/SCOTT/purchaseOrders/2003/Apr/SMCCAIN-20030409120030451PDT.xml
    /home/SCOTT/purchaseOrders/2003/Apr/SMCCAIN-20030409123336151PDT.xml
    /home/SCOTT/purchaseOrders/2003/Apr/VJONES-20030409120030401PDT.xml
    /home/SCOTT/purchaseOrders/2003/Apr/VJONES-20030409123336301PDT.xml
    /home/SCOTT/purchaseOrders/2003/AsianExamples/BEVERETT-2003110912343601PDT.xml
    /home/SCOTT/purchaseOrders/2003/AsianExamples/BEVERETT-2003112302343802PDT.xml
    /home/SCOTT/purchaseOrders/2003/AsianExamples/CDAVIES-2003100809243618PDT.xml
    /home/SCOTT/purchaseOrders/2003/AsianExamples/CDAVIES-2003120809668273PDT.xml
    /home/SCOTT/purchaseOrders/2003/AsianExamples/ChineseMovieTitles.xml
    /home/SCOTT/purchaseOrders/2003/AsianExamples/WTAYLOR-2003082311908574PDT.xml
    /home/SCOTT/purchaseOrders/2003/Aug/AWALSH-20030809123337203PDT.xml
    /home/SCOTT/purchaseOrders/2003/Aug/AWALSH-20030809123337303PDT.xml
    /home/SCOTT/purchaseOrders/2003/Aug/CJOHNSON-20030809123337283PDT.xml
    /home/SCOTT/purchaseOrders/2003/Aug/DAUSTIN-20030809123337103PDT.xml
    /home/SCOTT/purchaseOrders/2003/Aug/JCHEN-20030809123337123PDT.xml
    /home/SCOTT/purchaseOrders/2003/Aug/JCHEN-20030809123337223PDT.xml
    /home/SCOTT/purchaseOrders/2003/Aug/LSMITH-20030809123337323PDT.xml
    /home/SCOTT/purchaseOrders/2003/Aug/SBELL-20030809123337353PDT.xml
    /home/SCOTT/purchaseOrders/2003/Aug/SKING-20030809123337153PDT.xml
    /home/SCOTT/purchaseOrders/2003/Aug/SMCCAIN-20030809123337173PDT.xml
    /home/SCOTT/purchaseOrders/2003/Aug/TFOX-20030809123337243PDT.xml
    /home/SCOTT/purchaseOrders/2003/Dec/AMCEWEN-20031209123338445PDT.xml
    /home/SCOTT/purchaseOrders/2003/Dec/CJOHNSON-20031209123338595PDT.xml
    /home/SCOTT/purchaseOrders/2003/Dec/DAUSTIN-20031209123338645PDT.xml
    /home/SCOTT/purchaseOrders/2003/Dec/EABEL-20031209123338324PDT.xml
    /home/SCOTT/purchaseOrders/2003/Dec/JCHEN-20031209123338475PDT.xml
    /home/SCOTT/purchaseOrders/2003/Dec/LSMITH-20031209123338535PDT.xml
    /home/SCOTT/purchaseOrders/2003/Dec/PTUCKER-20031209123338565PDT.xml
    /home/SCOTT/purchaseOrders/2003/Dec/SBELL-20031209123338304PDT.xml
    /home/SCOTT/purchaseOrders/2003/Dec/SBELL-20031209123338505PDT.xml
    /home/SCOTT/purchaseOrders/2003/Dec/TFOX-20031209123338354PDT.xml
    /home/SCOTT/purchaseOrders/2003/Dec/VJONES-20031209123338374PDT.xml
    /home/SCOTT/purchaseOrders/2003/Feb/AMCEWEN-20030209123335600PDT.xml
    /home/SCOTT/purchaseOrders/2003/Feb/AMCEWEN-20030209123335701PDT.xml
    /home/SCOTT/purchaseOrders/2003/Feb/DAUSTIN-20030209123335811PDT.xml
    /home/SCOTT/purchaseOrders/2003/Feb/EABEL-20030209123335791PDT.xml
    /home/SCOTT/purchaseOrders/2003/Feb/PTUCKER-20030209123335721PDT.xml
    /home/SCOTT/purchaseOrders/2003/Feb/PTUCKER-20030209123335821PDT.xml
    /home/SCOTT/purchaseOrders/2003/Feb/SBELL-20030209123335771PDT.xml
    /home/SCOTT/purchaseOrders/2003/Feb/SMCCAIN-20030209123335681PDT.xml
    /home/SCOTT/purchaseOrders/2003/Feb/WSMITH-20030209123335650PDT.xml
    /home/SCOTT/purchaseOrders/2003/Feb/WSMITH-20030209123335741PDT.xml
    /home/SCOTT/purchaseOrders/2003/Feb/WSMITH-20030209123335751PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jan/AMCEWEN-20030109123335370PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jan/AWALSH-2003010912333570PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jan/CJOHNSON-20030109123335170PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jan/LSMITH-20030109123335500PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jan/PTUCKER-20030109123335430PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jan/SBELL-20030109123335280PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jan/SKING-20030109123335560PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jan/SMCCAIN-20030109123335470PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jan/TFOX-20030109123335520PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jan/VJONES-20030109123335350PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jan/WSMITH-20030109123335450PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jul/AMCEWEN-20030709123336902PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jul/CJOHNSON-2003070912333783PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jul/DAUSTIN-2003070912333702PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jul/DAUSTIN-2003070912333742PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jul/LSMITH-2003070912333722PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jul/SBELL-2003070912333763PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jul/SKING-20030709123336952PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jul/SMCCAIN-20030709123336972PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jul/TFOX-20030709123336872PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jul/TFOX-20030709123336912PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jul/VJONES-20030709123336932PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jun/AMCEWEN-20030609123336762PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jun/AWALSH-20030609123336642PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jun/CJOHNSON-20030609123336712PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jun/LSMITH-20030609123336852PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jun/SKING-20030609123336622PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jun/SKING-20030609123336822PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jun/SMCCAIN-20030609123336842PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jun/TFOX-20030609123336582PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jun/TFOX-20030609123336782PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jun/VJONES-20030609123336602PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jun/VJONES-20030609123336802PDT.xml
    /home/SCOTT/purchaseOrders/2003/Mar/AWALSH-20030309123335871PDT.xml
    /home/SCOTT/purchaseOrders/2003/Mar/AWALSH-20030309123335911PDT.xml
    /home/SCOTT/purchaseOrders/2003/Mar/AWALSH-20030309123336101PDT.xml
    /home/SCOTT/purchaseOrders/2003/Mar/CJOHNSON-20030309123335851PDT.xml
    /home/SCOTT/purchaseOrders/2003/Mar/DAUSTIN-20030309123335931PDT.xml
    /home/SCOTT/purchaseOrders/2003/Mar/JCHEN-20030309123335961PDT.xml
    /home/SCOTT/purchaseOrders/2003/Mar/LSMITH-2003030912333661PDT.xml
    /home/SCOTT/purchaseOrders/2003/Mar/SBELL-2003030912333601PDT.xml
    /home/SCOTT/purchaseOrders/2003/Mar/SKING-20030309123336131PDT.xml
    /home/SCOTT/purchaseOrders/2003/Mar/TFOX-2003030912333681PDT.xml
    /home/SCOTT/purchaseOrders/2003/Mar/VJONES-20030309123335971PDT.xml
    /home/SCOTT/purchaseOrders/2003/May/CJOHNSON-20030509123336482PDT.xml
    /home/SCOTT/purchaseOrders/2003/May/EABEL-20030509123336382PDT.xml
    /home/SCOTT/purchaseOrders/2003/May/JCHEN-20030509123336462PDT.xml
    /home/SCOTT/purchaseOrders/2003/May/LSMITH-20030509123336562PDT.xml
    /home/SCOTT/purchaseOrders/2003/May/PTUCKER-20030509123336452PDT.xml
    /home/SCOTT/purchaseOrders/2003/May/SBELL-20030509123336362PDT.xml
    /home/SCOTT/purchaseOrders/2003/May/SBELL-20030509123336532PDT.xml
    /home/SCOTT/purchaseOrders/2003/May/SKING-20030509123336392PDT.xml
    /home/SCOTT/purchaseOrders/2003/May/SMCCAIN-20030509123336512PDT.xml
    /home/SCOTT/purchaseOrders/2003/May/VJONES-20030509123336502PDT.xml
    /home/SCOTT/purchaseOrders/2003/May/WSMITH-20030509123336412PDT.xml
    /home/SCOTT/purchaseOrders/2003/Nov/AWALSH-20031109123337954PDT.xml
    /home/SCOTT/purchaseOrders/2003/Nov/AWALSH-2003110912333844PDT.xml
    /home/SCOTT/purchaseOrders/2003/Nov/CJOHNSON-20031109123338124PDT.xml
    /home/SCOTT/purchaseOrders/2003/Nov/CJOHNSON-2003110912333824PDT.xml
    /home/SCOTT/purchaseOrders/2003/Nov/LSMITH-20031109123338234PDT.xml
    /home/SCOTT/purchaseOrders/2003/Nov/SBELL-20031109123338204PDT.xml
    /home/SCOTT/purchaseOrders/2003/Nov/SKING-20031109123337974PDT.xml
    /home/SCOTT/purchaseOrders/2003/Nov/SKING-20031109123338294PDT.xml
    /home/SCOTT/purchaseOrders/2003/Nov/SMCCAIN-2003110912333894PDT.xml
    /home/SCOTT/purchaseOrders/2003/Nov/TFOX-20031109123337994PDT.xml
    /home/SCOTT/purchaseOrders/2003/Nov/WSMITH-20031109123338154PDT.xml
    /home/SCOTT/purchaseOrders/2003/Oct/AMCEWEN-20031009123337874PDT.xml
    /home/SCOTT/purchaseOrders/2003/Oct/DAUSTIN-20031009123337613PDT.xml
    /home/SCOTT/purchaseOrders/2003/Oct/JCHEN-20031009123337633PDT.xml
    /home/SCOTT/purchaseOrders/2003/Oct/JCHEN-20031009123337733PDT.xml
    /home/SCOTT/purchaseOrders/2003/Oct/JCHEN-20031009123337764PDT.xml
    /home/SCOTT/purchaseOrders/2003/Oct/SBELL-20031009123337673PDT.xml
    /home/SCOTT/purchaseOrders/2003/Oct/SKING-20031009123337703PDT.xml
    /home/SCOTT/purchaseOrders/2003/Oct/TFOX-20031009123337653PDT.xml
    /home/SCOTT/purchaseOrders/2003/Oct/TFOX-20031009123337784PDT.xml
    /home/SCOTT/purchaseOrders/2003/Oct/VJONES-20031009123337814PDT.xml
    /home/SCOTT/purchaseOrders/2003/Oct/WSMITH-20031009123337924PDT.xml
    /home/SCOTT/purchaseOrders/2003/Sep/AWALSH-20030909123337483PDT.xml
    /home/SCOTT/purchaseOrders/2003/Sep/DAUSTIN-20030909123337423PDT.xml
    /home/SCOTT/purchaseOrders/2003/Sep/DAUSTIN-20030909123337553PDT.xml
    /home/SCOTT/purchaseOrders/2003/Sep/JCHEN-20030909123337443PDT.xml
    /home/SCOTT/purchaseOrders/2003/Sep/SKING-20030909123337383PDT.xml
    /home/SCOTT/purchaseOrders/2003/Sep/SKING-20030909123337503PDT.xml
    /home/SCOTT/purchaseOrders/2003/Sep/SMCCAIN-20030909123337403PDT.xml
    /home/SCOTT/purchaseOrders/2003/Sep/TFOX-20030909123337463PDT.xml
    /home/SCOTT/purchaseOrders/2003/Sep/TFOX-20030909123337563PDT.xml
    /home/SCOTT/purchaseOrders/2003/Sep/VJONES-20030909123337363PDT.xml
    /home/SCOTT/purchaseOrders/2003/Sep/VJONES-20030909123337583PDT.xml
    139 rows selected.
    Elapsed: 00:00:00.25
    SQL> truncate table PURCHASEORDER
      2  /
    Table truncated.
    Elapsed: 00:00:00.25
    SQL> select ANY_PATH
      2    from RESOURCE_VIEW, USER_XML_SCHEMAS
      3   where existsNode
      4         (
      5            res,
      6            '/Resource[SchOID="' || SCHEMA_ID || '" and ElNum="' ||
      7            extractValue
      8            (
      9              schema,
    10              '/xsd:schema/xsd:element[@name="PurchaseOrder"]/@xdb:propNumber',
    11              'xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xdb="http://xmlns.oracle.com/xdb"'
    12            )
    13            || '"]'
    14         )  = 1
    15     and SCHEMA_URL = 'http://localhost:80/home/SCOTT/poSource/xsd/purchaseOrder.xsd'
    16  /
    /home/SCOTT/purchaseOrders/2003/Apr/AMCEWEN-20030409123336200304.xml
    /home/SCOTT/purchaseOrders/2003/Apr/EABEL-20030409123336200304.xml
    /home/SCOTT/purchaseOrders/2003/Apr/PTUCKER-20030409120030491PDT.xml
    /home/SCOTT/purchaseOrders/2003/Apr/PTUCKER-20030409123336200304.xml
    /home/SCOTT/purchaseOrders/2003/Apr/SBELL-20030409120030431PDT.xml
    /home/SCOTT/purchaseOrders/2003/Apr/SBELL-20030409123336200304.xml
    /home/SCOTT/purchaseOrders/2003/Apr/SKING-200304091233363200304.xml
    /home/SCOTT/purchaseOrders/2003/Apr/SMCCAIN-20030409120030441PDT.xml
    /home/SCOTT/purchaseOrders/2003/Apr/SMCCAIN-20030409120030451PDT.xml
    /home/SCOTT/purchaseOrders/2003/Apr/SMCCAIN-20030409123336151PDT.xml
    /home/SCOTT/purchaseOrders/2003/Apr/VJONES-20030409120030401PDT.xml
    /home/SCOTT/purchaseOrders/2003/Apr/VJONES-20030409123336301PDT.xml
    /home/SCOTT/purchaseOrders/2003/AsianExamples/BEVERETT-2003110912343601PDT.xml
    /home/SCOTT/purchaseOrders/2003/AsianExamples/BEVERETT-2003112302343802PDT.xml
    /home/SCOTT/purchaseOrders/2003/AsianExamples/CDAVIES-2003100809243618PDT.xml
    /home/SCOTT/purchaseOrders/2003/AsianExamples/CDAVIES-2003120809668273PDT.xml
    /home/SCOTT/purchaseOrders/2003/AsianExamples/ChineseMovieTitles.xml
    /home/SCOTT/purchaseOrders/2003/AsianExamples/WTAYLOR-2003082311908574PDT.xml
    /home/SCOTT/purchaseOrders/2003/Aug/AWALSH-20030809123337203PDT.xml
    /home/SCOTT/purchaseOrders/2003/Aug/AWALSH-20030809123337303PDT.xml
    /home/SCOTT/purchaseOrders/2003/Aug/CJOHNSON-20030809123337283PDT.xml
    /home/SCOTT/purchaseOrders/2003/Aug/DAUSTIN-20030809123337103PDT.xml
    /home/SCOTT/purchaseOrders/2003/Aug/JCHEN-20030809123337123PDT.xml
    /home/SCOTT/purchaseOrders/2003/Aug/JCHEN-20030809123337223PDT.xml
    /home/SCOTT/purchaseOrders/2003/Aug/LSMITH-20030809123337323PDT.xml
    /home/SCOTT/purchaseOrders/2003/Aug/SBELL-20030809123337353PDT.xml
    /home/SCOTT/purchaseOrders/2003/Aug/SKING-20030809123337153PDT.xml
    /home/SCOTT/purchaseOrders/2003/Aug/SMCCAIN-20030809123337173PDT.xml
    /home/SCOTT/purchaseOrders/2003/Aug/TFOX-20030809123337243PDT.xml
    /home/SCOTT/purchaseOrders/2003/Dec/AMCEWEN-20031209123338445PDT.xml
    /home/SCOTT/purchaseOrders/2003/Dec/CJOHNSON-20031209123338595PDT.xml
    /home/SCOTT/purchaseOrders/2003/Dec/DAUSTIN-20031209123338645PDT.xml
    /home/SCOTT/purchaseOrders/2003/Dec/EABEL-20031209123338324PDT.xml
    /home/SCOTT/purchaseOrders/2003/Dec/JCHEN-20031209123338475PDT.xml
    /home/SCOTT/purchaseOrders/2003/Dec/LSMITH-20031209123338535PDT.xml
    /home/SCOTT/purchaseOrders/2003/Dec/PTUCKER-20031209123338565PDT.xml
    /home/SCOTT/purchaseOrders/2003/Dec/SBELL-20031209123338304PDT.xml
    /home/SCOTT/purchaseOrders/2003/Dec/SBELL-20031209123338505PDT.xml
    /home/SCOTT/purchaseOrders/2003/Dec/TFOX-20031209123338354PDT.xml
    /home/SCOTT/purchaseOrders/2003/Dec/VJONES-20031209123338374PDT.xml
    /home/SCOTT/purchaseOrders/2003/Feb/AMCEWEN-20030209123335600PDT.xml
    /home/SCOTT/purchaseOrders/2003/Feb/AMCEWEN-20030209123335701PDT.xml
    /home/SCOTT/purchaseOrders/2003/Feb/DAUSTIN-20030209123335811PDT.xml
    /home/SCOTT/purchaseOrders/2003/Feb/EABEL-20030209123335791PDT.xml
    /home/SCOTT/purchaseOrders/2003/Feb/PTUCKER-20030209123335721PDT.xml
    /home/SCOTT/purchaseOrders/2003/Feb/PTUCKER-20030209123335821PDT.xml
    /home/SCOTT/purchaseOrders/2003/Feb/SBELL-20030209123335771PDT.xml
    /home/SCOTT/purchaseOrders/2003/Feb/SMCCAIN-20030209123335681PDT.xml
    /home/SCOTT/purchaseOrders/2003/Feb/WSMITH-20030209123335650PDT.xml
    /home/SCOTT/purchaseOrders/2003/Feb/WSMITH-20030209123335741PDT.xml
    /home/SCOTT/purchaseOrders/2003/Feb/WSMITH-20030209123335751PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jan/AMCEWEN-20030109123335370PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jan/AWALSH-2003010912333570PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jan/CJOHNSON-20030109123335170PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jan/LSMITH-20030109123335500PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jan/PTUCKER-20030109123335430PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jan/SBELL-20030109123335280PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jan/SKING-20030109123335560PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jan/SMCCAIN-20030109123335470PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jan/TFOX-20030109123335520PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jan/VJONES-20030109123335350PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jan/WSMITH-20030109123335450PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jul/AMCEWEN-20030709123336902PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jul/CJOHNSON-2003070912333783PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jul/DAUSTIN-2003070912333702PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jul/DAUSTIN-2003070912333742PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jul/LSMITH-2003070912333722PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jul/SBELL-2003070912333763PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jul/SKING-20030709123336952PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jul/SMCCAIN-20030709123336972PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jul/TFOX-20030709123336872PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jul/TFOX-20030709123336912PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jul/VJONES-20030709123336932PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jun/AMCEWEN-20030609123336762PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jun/AWALSH-20030609123336642PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jun/CJOHNSON-20030609123336712PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jun/LSMITH-20030609123336852PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jun/SKING-20030609123336622PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jun/SKING-20030609123336822PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jun/SMCCAIN-20030609123336842PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jun/TFOX-20030609123336582PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jun/TFOX-20030609123336782PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jun/VJONES-20030609123336602PDT.xml
    /home/SCOTT/purchaseOrders/2003/Jun/VJONES-20030609123336802PDT.xml
    /home/SCOTT/purchaseOrders/2003/Mar/AWALSH-20030309123335871PDT.xml
    /home/SCOTT/purchaseOrders/2003/Mar/AWALSH-20030309123335911PDT.xml
    /home/SCOTT/purchaseOrders/2003/Mar/AWALSH-20030309123336101PDT.xml
    /home/SCOTT/purchaseOrders/2003/Mar/CJOHNSON-20030309123335851PDT.xml
    /home/SCOTT/purchaseOrders/2003/Mar/DAUSTIN-20030309123335931PDT.xml
    /home/SCOTT/purchaseOrders/2003/Mar/JCHEN-20030309123335961PDT.xml
    /home/SCOTT/purchaseOrders/2003/Mar/LSMITH-2003030912333661PDT.xml
    /home/SCOTT/purchaseOrders/2003/Mar/SBELL-2003030912333601PDT.xml
    /home/SCOTT/purchaseOrders/2003/Mar/SKING-20030309123336131PDT.xml
    /home/SCOTT/purchaseOrders/2003/Mar/TFOX-2003030912333681PDT.xml
    /home/SCOTT/purchaseOrders/2003/Mar/VJONES-20030309123335971PDT.xml
    /home/SCOTT/purchaseOrders/2003/May/CJOHNSON-20030509123336482PDT.xml
    /home/SCOTT/purchaseOrders/2003/May/EABEL-20030509123336382PDT.xml
    /home/SCOTT/purchaseOrders/2003/May/JCHEN-20030509123336462PDT.xml
    /home/SCOTT/purchaseOrders/2003/May/LSMITH-20030509123336562PDT.xml
    /home/SCOTT/purchaseOrders/2003/May/PTUCKER-20030509123336452PDT.xml
    /home/SCOTT/purchaseOrders/2003/May/SBELL-20030509123336362PDT.xml
    /home/SCOTT/purchaseOrders/2003/May/SBELL-20030509123336532PDT.xml
    /home/SCOTT/purchaseOrders/2003/May/SKING-20030509123336392PDT.xml
    /home/SCOTT/purchaseOrders/2003/May/SMCCAIN-20030509123336512PDT.xml
    /home/SCOTT/purchaseOrders/2003/May/VJONES-20030509123336502PDT.xml
    /home/SCOTT/purchaseOrders/2003/May/WSMITH-20030509123336412PDT.xml
    /home/SCOTT/purchaseOrders/2003/Nov/AWALSH-20031109123337954PDT.xml
    /home/SCOTT/purchaseOrders/2003/Nov/AWALSH-2003110912333844PDT.xml
    /home/SCOTT/purchaseOrders/2003/Nov/CJOHNSON-20031109123338124PDT.xml
    /home/SCOTT/purchaseOrders/2003/Nov/CJOHNSON-2003110912333824PDT.xml
    /home/SCOTT/purchaseOrders/2003/Nov/LSMITH-20031109123338234PDT.xml
    /home/SCOTT/purchaseOrders/2003/Nov/SBELL-20031109123338204PDT.xml
    /home/SCOTT/purchaseOrders/2003/Nov/SKING-20031109123337974PDT.xml
    /home/SCOTT/purchaseOrders/2003/Nov/SKING-20031109123338294PDT.xml
    /home/SCOTT/purchaseOrders/2003/Nov/SMCCAIN-2003110912333894PDT.xml
    /home/SCOTT/purchaseOrders/2003/Nov/TFOX-20031109123337994PDT.xml
    /home/SCOTT/purchaseOrders/2003/Nov/WSMITH-20031109123338154PDT.xml
    /home/SCOTT/purchaseOrders/2003/Oct/AMCEWEN-20031009123337874PDT.xml
    /home/SCOTT/purchaseOrders/2003/Oct/DAUSTIN-20031009123337613PDT.xml
    /home/SCOTT/purchaseOrders/2003/Oct/JCHEN-20031009123337633PDT.xml
    /home/SCOTT/purchaseOrders/2003/Oct/JCHEN-20031009123337733PDT.xml
    /home/SCOTT/purchaseOrders/2003/Oct/JCHEN-20031009123337764PDT.xml
    /home/SCOTT/purchaseOrders/2003/Oct/SBELL-20031009123337673PDT.xml
    /home/SCOTT/purchaseOrders/2003/Oct/SKING-20031009123337703PDT.xml
    /home/SCOTT/purchaseOrders/2003/Oct/TFOX-20031009123337653PDT.xml
    /home/SCOTT/purchaseOrders/2003/Oct/TFOX-20031009123337784PDT.xml
    /home/SCOTT/purchaseOrders/2003/Oct/VJONES-20031009123337814PDT.xml
    /home/SCOTT/purchaseOrders/2003/Oct/WSMITH-20031009123337924PDT.xml
    /home/SCOTT/purchaseOrders/2003/Sep/AWALSH-20030909123337483PDT.xml
    /home/SCOTT/purchaseOrders/2003/Sep/DAUSTIN-20030909123337423PDT.xml
    /home/SCOTT/purchaseOrders/2003/Sep/DAUSTIN-20030909123337553PDT.xml
    /home/SCOTT/purchaseOrders/2003/Sep/JCHEN-20030909123337443PDT.xml
    /home/SCOTT/purchaseOrders/2003/Sep/SKING-20030909123337383PDT.xml
    /home/SCOTT/purchaseOrders/2003/Sep/SKING-20030909123337503PDT.xml
    /home/SCOTT/purchaseOrders/2003/Sep/SMCCAIN-20030909123337403PDT.xml
    /home/SCOTT/purchaseOrders/2003/Sep/TFOX-20030909123337463PDT.xml
    /home/SCOTT/purchaseOrders/2003/Sep/TFOX-20030909123337563PDT.xml
    /home/SCOTT/purchaseOrders/2003/Sep/VJONES-20030909123337363PDT.xml
    /home/SCOTT/purchaseOrders/2003/Sep/VJONES-20030909123337583PDT.xml
    139 rows selected.
    Elapsed: 00:00:00.26
    SQL> declare
      2    cursor findDocs is
      3    select ANY_PATH
      4      from RESOURCE_VIEW, USER_XML_SCHEMAS
      5     where existsNode
      6           (
      7             res,
      8             '/Resource[SchOID="' || SCHEMA_ID || '" and ElNum="' ||
      9             extractValue
    10             (
    11               schema,
    12               '/xsd:schema/xsd:element[@name="PurchaseOrder"]/@xdb:propNumber',
    13               'xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xdb="http://xmlns.oracle.com/xdb"'
    14             )
    15             || '"]'
    16           )  = 1
    17       and SCHEMA_URL = 'http://localhost:80/home/SCOTT/poSource/xsd/purchaseOrder.xsd';
    18  begin
    19    for d in findDocs loop
    20      dbms_xdb.deleteResource(d.ANY_PATH,4);
    21    end loop;
    22  end;
    23  /
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:01.15
    SQL>
    SQL>
    SQL>1. Disable the Hierarchy. This will prevent truncate from attempting to delete the resource before deleting the content of the table
    2. Truncate the table
    3. Delete all resources associated with the table..

  • How are they populated

    Hi Experts!
    Whats is the way to find out how a controller's Context is populated.
    There is a Model Node with many Model Attributes. But I dont know
    how these are filled.
    Because there are no arrows to see. How can be this context node
    being filled ?
    regards
    sas

    When you are going to import the model-apply template-service controller.This service controller is a code that is going to execute the model object.As soon as the model object is executed the returned values will be populated on to the Controller Context.
    You can see the code of the Service controller in the Component Controller implementation. If any doubts then reply.

  • How variables are populated in APD

    Hello Experts,
    Currently my requirement is to pull data from virtual Infoprovider and keep it in flat file.
    For this we are using APD option and is working fine
    But in order to pull data from this infoprovider we need to give mandata values in filers like System status: 000 and APO Plant: XYZ
    Now our requirement is we want to keep a variable on Plant selection. And every time this APD is executed it plant selection shoudle be calculated by doing a look up in /SAPAPO//MATKEY and pull all the active plants and then upload the data to Flat file for all those plant from /SAPAPO/MATKEY.
    we do have a variable called 9_MATNR showing in filteres selection Tab on APO Plant Infoobject.
    But now I need to understand how do I populate this variable 9_MATNR  with updated values from  /SAPAPO/MATKEY every time APD is executed.
    Regards,
    Sachin Dehey,

    Hi All.
    The solution will be create the query on virtual provider and create a variable on Infoobject 9amatnr.
    Create a customer exit variable on this infobject and populate it VIA i_step = 2 then include this query in APD.
    Its done now automaticaaly the variable will be populated dynamically when ever query is called.
    Regards,
    Sachin Dehey

  • How data is populated in EUL5_QPP_STATS table?

    there are  few reports that are run monthly and the records of executed Discoverer reports were stored in EUL5_QPP_STATS table. But the information stopped getting recorded in this table from april 2014. Can anyone tell me how data is inserted in this table and whats is the cause of this issue.

    Hi
    Can anyone Please answer to my question

  • Looking for How-to self-populating bean

    Can someone give me a web address or something? I am trying to create a javabean to hold a list of agency names and ids from an Oracle table. I then want to use the bean to fill a select on a web page.
    How do I create a "bunch" of beans to represent all the table records?
    I want to replace the following with a reference to javabean that contains all the database records for a listing of state agencies.
    EnterInfo.jsp
    <code>
    <b>Department or Agency:</b>
    <br>
    <select size="4" multiple="false" name="depName">
    <%
    ResultSet rsetAgen = connection.executeQuery("SELECT AGENCY_NUMID,AGENCY_NAME FROM state_agencies ORDER BY agency_name");
    while(rsetAgen.next())
    String ag_num = rsetAgen.getString("AGENCY_NUMID");
    String ag_name = rsetAgen.getString("agency_name");
    %>
    <option <%= fltReqInfo.getDepName().equals(ag_num) ? "selected":"" %> value="<%= ag_num%>"><%= ag_name%></option>
    <%
    } //end of while loop
    rsetAgen.close();
    %>
    </select>
    </code>
    AgencyInfo.java
    <code>
    package us.wy.state.dot.aero.beans;
    public class AgencyInfo
    // Properties
    private int agency_numid;
    private String agency_charid;
    private String agency_name;
    public AgencyInfo()
    this.agency_numid = 0;
    this.agency_charid = "";
    this.agency_name = "";
    public int getAgency_numid()
    return this.agency_numid;
    public void setAgency_numid(int newAgency_numid)
    this.agency_numid = newAgency_numid;
    public String getAgency_charid()
    return this.agency_charid;
    public void setAgency_charid(String newAgency_charid)
    this.agency_charid = newAgency_charid;
    public String getAgency_name()
    return this.agency_name;
    public void setAgency_name(String newAgency_name)
    this.agency_name = newAgency_name;
    </code>

    You've already done most, if not all of the work.
    Compile AgencyInfo.java into a class file and then you can use it as a bean, as in...
    <jsp:useBean name="AgencyList" class="us.wyo.state.dot.aero.beans.AgencyInfo" />Then in that AgencyInfo.java file, create an "initialize" method and move your SQL stuff into it. Back in your JSP file, you'll have something like...
    <select name="desiredAgency" >
    <option><%= AgencyList.getAgencyName( 15 ) %></option>
    </select>...the getAgencyName method first checks to see if a resultSet exists. If so, it simply returns the name for agency 15. If the resultSet doesn't exist, then go ahead and call initialize( ) which will execute the SQL squery and get all of the agency names and values.
    There are ways to make your code more efficient, but at this point, I'm emphasizing that you probably already know how to implement something like this - you just need to move some of your code around.

  • How data is populated to catA and catB

    Hi  Guys
    If i modify any data in bcc and deploy the project
    then how my store app will pick that modified data because  it is pointing to different data source
    please clarify my doubt
    and also why we have four different data sources instead of one
    why some repositories are pointing production datasource and some are pointing to switching data source
    please clarify my doubt

    There are two data sources live datasource and offline datasource.
    Ideally If site points to live datsource, BCC should point to offline datasource.
    This can be maintained with initialDataSourceName property in SwitchingDataSource component
    Switching datasource deployment:
    1. say u have modified ProductCatalog repository and u have two datasouces swticha and switchb.live site server points to switcha and BCC server points to switchb.
    2. When project is deployed, It first gets deployed to offline datasouce(switchb)
    3. On successful deployment, datasources are switched, ie. site points to switchb(latest database changes reflected on site) and bcc point to switcha.
    4. Now project is deployed to switcha, inorder to synchronize both datasouces.
    Steps to create switching datasource:
    1. Create first datasouce
    SwitchingDataSourceA.properties
    $class=atg.nucleus.JNDIReference
    JNDIName=java:/ATGSwitchingDS_A
    2. Create second datasouce
    SwitchingDataSourceB.properties
    $class=atg.nucleus.JNDIReference
    JNDIName=java:/ATGSwitchingDS_B
    3. Create switching datasocue compoent
    SwitchingDataSource.properties
    $class=atg.service.jdbc.SwitchingDataSource
    dataSources=\
        DataSourceA=/atg/dynamo/service/jdbc/SwitchingDataSourceA,\
        DataSourceB=/atg/dynamo/service/jdbc/SwitchingDataSourceB
    initialDataSourceName=DataSourceA
    4. refer this this switching datasouce componet in ur repository.
    dataSources=/atg/dynamo/service/jdbc/SwitchingDataSource
    Steps to create non-switching datasource:
    1. Create first datasouce
    JTDataSource.properties
    $class=atg.nucleus.JNDIReference
    JNDIName=java:/ATGCoreDS_A
    2. refer this this non-switching datasouce componet in ur repository.
    dataSources=/atg/dynamo/service/jdbc/JTDataSource
    why some repositories are pointing production datasource and some are pointing to switching data source?
    For any repsository u can configure switching datasource, only catch is it should be modified with BCC, otherwise it won't make any sense to create switching datasource. u can create, but won't be used.
    say for order repository, u are not going to modify it from bcc, So it points to default non-switchable datasource(JTDatasource)
    but for catalog u can have switching datasouce as mentioned above example of deployment.So u point to switchable datasource(SwitchingDataSource).
    Also u can create any number of switching or non-switching datasources for repositories, Just be ready to manage it.say u have requirements to create separate shemaes for Order,Catalog,Core(Rest of ATG Production)
    and also why we have four different data sources instead of one
    ATG provides followings:
    1) SwitchingDataSource:-SwitchingDataSourceA, SwitchingDataSourceB
      default switching datasource for production server components.
    2) JTDataSource
      on prodction server: default datasource(non-switching) for production server components.
      on publishig server: default datasource for publishing server components.
    3) JTDataSource_production
      on prodction server: no need, If u wish, can point to same schame pointed by JTDataSource.
      on publishig server: default datasource for production server components.
    4) JTDataSource_staging
      on publishig server: default datasource for staging server components.
    Along with these ATG also provides FakeXADataSource and DirectJTDataSource.
      Which one u were referring?

  • How to disable populator items from showin on Preview Configuration screen.

    We are using Populators in our Product Model. Items under the populators are set as 'Orderable'. Hence as per Oracle's standard functionality those items are populated on the 'preview configuration / summary' screen.
    Is there a way /setup by which we can turn this off (i.e. make them stop from comming onto the 'Preview summary screen')

    yes you can!
    go to settings> notifications then choose from there

  • ERecruitment- Process tabs - How is this populated?

    I have declined a candidate (declined status) from the Application process and was hoping that the "Decline Process" process tab would be updated with '1'.
    This is not happening. Any ideas why?

    have to look at status

  • How the "Java System Properties" are populated in "About this Page"

    Hi Gurus,
    We are facing a very intriguing issue and want to find out the way self service pages shows information in tab "Java System Properties" on clicking "About This Page" link ( bottom left corner of any EBSO selef service page)
    Thanks,
    Ajay

    Hi Peddi,
    Thanks but let me give some more details on our problem.
    It is a EBSO environment.
    On Private MT we do not have any proxies set in context file or any other configuration files.
    <proxyhost oa_var="s_proxyhost"> </proxyhost>
    <proxyport oa_var="s_proxyport"> </proxyport>
    The standard all standard OAF pages ( no customization or personalization ) show via link I mentioned before show these variables set
    http.proxyHost
    http.proxyPort
    http.proxySet
    Any idea how these get populated ?
    Are these values fetched dynamically via some DB table?
    Thanks,
    Ajay

  • How is table TTXOB populated?

    I am missing a text object from the standard system IFLOT.  how is this populated ?  thru config ?

    Hi,
    Check the view V_TTXOBI in SM30.
    In my system I am able to see IFLOT text object..
    THanks
    Naren

Maybe you are looking for