Variable Bind Data in Oracle 9i

Hi everyone,
I am trying to write a query in Oracle 9i which can resolve bound data names and values, but can't seem to find a way to do so. I have a 10g query which works great, but uses v$sql_bind_capture to find the variable names.
10g query:
SELECT
     sql_fulltext,
     a.parsing_schema_name,
     b.name,
     b.value_string
FROM
     V$SQL a LEFT OUTER JOIN
     v$sql_bind_capture b ON
          a.SQL_ID = b.SQL_ID
WHERE
     ...The problem is that 10g added v$sql_bind_capture to it's functionality, but I cannot find anything in 9i which might serve the same purpose. Is there a table or view which might yield similar information? I cannot use a Trace or FGA for this, so I am looking for other options.
Thanks!

What you're tryng to do is not easy. I tried the same thing a couple of years ago on 9i with v$ bind tables (I think V$BIND_METADATA and v$BIND_DATA. I don't have access to a 9i database right now) without being able to get any useful results. The problems I encountered then were that the views I tried to use in 9i only held about 64 rows (?), I had trouble joining the rows anywhere useful, and the rows returned by the view were generally not what I was looking for.
You can get bind information from trace files if necessary, but that's inconvienint.
If you figure out how to do this please post it here. I hope someone else can post a more positive response :)

Similar Messages

  • How to declare a bind variable with 'date' data type in command prompt?

    how to declare a bind variable with 'date' data type in command prompt?
    sql>variable q date;
    when i execute it show list of datatypes

    Hi,
    As Lokanath said, there are no DATE bind variables.
    You can use a VARCHAR2 bind variable, and convert it to a DATE in your SQL statment.
    If you're using SQL*Plus, consider a substitution variable. It won't be as efficient as a bind variable, but it will be as convenient.
    For example:
    DEFINE  first_entrry_date = "DATE '2010-06-20''
    SELECT   ...
    WHERE   entry_date >= &first_entry_date
    {code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Where are the data-binding frameworks for Oracle Objects?

    Oracle offers a few different options for data-binding frameworks to Oracle relational data. Amongst them they include TopLink and the Oracle Application Development Framework (ADF)in JDeveloper 10G. J2EE also offers the EJB standard framework. Both of the Oracle data-binding frameworks appear to work well with relational data but fail miserably when one tries to work with a fully fledged Oracle Object-Relational schema. I have spend much time with ADF but have not been able to create successful bindings to Objects with nested complex objects (such as a 2-level nested object) or objects containing nested tables. TopLink will not even touch Object tables.
    Have other people being more successful with this? Do we have to implement our own data binding framework? Does Oracle plan on improving these frameworks to fully support Oracle Objects?

    TopLink Runtime supports both fully fledged OX mappings and nested complex objects. These mappings can be setup in the code.
    TopLink ADF design time however currently does not have support for OX mappings.
    Hope this helps,

  • Where are the Oracle Data Binding Frameworks for Oracle Objects?

    Oracle offers a few different options for data-binding frameworks to Oracle relational data. Amongst them they include TopLink and the Oracle Application Development Framework (ADF)in JDeveloper 10G. J2EE also offers the EJB standard framework. Both of the Oracle data-binding frameworks appear to work well with relational data but fail misserably when one tries to work with a fully fledged Oracle Object-Relational schema. I have spend much time with ADF but have not been able to create successful bindings to Objects with nested complex objects (such as a 2-level nested object) or objects containing nested tables. TopLink will not even touch Object tables.
    Have other people being more successful with this? Do we have to implement our own data binding framework? Does Oracle plan on improving these frameworks to fully support Oracle Objects?

    TopLink Runtime supports both fully fledged OX mappings and nested complex objects. These mappings can be setup in the code.
    TopLink ADF design time however currently does not have support for OX mappings.
    Hope this helps,

  • Oracle: Expanded non LONG bind data supplied after actual LONG or LOB colum

    I am getting this error message when I try to insert clob into oracle table.
    ORA-24816: Expanded non LONG bind data supplied after actual LONG or LOB column. This error message is kind of misleading. For this error message, I should reorder the list of columns which means that the column with LONG RAW should come at end. So I reordered the list to make the LONG RAW column come at end. But I was still getting this error message. So I found out that data that needs to be inserted into the clob is causing this error.
    Here is my code for inserting clob.
                        byte[] bytes1 = .....
                        statement.setAsciiStream(index, new ByteArrayInputStream(bytes1), bytes1.length);I don't know what is wrong with this code. I have been using this for a while and now it is throwing an exception.
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:331)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:288)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:743)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:213)
         at oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:952)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1160)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3285)
         at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3390)
    I am using JDK5 and Oracle 10g driver.
    Please help me.

    I have these columns,
    ROW_DESC - Char
    Table_id - Char
    Blob_desc - Char
    Blob1 - Blob
    LOB_DATE - Date
    CLOB1_DESC - Char
    CLOB1 - Clob
    CHAR_25_Col - Char
    VBIN_400_Col - Long Raw.
    But what I noticed is that the one causing the problem is not actually Long Raw column. "CLOB1" is the one causing a problem. The database is configured as unicode (AL32UTF8). When I tested it against another database with non-unicode, it works fine with same table description. So somehow it is unable to bind unicode large clob data.
    I ran into this problem while I was inserting data from the source table to the target table.
    Here is how I read from the resultset.
                        InputStream inputStream = resultSet.getAsciiStream(index + 1);
                        if (inputStream == null) {
                            return null;
                        ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
                        byte[] buffer = new byte[1024];
                        int length;
                        do {
                            length = inputStream.read(buffer);
                            if (length > 0) {
                                outputStream.write(buffer, 0, length);
                        } while (length > 0);
                        byte[] resultBytes = outputStream.toByteArray();Here is how I bind parameters.
                        statement.setAsciiStream(index, new ByteArrayInputStream(resultBytes), resultBytes.length);If i use "((OraclePreparedStatement) statement).setStringForClob", then it works, but it will impact the performance, because I need to convert the clob to string.
    is there any way to do it without converting to string object?
    Thanks.

  • How to insert data into Oracle db from MySQL db through PHP?

    Hi,
    I want to insert my MySQL data into Oracle database through PHP.
    I can access Mysql database using mysql_conect() & Oracle database using oci_connect() through PHP.
    Now How can I insert my data which is in MySQL into Oracle table. Both table structure are exactly same.
    So I can use
    insert into Oracle_Table(Oracle_columns....) values(Select * from MySQL_Table);
    But again problem is I can't open both connections at the same time.
    So has anyone done this before or anyone having any other idea..
    Plz guide me...

    You can do it if you setup a ODBC Gateway between MYSQL and Oracle DB. Then you can directly read from MySQL table using DB links and insert into Oracle table in one single SQL Statement.
    Otherwise you need to fetch the data from MySQL Into variables in your PHP Program and then insert into Oracle after binding the variables to the insert statement for Oracle. Hope that is clear enough.
    Regards
    Prakash

  • Getting error to bind data to dropdown list

    hay dear,
    i bind data to a dropdown list, everything gonna ok but when i run the project the web page containing the bellow error message. could anyone help me
    Exception Handler
    Description: An unhandled exception occurred during the execution of the web application. Please review the following stack trace for more information regarding the error.
    Exception Details: java.sql.SQLException
    Error in allocating a connection. Cause: Class name is wrong or classpath is not set for : oracle.jdbc.pool.OracleDataSource
    Possible Source of Error:
    Class Name: com.sun.gjc.spi.base.DataSource
    File Name: DataSource.java
    Method Name: getConnection
    Line Number: 112
    Source not available. Information regarding the location of the exception can be identified using the exception stack trace below.
    Exception Details: java.lang.RuntimeException
    java.sql.SQLException: Error in allocating a connection. Cause: Class name is wrong or classpath is not set for : oracle.jdbc.pool.OracleDataSource
    Possible Source of Error:
    Class Name: com.sun.data.provider.impl.CachedRowSetDataProvider
    File Name: CachedRowSetDataProvider.java
    Method Name: setCursorRow
    Line Number: 343
    Source not available. Information regarding the location of the exception can be identified using the exception stack trace below.
    Exception Details: com.sun.rave.web.ui.appbase.ApplicationException
    java.sql.SQLException: Error in allocating a connection. Cause: Class name is wrong or classpath is not set for : oracle.jdbc.pool.OracleDataSource
    Possible Source of Error:
    Class Name: com.sun.rave.web.ui.appbase.faces.ViewHandlerImpl
    File Name: ViewHandlerImpl.java
    Method Name: cleanup
    Line Number: 603
    Source not available. Information regarding the location of the exception can be identified using the exception stack trace below.

    I'm not a guru, but I would say : your jdbc isn't working. Make sure that it's functioning properly.
    The errormesages suggest that the application can not find the datasource.
    Best Regards,
    Martijn

  • Passing Session variable of DATE data type to opaque view filter

    Hi Everyone,
    Can you guys please help me in passing session variable of DATE data type in RPD's physical layer 'opaque view' filter for Oracle database
    I tried following syntax, syntax wise I didn't got getting any error, but at the same time this opaque view is not fetching any records as well. my session variable is "END_DATE" and its value is 1998/12/31:00:00:00(as shown in RPD session windows, datatype is DATETIME)
    SELECT AMOUNT_SOLD, CHANNEL_ID, CUST_ID, PROD_ID, PROMO_ID, QUANTITY_SOLD, TIME_ID FROM SH.SALES
    WHERE TIME_ID =TO_DATE( 'VALUEOF(NQ_SESSION.END_DATE)','MM/DD/YYYY')
    SELECT AMOUNT_SOLD, CHANNEL_ID, CUST_ID, PROD_ID, PROMO_ID, QUANTITY_SOLD, TIME_ID FROM SH.SALES
    WHERE TIME_ID = TO_DATE( 'VALUEOF(NQ_SESSION."END_DATE")','MM/DD/YYYY')
    SELECT AMOUNT_SOLD, CHANNEL_ID, CUST_ID, PROD_ID, PROMO_ID, QUANTITY_SOLD, TIME_ID FROM SH.SALES
    WHERE TRUNC(TIME_ID) = TO_DATE( 'VALUEOF(NQ_SESSION."END_DATE")','MM/DD/YYYY')
    In past, I was able to pass a session variable into a opaque view filter using DATEOF function, but that was in DB2.
    I appreciate your time and help

    Finally, I got right format. here it is
    to_date(substr('valueof(NQ_SESSION.END_DATE)',1,10), 'yyyy-mm-dd')
    and here is the source from where I got this information
    Using OBIEE Session Variables in Select Tables in the Physical Layer

  • Sending PO data from Oracle APPS 11i to another Oracle APPS 11i

    I am trying to send the XML message (Purchase Order Data) from the Oracle APPS 11i to the other Oracle APPS 11i using XML Gateway and the AQ Adaptors in both outbound and inbound. I have created the Receive Activity for Outbound AQ Adaptor and the Invoke Activity for the Inbound AQ Adaptor and the Assign Activity in the middle to assign the variables for both Receive and Invoke Acvities.
    I have created a partner link using AQ adapter to Dequeuing the data from Oracle APPS 11i that generated by XML Gateway and also have created a partner link using AQ adapter to Enqueuing the data.
    When I run, it gives me an error on the Enqueuing side with the followings:
    [2006/04/04 10:03:57] New instance of BPEL process "XML2APPS" initiated (# "18").
    <process>
    <sequence>
    AQ_Receive
    [2006/04/04 10:03:57] Received "Receive_Dequeue_InputVariable" call from partner "PO_IN_QUEUE" More...
    <Receive_Dequeue_InputVariable>
    <part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="ReceiveDocument">
    <PROCESS_PO_007>
    <CNTROLAREA>
    <BSR>
    <VERB value="PROCESS">PROCESS</VERB>
    <NOUN value="PO">PO</NOUN>
    <REVISION value="007">007</REVISION>
    </BSR>
    <SENDER>
    <LOGICALID>ORACLE</LOGICALID>
    <COMPONENT>PURCHASING</COMPONENT>
    <TASK>POISSUE</TASK>
    <REFERENCEID>VIS.US.ORACLE.COM:oracle.apps.po.event.xmlpo:32570-148852</REFERENCEID>
    <CONFIRMATION>0</CONFIRMATION>
    <LANGUAGE>US</LANGUAGE>
    <CODEPAGE>UTF8</CODEPAGE>
    <AUTHID>APPS</AUTHID>
    </SENDER>
    <DATETIME qualifier="CREATION" type="T" index="1">
    <YEAR>2006</YEAR>
    <MONTH>04</MONTH>
    <DAY>03</DAY>
    <HOUR>13</HOUR>
    <MINUTE>02</MINUTE>
    <SECOND>29</SECOND>
    <SUBSECOND>0000</SUBSECOND>
    <TIMEZONE>+0000</TIMEZONE>
    </DATETIME>
    </CNTROLAREA>
    <DATAAREA>
    <PROCESS_PO>
    <POORDERHDR>
    <DATETIME qualifier="DOCUMENT" type="T" index="1">
    <YEAR>2006</YEAR>
    <MONTH>04</MONTH>
    <DAY>03</DAY>
    <HOUR>13</HOUR>
    <MINUTE>00</MINUTE>
    <SECOND>45</SECOND>
    <SUBSECOND>0000</SUBSECOND>
    <TIMEZONE>+0000</TIMEZONE>
    </DATETIME>
    <OPERAMT qualifier="EXTENDED" type="T">
    <VALUE>267</VALUE>
    <NUMOFDEC>2</NUMOFDEC>
    <SIGN>+</SIGN>
    <CURRENCY>USD</CURRENCY>
    <UOMVALUE>1</UOMVALUE>
    <UOMNUMDEC>0</UOMNUMDEC>
    <UOM />
    </OPERAMT>
    <POID>4484</POID>
    <POTYPE>STANDARD</POTYPE>
    <ACKREQUEST>N</ACKREQUEST>
    <CONTRACTB />
    <CONTRACTS />
    <DESCRIPTN />
    <PORELEASE />
    <USERAREA>
    <DATETIME qualifier="ACTSTART" type="T" index="1">
    <YEAR />
    <MONTH />
    <DAY />
    <HOUR />
    <MINUTE />
    <SECOND />
    <SUBSECOND />
    <TIMEZONE />
    </DATETIME>
    <DATETIME qualifier="ACTEND" type="T" index="1">
    <YEAR />
    <MONTH />
    <DAY />
    <HOUR />
    <MINUTE />
    <SECOND />
    <SUBSECOND />
    <TIMEZONE />
    </DATETIME>
    <FOB>
    <DESCRIPTN>Vendor's responsibility ceases upon transfer to carrier</DESCRIPTN>
    <TERMID>Origin</TERMID>
    </FOB>
    <TANDC />
    <FTTERM>
    <DESCRIPTN>No Freight Charge</DESCRIPTN>
    <TERMID>NONE</TERMID>
    </FTTERM>
    <EXCHRATE />
    <DATETIME qualifier="EXCHRATEDATE">
    <YEAR />
    <MONTH />
    <DAY />
    <HOUR />
    <MINUTE />
    <SECOND />
    <SUBSECOND />
    <TIMEZONE />
    </DATETIME>
    <DATETIME qualifier="APPREQ" type="T" index="1">
    <YEAR />
    <MONTH />
    <DAY />
    <HOUR />
    <MINUTE />
    <SECOND />
    <SUBSECOND />
    <TIMEZONE />
    </DATETIME>
    <CONFIRM>N</CONFIRM>
    <SHIPPINGCONTROL />
    <DFFPOHEADER>
    <ATTRIBUTE1 />
    <ATTRIBUTE2 />
    <ATTRIBUTE3 />
    <ATTRIBUTE4 />
    <ATTRIBUTE5 />
    <ATTRIBUTE6 />
    <ATTRIBUTE7 />
    <ATTRIBUTE8 />
    <ATTRIBUTE9 />
    <ATTRIBUTE10 />
    <ATTRIBUTE11 />
    <ATTRIBUTE12 />
    <ATTRIBUTE13 />
    <ATTRIBUTE14 />
    <ATTRIBUTE15 />
    <ATTRIBUTE16 />
    </DFFPOHEADER>
    <PCARDHDR>
    <MEMBERNAME />
    <PCARDNUM />
    <DATETIME qualifier="EXPIRATION">
    <YEAR />
    <MONTH />
    <DAY />
    <HOUR />
    <MINUTE />
    <SECOND />
    <SUBSECOND />
    <TIMEZONE />
    </DATETIME>
    <PCARDBRAND />
    </PCARDHDR>
    </USERAREA>
    <PARTNER>
    <NAME index="1">Nate OD88/VIS2 Supplier TEST</NAME>
    <ONETIME>0</ONETIME>
    <PARTNRID>20027</PARTNRID>
    <PARTNRTYPE>Supplier</PARTNRTYPE>
    <CURRENCY>USD</CURRENCY>
    <DUNSNUMBER />
    <PARTNRIDX>1923</PARTNRIDX>
    <TAXID />
    <TERMID />
    <USERAREA>
    <DFFVENDOR>
    <ATTRIBUTE1 />
    <ATTRIBUTE2 />
    <ATTRIBUTE3 />
    <ATTRIBUTE4 />
    <ATTRIBUTE5 />
    <ATTRIBUTE6 />
    <ATTRIBUTE7 />
    <ATTRIBUTE8 />
    <ATTRIBUTE9 />
    <ATTRIBUTE10 />
    <ATTRIBUTE11 />
    <ATTRIBUTE12 />
    <ATTRIBUTE13 />
    <ATTRIBUTE14 />
    <ATTRIBUTE15 />
    <ATTRIBUTE16 />
    </DFFVENDOR>
    <CUSTOMERNUM />
    </USERAREA>
    <ADDRESS>
    <ADDRLINE index="1">VIS2 address</ADDRLINE>
    <ADDRLINE index="2" />
    <ADDRLINE index="3" />
    <ADDRTYPE />
    <CITY>Reston</CITY>
    <COUNTRY>US</COUNTRY>
    <COUNTY />
    <DESCRIPTN>VIS2/OD88 SITE</DESCRIPTN>
    <FAX index="1" />
    <POSTALCODE />
    <REGION />
    <STATEPROVN>VA</STATEPROVN>
    <TAXJRSDCTN />
    <TELEPHONE index="1" />
    <TELEPHONE index="2" />
    <TELEPHONE index="3" />
    <URL />
    <USERAREA>
    <DFFVENDORSITE>
    <ATTRIBUTE1 />
    <ATTRIBUTE2 />
    <ATTRIBUTE3 />
    <ATTRIBUTE4 />
    <ATTRIBUTE5 />
    <ATTRIBUTE6 />
    <ATTRIBUTE7 />
    <ATTRIBUTE8 />
    <ATTRIBUTE9 />
    <ATTRIBUTE10 />
    <ATTRIBUTE11 />
    <ATTRIBUTE12 />
    <ATTRIBUTE13 />
    <ATTRIBUTE14 />
    <ATTRIBUTE15 />
    <ATTRIBUTE16 />
    </DFFVENDORSITE>
    </USERAREA>
    </ADDRESS>
    <CONTACT>
    <NAME index="1" />
    <EMAIL />
    <FAX index="1" />
    <TELEPHONE index="1">-</TELEPHONE>
    </CONTACT>
    </PARTNER>
    <PARTNER>
    <NAME index="1">Vision Operations</NAME>
    <ONETIME>0</ONETIME>
    <PARTNRID>204</PARTNRID>
    <PARTNRTYPE>SoldTo</PARTNRTYPE>
    <CURRENCY>USD</CURRENCY>
    <DUNSNUMBER />
    <PARTNRIDX />
    <PAYMETHOD />
    <TAXID />
    <TERMID />
    <USERAREA />
    <ADDRESS>
    <ADDRLINE index="1">222 Oracle Way</ADDRLINE>
    <ADDRLINE index="2" />
    <ADDRLINE index="3" />
    <ADDRTYPE />
    <CITY>Reston</CITY>
    <COUNTRY>US</COUNTRY>
    <COUNTY />
    <DESCRIPTN />
    <FAX index="1" />
    <POSTALCODE>20190</POSTALCODE>
    <REGION />
    <STATEPROVN>VA</STATEPROVN>
    <TAXJRSDCTN />
    <TELEPHONE index="1" />
    <TELEPHONE index="2" />
    <TELEPHONE index="3" />
    <URL />
    <USERAREA />
    </ADDRESS>
    <CONTACT>
    <NAME index="1">Ross, Nate</NAME>
    <CONTCTTYPE />
    <DESCRIPTN />
    <EMAIL />
    <FAX index="1" />
    <TELEPHONE index="1" />
    <USERAREA />
    </CONTACT>
    </PARTNER>
    <PARTNER>
    <NAME index="1">Vision Operations</NAME>
    <ONETIME>0</ONETIME>
    <PARTNRID>204</PARTNRID>
    <PARTNRTYPE>BillTo</PARTNRTYPE>
    <CURRENCY />
    <DUNSNUMBER />
    <PARTNRIDX />
    <PAYMETHOD />
    <TERMID />
    <USERAREA />
    <ADDRESS>
    <ADDRLINE index="1">222 Oracle Way</ADDRLINE>
    <ADDRLINE index="2" />
    <ADDRLINE index="3" />
    <ADDRTYPE />
    <CITY>Reston</CITY>
    <COUNTRY>US</COUNTRY>
    <COUNTY />
    <DESCRIPTN />
    <FAX index="1" />
    <POSTALCODE>20190</POSTALCODE>
    <REGION />
    <STATEPROVN>VA</STATEPROVN>
    <TAXJRSDCTN />
    <TELEPHONE index="1" />
    <TELEPHONE index="2" />
    <TELEPHONE index="3" />
    <URL />
    <USERAREA />
    </ADDRESS>
    </PARTNER>
    <PARTNER>
    <NAME index="1">UPS</NAME>
    <ONETIME>0</ONETIME>
    <PARTNRID />
    <PARTNRTYPE>Carrier</PARTNRTYPE>
    <PARTNRIDX>UPS</PARTNRIDX>
    </PARTNER>
    <POTERM>
    <DESCRIPTN>Scheduled for payment 45 days from the invoice date (invoice terms date = system date, goods received date, invoice date or invoice received date). Invoice terms date can default from supplier header, site, PO, system default, etc.</DESCRIPTN>
    <TERMID>45 Net (terms date + 45)</TERMID>
    <DAYSNUM />
    <QUANTITY qualifier="PERCENT">
    <VALUE />
    <NUMOFDEC />
    <SIGN />
    <UOM />
    </QUANTITY>
    <USERAREA />
    </POTERM>
    </POORDERHDR>
    <POORDERLIN>
    <QUANTITY qualifier="ORDERED">
    <VALUE>3</VALUE>
    <NUMOFDEC />
    <SIGN>+</SIGN>
    <UOM>QT</UOM>
    </QUANTITY>
    <OPERAMT qualifier="UNIT" type="T">
    <VALUE>89</VALUE>
    <NUMOFDEC>2</NUMOFDEC>
    <SIGN>+</SIGN>
    <CURRENCY>USD</CURRENCY>
    <UOMVALUE>1</UOMVALUE>
    <UOMNUMDEC>0</UOMNUMDEC>
    <UOM>QT</UOM>
    </OPERAMT>
    <POLINENUM>1</POLINENUM>
    <HAZRDMATL />
    <ITEMRV>0</ITEMRV>
    <ITEMRVX />
    <POLNSTATUS />
    <DESCRIPTN>10-40W Car / Truck Motor Oil</DESCRIPTN>
    <ITEM>10-40W Oil</ITEM>
    <ITEMX />
    <USERAREA>
    <REQUESTOR />
    <CATEGORYID>MISC.MISC</CATEGORYID>
    <CONTRACTNUM />
    <CONTRACTPONUM />
    <CONTRACTPOLINENUM />
    <VENDORQUOTENUM />
    <CONFIGID />
    <LISTPRICE>.89</LISTPRICE>
    <MARKETPRICE />
    <PRICENOTTOEXCEED />
    <NEGPRICE>N</NEGPRICE>
    <TAXABLE>N</TAXABLE>
    <TXNREASONCODE />
    <TYPE1099 />
    <LINEORDERTYPE>Goods</LINEORDERTYPE>
    <HAZRDUNNUM />
    <HAZRDUNDESC />
    <DFFLINE>
    <ATTRIBUTE1 />
    <ATTRIBUTE2 />
    <ATTRIBUTE3 />
    <ATTRIBUTE4 />
    <ATTRIBUTE5 />
    <ATTRIBUTE6 />
    <ATTRIBUTE7 />
    <ATTRIBUTE8 />
    <ATTRIBUTE9 />
    <ATTRIBUTE10 />
    <ATTRIBUTE11 />
    <ATTRIBUTE12 />
    <ATTRIBUTE13 />
    <ATTRIBUTE14 />
    <ATTRIBUTE15 />
    <ATTRIBUTE16 />
    </DFFLINE>
    <DFFITEM>
    <ATTRIBUTE1 />
    <ATTRIBUTE2 />
    <ATTRIBUTE3 />
    <ATTRIBUTE4 />
    <ATTRIBUTE5 />
    <ATTRIBUTE6 />
    <ATTRIBUTE7 />
    <ATTRIBUTE8 />
    <ATTRIBUTE9 />
    <ATTRIBUTE10>Y</ATTRIBUTE10>
    <ATTRIBUTE11 />
    <ATTRIBUTE12 />
    <ATTRIBUTE13 />
    <ATTRIBUTE14 />
    <ATTRIBUTE15 />
    <ATTRIBUTE16 />
    </DFFITEM>
    <KFFITEM>
    <ATTRIBUTE1>MISC</ATTRIBUTE1>
    <ATTRIBUTE2>MISC</ATTRIBUTE2>
    <ATTRIBUTE3 />
    <ATTRIBUTE4 />
    <ATTRIBUTE5 />
    <ATTRIBUTE6 />
    <ATTRIBUTE7 />
    <ATTRIBUTE8 />
    <ATTRIBUTE9 />
    <ATTRIBUTE10 />
    <ATTRIBUTE11 />
    <ATTRIBUTE12 />
    <ATTRIBUTE13 />
    <ATTRIBUTE14 />
    <ATTRIBUTE15 />
    <ATTRIBUTE16 />
    <ATTRIBUTE17 />
    <ATTRIBUTE18 />
    <ATTRIBUTE19 />
    <ATTRIBUTE20 />
    </KFFITEM>
    <GLOBALCONTRACT />
    <GLOBALCONTRACTLIN />
    <JOBTITLE />
    <AMOUNT qualifier="TOTAL" type="T">
    <VALUE />
    <NUMOFDEC />
    <SIGN />
    <CURRENCY />
    <DRCR>C</DRCR>
    </AMOUNT>
    <CONTRACTORFIRSTNAME />
    <CONTRACTORLASTNAME />
    <DATETIME qualifier="ACTSTART" type="T" index="1">
    <YEAR />
    <MONTH />
    <DAY />
    <HOUR />
    <MINUTE />
    <SECOND />
    <SUBSECOND />
    <TIMEZONE />
    </DATETIME>
    <DATETIME qualifier="ACTEND" type="T" index="1">
    <YEAR />
    <MONTH />
    <DAY />
    <HOUR />
    <MINUTE />
    <SECOND />
    <SUBSECOND />
    <TIMEZONE />
    </DATETIME>
    </USERAREA>
    <POLINESCHD>
    <DATETIME qualifier="NEEDDELV" type="T" index="1">
    <YEAR />
    <MONTH />
    <DAY />
    <HOUR />
    <MINUTE />
    <SECOND />
    <SUBSECOND />
    <TIMEZONE />
    </DATETIME>
    <QUANTITY qualifier="ORDERED">
    <VALUE>3</VALUE>
    <NUMOFDEC />
    <SIGN>+</SIGN>
    <UOM>QT</UOM>
    </QUANTITY>
    <DESCRIPTN />
    <PSCLINENUM>1</PSCLINENUM>
    <USERAREA>
    <DATETIME qualifier="PROMSHIP">
    <YEAR>2006</YEAR>
    <MONTH>04</MONTH>
    <DAY>03</DAY>
    <HOUR>00</HOUR>
    <MINUTE>00</MINUTE>
    <SECOND>00</SECOND>
    <SUBSECOND>0000</SUBSECOND>
    <TIMEZONE>+0000</TIMEZONE>
    </DATETIME>
    <DATETIME qualifier="APPROVAL">
    <YEAR>2006</YEAR>
    <MONTH>04</MONTH>
    <DAY>08</DAY>
    <HOUR>00</HOUR>
    <MINUTE>00</MINUTE>
    <SECOND>00</SECOND>
    <SUBSECOND>0000</SUBSECOND>
    <TIMEZONE>+0000</TIMEZONE>
    </DATETIME>
    <OPERAMT qualifier="UNIT" type="T">
    <VALUE>.89</VALUE>
    <NUMOFDEC />
    <SIGN />
    <CURRENCY>USD</CURRENCY>
    <UOMVALUE />
    <UOMNUMDEC />
    <UOM />
    </OPERAMT>
    <PRICEOVRRD />
    <TAXABLE>N</TAXABLE>
    <TAXCODE />
    <PARTNER>
    <NAME index="1">Vision Operations</NAME>
    <ONETIME>0</ONETIME>
    <PARTNRID>204</PARTNRID>
    <PARTNRTYPE>ShipTo</PARTNRTYPE>
    <CURRENCY>USD</CURRENCY>
    <DUNSNUMBER />
    <PARTNRIDX />
    <PAYMETHOD />
    <TERMID />
    <USERAREA />
    <ADDRESS>
    <ADDRLINE index="1" />
    <ADDRLINE index="2" />
    <ADDRLINE index="3" />
    <ADDRTYPE />
    <CITY />
    <COUNTRY />
    <COUNTY />
    <DESCRIPTN />
    <FAX index="1" />
    <POSTALCODE />
    <REGION />
    <STATEPROVN />
    <TAXJRSDCTN />
    <TELEPHONE index="1" />
    <TELEPHONE index="2" />
    <TELEPHONE index="3" />
    <URL />
    <USERAREA />
    </ADDRESS>
    <CONTACT>
    <NAME index="1" />
    <CONTCTTYPE />
    <EMAIL />
    <FAX index="1" />
    <TELEPHONE index="1" />
    </CONTACT>
    </PARTNER>
    <PARTNER>
    <NAME index="1" />
    <ONETIME />
    <PARTNRID />
    <PARTNRTYPE />
    <PARTNRIDX />
    <USERAREA />
    <ADDRESS>
    <ADDRLINE index="1" />
    <ADDRLINE index="2" />
    <ADDRTYPE />
    </ADDRESS>
    <CONTACT>
    <NAME index="1" />
    <CONTCTTYPE />
    <EMAIL />
    <FAX index="1" />
    <TELEPHONE index="1" />
    </CONTACT>
    </PARTNER>
    <DROPSHIPDETAILS>
    <DROPSHIPMENT />
    <DROPSHIPCUSTNAME />
    <SHIPINSTR />
    <PACKINSTR />
    <SHIPMETHOD />
    <CUSTOMERPONUM />
    <CUSTOMERLINENUM />
    <CUSTOMERSHIPNUM />
    <CUSTOMERDESC />
    </DROPSHIPDETAILS>
    <CONSIGNEDINV>N</CONSIGNEDINV>
    <AMOUNT qualifier="TOTAL" type="T">
    <VALUE />
    <NUMOFDEC />
    <SIGN />
    <CURRENCY />
    <DRCR>C</DRCR>
    </AMOUNT>
    </USERAREA>
    </POLINESCHD>
    </POORDERLIN>
    </PROCESS_PO>
    </DATAAREA>
    </PROCESS_PO_007>
    </part>
    </Receive_Dequeue_InputVariable>
    Assign_Input2Output
    [2006/04/04 10:03:57] Updated variable "Invoke_Enqueue_InputVariable" More...
    <Invoke_Enqueue_InputVariable>
    <part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="ReceiveDocument">
    <ReceiveDocument xmlns="http://xmlns.oracle.com/apps/fnd/XMLGateway">
    <CNTROLAREA xmlns="">
    <BSR>
    <VERB value="PROCESS">PROCESS</VERB>
    <NOUN value="PO">PO</NOUN>
    <REVISION value="007">007</REVISION>
    </BSR>
    <SENDER>
    <LOGICALID>ORACLE</LOGICALID>
    <COMPONENT>PURCHASING</COMPONENT>
    <TASK>POISSUE</TASK>
    <REFERENCEID>VIS.US.ORACLE.COM:oracle.apps.po.event.xmlpo:32570-148852</REFERENCEID>
    <CONFIRMATION>0</CONFIRMATION>
    <LANGUAGE>US</LANGUAGE>
    <CODEPAGE>UTF8</CODEPAGE>
    <AUTHID>APPS</AUTHID>
    </SENDER>
    <DATETIME qualifier="CREATION" type="T" index="1">
    <YEAR>2006</YEAR>
    <MONTH>04</MONTH>
    <DAY>03</DAY>
    <HOUR>13</HOUR>
    <MINUTE>02</MINUTE>
    <SECOND>29</SECOND>
    <SUBSECOND>0000</SUBSECOND>
    <TIMEZONE>+0000</TIMEZONE>
    </DATETIME>
    </CNTROLAREA>
    <DATAAREA xmlns="">
    <PROCESS_PO>
    <POORDERHDR>
    <DATETIME qualifier="DOCUMENT" type="T" index="1">
    <YEAR>2006</YEAR>
    <MONTH>04</MONTH>
    <DAY>03</DAY>
    <HOUR>13</HOUR>
    <MINUTE>00</MINUTE>
    <SECOND>45</SECOND>
    <SUBSECOND>0000</SUBSECOND>
    <TIMEZONE>+0000</TIMEZONE>
    </DATETIME>
    <OPERAMT qualifier="EXTENDED" type="T">
    <VALUE>267</VALUE>
    <NUMOFDEC>2</NUMOFDEC>
    <SIGN>+</SIGN>
    <CURRENCY>USD</CURRENCY>
    <UOMVALUE>1</UOMVALUE>
    <UOMNUMDEC>0</UOMNUMDEC>
    <UOM />
    </OPERAMT>
    <POID>4484</POID>
    <POTYPE>STANDARD</POTYPE>
    <ACKREQUEST>N</ACKREQUEST>
    <CONTRACTB />
    <CONTRACTS />
    <DESCRIPTN />
    <PORELEASE />
    <USERAREA>
    <DATETIME qualifier="ACTSTART" type="T" index="1">
    <YEAR />
    <MONTH />
    <DAY />
    <HOUR />
    <MINUTE />
    <SECOND />
    <SUBSECOND />
    <TIMEZONE />
    </DATETIME>
    <DATETIME qualifier="ACTEND" type="T" index="1">
    <YEAR />
    <MONTH />
    <DAY />
    <HOUR />
    <MINUTE />
    <SECOND />
    <SUBSECOND />
    <TIMEZONE />
    </DATETIME>
    <FOB>
    <DESCRIPTN>Vendor's responsibility ceases upon transfer to carrier</DESCRIPTN>
    <TERMID>Origin</TERMID>
    </FOB>
    <TANDC />
    <FTTERM>
    <DESCRIPTN>No Freight Charge</DESCRIPTN>
    <TERMID>NONE</TERMID>
    </FTTERM>
    <EXCHRATE />
    <DATETIME qualifier="EXCHRATEDATE">
    <YEAR />
    <MONTH />
    <DAY />
    <HOUR />
    <MINUTE />
    <SECOND />
    <SUBSECOND />
    <TIMEZONE />
    </DATETIME>
    <DATETIME qualifier="APPREQ" type="T" index="1">
    <YEAR />
    <MONTH />
    <DAY />
    <HOUR />
    <MINUTE />
    <SECOND />
    <SUBSECOND />
    <TIMEZONE />
    </DATETIME>
    <CONFIRM>N</CONFIRM>
    <SHIPPINGCONTROL />
    <DFFPOHEADER>
    <ATTRIBUTE1 />
    <ATTRIBUTE2 />
    <ATTRIBUTE3 />
    <ATTRIBUTE4 />
    <ATTRIBUTE5 />
    <ATTRIBUTE6 />
    <ATTRIBUTE7 />
    <ATTRIBUTE8 />
    <ATTRIBUTE9 />
    <ATTRIBUTE10 />
    <ATTRIBUTE11 />
    <ATTRIBUTE12 />
    <ATTRIBUTE13 />
    <ATTRIBUTE14 />
    <ATTRIBUTE15 />
    <ATTRIBUTE16 />
    </DFFPOHEADER>
    <PCARDHDR>
    <MEMBERNAME />
    <PCARDNUM />
    <DATETIME qualifier="EXPIRATION">
    <YEAR />
    <MONTH />
    <DAY />
    <HOUR />
    <MINUTE />
    <SECOND />
    <SUBSECOND />
    <TIMEZONE />
    </DATETIME>
    <PCARDBRAND />
    </PCARDHDR>
    </USERAREA>
    <PARTNER>
    <NAME index="1">Nate OD88/VIS2 Supplier TEST</NAME>
    <ONETIME>0</ONETIME>
    <PARTNRID>20027</PARTNRID>
    <PARTNRTYPE>Supplier</PARTNRTYPE>
    <CURRENCY>USD</CURRENCY>
    <DUNSNUMBER />
    <PARTNRIDX>1923</PARTNRIDX>
    <TAXID />
    <TERMID />
    <USERAREA>
    <DFFVENDOR>
    <ATTRIBUTE1 />
    <ATTRIBUTE2 />
    <ATTRIBUTE3 />
    <ATTRIBUTE4 />
    <ATTRIBUTE5 />
    <ATTRIBUTE6 />
    <ATTRIBUTE7 />
    <ATTRIBUTE8 />
    <ATTRIBUTE9 />
    <ATTRIBUTE10 />
    <ATTRIBUTE11 />
    <ATTRIBUTE12 />
    <ATTRIBUTE13 />
    <ATTRIBUTE14 />
    <ATTRIBUTE15 />
    <ATTRIBUTE16 />
    </DFFVENDOR>
    <CUSTOMERNUM />
    </USERAREA>
    <ADDRESS>
    <ADDRLINE index="1">VIS2 address</ADDRLINE>
    <ADDRLINE index="2" />
    <ADDRLINE index="3" />
    <ADDRTYPE />
    <CITY>Reston</CITY>
    <COUNTRY>US</COUNTRY>
    <COUNTY />
    <DESCRIPTN>VIS2/OD88 SITE</DESCRIPTN>
    <FAX index="1" />
    <POSTALCODE />
    <REGION />
    <STATEPROVN>VA</STATEPROVN>
    <TAXJRSDCTN />
    <TELEPHONE index="1" />
    <TELEPHONE index="2" />
    <TELEPHONE index="3" />
    <URL />
    <USERAREA>
    <DFFVENDORSITE>
    <ATTRIBUTE1 />
    <ATTRIBUTE2 />
    <ATTRIBUTE3 />
    <ATTRIBUTE4 />
    <ATTRIBUTE5 />
    <ATTRIBUTE6 />
    <ATTRIBUTE7 />
    <ATTRIBUTE8 />
    <ATTRIBUTE9 />
    <ATTRIBUTE10 />
    <ATTRIBUTE11 />
    <ATTRIBUTE12 />
    <ATTRIBUTE13 />
    <ATTRIBUTE14 />
    <ATTRIBUTE15 />
    <ATTRIBUTE16 />
    </DFFVENDORSITE>
    </USERAREA>
    </ADDRESS>
    <CONTACT>
    <NAME index="1" />
    <EMAIL />
    <FAX index="1" />
    <TELEPHONE index="1">-</TELEPHONE>
    </CONTACT>
    </PARTNER>
    <PARTNER>
    <NAME index="1">Vision Operations</NAME>
    <ONETIME>0</ONETIME>
    <PARTNRID>204</PARTNRID>
    <PARTNRTYPE>SoldTo</PARTNRTYPE>
    <CURRENCY>USD</CURRENCY>
    <DUNSNUMBER />
    <PARTNRIDX />
    <PAYMETHOD />
    <TAXID />
    <TERMID />
    <USERAREA />
    <ADDRESS>
    <ADDRLINE index="1">222 Oracle Way</ADDRLINE>
    <ADDRLINE index="2" />
    <ADDRLINE index="3" />
    <ADDRTYPE />
    <CITY>Reston</CITY>
    <COUNTRY>US</COUNTRY>
    <COUNTY />
    <DESCRIPTN />
    <FAX index="1" />
    <POSTALCODE>20190</POSTALCODE>
    <REGION />
    <STATEPROVN>VA</STATEPROVN>
    <TAXJRSDCTN />
    <TELEPHONE index="1" />
    <TELEPHONE index="2" />
    <TELEPHONE index="3" />
    <URL />
    <USERAREA />
    </ADDRESS>
    <CONTACT>
    <NAME index="1">Ross, Nate</NAME>
    <CONTCTTYPE />
    <DESCRIPTN />
    <EMAIL />
    <FAX index="1" />
    <TELEPHONE index="1" />
    <USERAREA />
    </CONTACT>
    </PARTNER>
    <PARTNER>
    <NAME index="1">Vision Operations</NAME>
    <ONETIME>0</ONETIME>
    <PARTNRID>204</PARTNRID>
    <PARTNRTYPE>BillTo</PARTNRTYPE>
    <CURRENCY />
    <DUNSNUMBER />
    <PARTNRIDX />
    <PAYMETHOD />
    <TERMID />
    <USERAREA />
    <ADDRESS>
    <ADDRLINE index="1">222 Oracle Way</ADDRLINE>
    <ADDRLINE index="2" />
    <ADDRLINE index="3" />
    <ADDRTYPE />
    <CITY>Reston</CITY>
    <COUNTRY>US</COUNTRY>
    <COUNTY />
    <DESCRIPTN />
    <FAX index="1" />
    <POSTALCODE>20190</POSTALCODE>
    <REGION />
    <STATEPROVN>VA</STATEPROVN>
    <TAXJRSDCTN />
    <TELEPHONE index="1" />
    <TELEPHONE index="2" />
    <TELEPHONE index="3" />
    <URL />
    <USERAREA />
    </ADDRESS>
    </PARTNER>
    <PARTNER>
    <NAME index="1">UPS</NAME>
    <ONETIME>0</ONETIME>
    <PARTNRID />
    <PARTNRTYPE>Carrier</PARTNRTYPE>
    <PARTNRIDX>UPS</PARTNRIDX>
    </PARTNER>
    <POTERM>
    <DESCRIPTN>Scheduled for payment 45 days from the invoice date (invoice terms date = system date, goods received date, invoice date or invoice received date). Invoice terms date can default from supplier header, site, PO, system default, etc.</DESCRIPTN>
    <TERMID>45 Net (terms date + 45)</TERMID>
    <DAYSNUM />
    <QUANTITY qualifier="PERCENT">
    <VALUE />
    <NUMOFDEC />
    <SIGN />
    <UOM />
    </QUANTITY>
    <USERAREA />
    </POTERM>
    </POORDERHDR>
    <POORDERLIN>
    <QUANTITY qualifier="ORDERED">
    <VALUE>3</VALUE>
    <NUMOFDEC />
    <SIGN>+</SIGN>
    <UOM>QT</UOM>
    </QUANTITY>
    <OPERAMT qualifier="UNIT" type="T">
    <VALUE>89</VALUE>
    <NUMOFDEC>2</NUMOFDEC>
    <SIGN>+</SIGN>
    <CURRENCY>USD</CURRENCY>
    <UOMVALUE>1</UOMVALUE>
    <UOMNUMDEC>0</UOMNUMDEC>
    <UOM>QT</UOM>
    </OPERAMT>
    <POLINENUM>1</POLINENUM>
    <HAZRDMATL />
    <ITEMRV>0</ITEMRV>
    <ITEMRVX />
    <POLNSTATUS />
    <DESCRIPTN>10-40W Car / Truck Motor Oil</DESCRIPTN>
    <ITEM>10-40W Oil</ITEM>
    <ITEMX />
    <USERAREA>
    <REQUESTOR />
    <CATEGORYID>MISC.MISC</CATEGORYID>
    <CONTRACTNUM />
    <CONTRACTPONUM />
    <CONTRACTPOLINENUM />
    <VENDORQUOTENUM />
    <CONFIGID />
    <LISTPRICE>.89</LISTPRICE>
    <MARKETPRICE />
    <PRICENOTTOEXCEED />
    <NEGPRICE>N</NEGPRICE>
    <TAXABLE>N</TAXABLE>
    <TXNREASONCODE />
    <TYPE1099 />
    <LINEORDERTYPE>Goods</LINEORDERTYPE>
    <HAZRDUNNUM />
    <HAZRDUNDESC />
    <DFFLINE>
    <ATTRIBUTE1 />
    <ATTRIBUTE2 />
    <ATTRIBUTE3 />
    <ATTRIBUTE4 />
    <ATTRIBUTE5 />
    <ATTRIBUTE6 />
    <ATTRIBUTE7 />
    <ATTRIBUTE8 />
    <ATTRIBUTE9 />
    <ATTRIBUTE10 />
    <ATTRIBUTE11 />
    <ATTRIBUTE12 />
    <ATTRIBUTE13 />
    <ATTRIBUTE14 />
    <ATTRIBUTE15 />
    <ATTRIBUTE16 />
    </DFFLINE>
    <DFFITEM>
    <ATTRIBUTE1 />
    <ATTRIBUTE2 />
    <ATTRIBUTE3 />
    <ATTRIBUTE4 />
    <ATTRIBUTE5 />
    <ATTRIBUTE6 />
    <ATTRIBUTE7 />
    <ATTRIBUTE8 />
    <ATTRIBUTE9 />
    <ATTRIBUTE10>Y</ATTRIBUTE10>
    <ATTRIBUTE11 />
    <ATTRIBUTE12 />
    <ATTRIBUTE13 />
    <ATTRIBUTE14 />
    <ATTRIBUTE15 />
    <ATTRIBUTE16 />
    </DFFITEM>
    <KFFITEM>
    <ATTRIBUTE1>MISC</ATTRIBUTE1>
    <ATTRIBUTE2>MISC</ATTRIBUTE2>
    <ATTRIBUTE3 />
    <ATTRIBUTE4 />
    <ATTRIBUTE5 />
    <ATTRIBUTE6 />
    <ATTRIBUTE7 />
    <ATTRIBUTE8 />
    <ATTRIBUTE9 />
    <ATTRIBUTE10 />
    <ATTRIBUTE11 />
    <ATTRIBUTE12 />
    <ATTRIBUTE13 />
    <ATTRIBUTE14 />
    <ATTRIBUTE15 />
    <ATTRIBUTE16 />
    <ATTRIBUTE17 />
    <ATTRIBUTE18 />
    <ATTRIBUTE19 />
    <ATTRIBUTE20 />
    </KFFITEM>
    <GLOBALCONTRACT />
    <GLOBALCONTRACTLIN />
    <JOBTITLE />
    <AMOUNT qualifier="TOTAL" type="T">
    <VALUE />
    <NUMOFDEC />
    <SIGN />
    <CURRENCY />
    <DRCR>C</DRCR>
    </AMOUNT>
    <CONTRACTORFIRSTNAME />
    <CONTRACTORLASTNAME />
    <DATETIME qualifier="ACTSTART" type="T" index="1">
    <YEAR />
    <MONTH />
    <DAY />
    <HOUR />
    <MINUTE />
    <SECOND />
    <SUBSECOND />
    <TIMEZONE />
    </DATETIME>
    <DATETIME qualifier="ACTEND" type="T" index="1">
    <YEAR />
    <MONTH />
    <DAY />
    <HOUR />
    <MINUTE />
    <SECOND />
    <SUBSECOND />
    <TIMEZONE />
    </DATETIME>
    </USERAREA>
    <POLINESCHD>
    <DATETIME qualifier="NEEDDELV" type="T" index="1">
    <YEAR />
    <MONTH />
    <DAY />
    <HOUR />
    <MINUTE />
    <SECOND />
    <SUBSECOND />
    <TIMEZONE />
    </DATETIME>
    <QUANTITY qualifier="ORDERED">
    <VALUE>3</VALUE>
    <NUMOFDEC />
    <SIGN>+</SIGN>
    <UOM>QT</UOM>
    </QUANTITY>
    <DESCRIPTN />
    <PSCLINENUM>1</PSCLINENUM>
    <USERAREA>
    <DATETIME qualifier="PROMSHIP">
    <YEAR>2006</YEAR>
    <MONTH>04</MONTH>
    <DAY>03</DAY>
    <HOUR>00</HOUR>
    <MINUTE>00</MINUTE>
    <SECOND>00</SECOND>
    <SUBSECOND>0000</SUBSECOND>
    <TIMEZONE>+0000</TIMEZONE>
    </DATETIME>
    <DATETIME qualifier="APPROVAL">
    <YEAR>2006</YEAR>
    <MONTH>04</MONTH>
    <DAY>08</DAY>
    <HOUR>00</HOUR>
    <MINUTE>00</MINUTE>
    <SECOND>00</SECOND>
    <SUBSECOND>0000</SUBSECOND>
    <TIMEZONE>+0000</TIMEZONE>
    </DATETIME>
    <OPERAMT qualifier="UNIT" type="T">
    <VALUE>.89</VALUE>
    <NUMOFDEC />
    <SIGN />
    <CURRENCY>USD</CURRENCY>
    <UOMVALUE />
    <UOMNUMDEC />
    <UOM />
    </OPERAMT>
    <PRICEOVRRD />
    <TAXABLE>N</TAXABLE>
    <TAXCODE />
    <PARTNER>
    <NAME index="1">Vision Operations</NAME>
    <ONETIME>0</ONETIME>
    <PARTNRID>204</PARTNRID>
    <PARTNRTYPE>ShipTo</PARTNRTYPE>
    <CURRENCY>USD</CURRENCY>
    <DUNSNUMBER />
    <PARTNRIDX />
    <PAYMETHOD />
    <TERMID />
    <USERAREA />
    <ADDRESS>
    <ADDRLINE index="1" />
    <ADDRLINE index="2" />
    <ADDRLINE index="3" />
    <ADDRTYPE />
    <CITY />
    <COUNTRY />
    <COUNTY />
    <DESCRIPTN />
    <FAX index="1" />
    <POSTALCODE />
    <REGION />
    <STATEPROVN />
    <TAXJRSDCTN />
    <TELEPHONE index="1" />
    <TELEPHONE index="2" />
    <TELEPHONE index="3" />
    <URL />
    <USERAREA />
    </ADDRESS>
    <CONTACT>
    <NAME index="1" />
    <CONTCTTYPE />
    <EMAIL />
    <FAX index="1" />
    <TELEPHONE index="1" />
    </CONTACT>
    </PARTNER>
    <PARTNER>
    <NAME index="1" />
    <ONETIME />
    <PARTNRID />
    <PARTNRTYPE />
    <PARTNRIDX />
    <USERAREA />
    <ADDRESS>
    <ADDRLINE index="1" />
    <ADDRLINE index="2" />
    <ADDRTYPE />
    </ADDRESS>
    <CONTACT>
    <NAME index="1" />
    <CONTCTTYPE />
    <EMAIL />
    <FAX index="1" />
    <TELEPHONE index="1" />
    </CONTACT>
    </PARTNER>
    <DROPSHIPDETAILS>
    <DROPSHIPMENT />
    <DROPSHIPCUSTNAME />
    <SHIPINSTR />
    <PACKINSTR />
    <SHIPMETHOD />
    <CUSTOMERPONUM />
    <CUSTOMERLINENUM />
    <CUSTOMERSHIPNUM />
    <CUSTOMERDESC />
    </DROPSHIPDETAILS>
    <CONSIGNEDINV>N</CONSIGNEDINV>
    <AMOUNT qualifier="TOTAL" type="T">
    <VALUE />
    <NUMOFDEC />
    <SIGN />
    <CURRENCY />
    <DRCR>C</DRCR>
    </AMOUNT>
    </USERAREA>
    </POLINESCHD>
    </POORDERLIN>
    </PROCESS_PO>
    </DATAAREA>
    </ReceiveDocument>
    </part>
    </Invoke_Enqueue_InputVariable>
    Invoke_QUEUE (faulted)
    [2006/04/04 10:03:59] "{http://schemas.oracle.com/bpel/extension}remoteFault" has been thrown. less
    <remoteFault xmlns="http://schemas.oracle.com/bpel/extension">
    <part name="code">
    <code>null</code>
    </part>
    <part name="summary">
    <summary>file:/d01/oraAS/integration/orabpel/domains/default/tmp/.bpel_XML2APPS_1.0.jar/CreatePO.wsdl [ Enqueue_ptt::Enqueue(ReceiveDocument) ] - WSIF JCA Execute of operation 'Enqueue' failed due to: Enqueue failed. Enqueue failed. ; nested exception is: ORABPEL-11947 Enqueue failed. Enqueue failed. Please examine the log file to determine the problem.</summary>
    </part>
    <part name="detail">
    <detail>null</detail>
    </part>
    </remoteFault>
    WS-T Complete
    WS-T Close
    WS-T Fault
    WS-T Cancel
    WS-T Compensate
    </sequence>
    [2006/04/04 10:03:59] "BPELFault" has not been caught by a catch block.
    [2006/04/04 10:03:59] BPEL process instance "18" cancelled
    WS-T Complete
    WS-T Close
    WS-T Fault
    WS-T Cancel
    WS-T Compensate
    </process>
    Does anyone know where I can get help on an error message ORABPEL-11947? I looked everywhere but no success.
    Can someone help me on this?
    Thanks in advance,
    Sook

    You have to integrate apps with BPEL using apps adapter and then from BPEL pass the message to Oracle B2B 11g -
    Oracle B2B 11g <---> Oracle BPEL 11g <--- Oracle Apps Adapter --> Oracle Apps
    As BPEL and B2B both are part of SOA suite 11g hence there is no additional cost and performance remain better.
    Preffered mode of integration would be through XML gateway.
    I could see that 856 outbound EDI map is available from Oracle but not the XML gateway map. If i have to use XML gateway then how i can create the XML gateway map.You may raise your question in apps forum -
    http://forums.oracle.com/forums/category.jspa?categoryID=108
    If you don't get any help there, raise a case with support.
    Regards,
    Anuj
    Edited by: Anuj Dwivedi on Oct 12, 2010 11:58 AM

  • Need help to upload Excel Chinese data into Oracle

    Hello
    I am very new at internationalization. We are writing an application that
    reads Chinese data from a Microsoft Excel file and writes it out into Oracle
    8i. This is what we have done:
    1. Use JDBC-ODBC driver to read the Excel data directly from .xls.
    2. Write data into oracle database.
    When we open Excel, we can view the Chinese characters. When we use SQL
    PLus, we see only ????. When we write another servlet to retrieve the data,
    it is displayed as ????. The few questions I have are:
    1. How can I verify that the Chinese data has been accurately inserted into
    the database?
    2. Do I need to set anything special (environment variables, config files
    etc) in BEA Weblogic 5.1 and Oracle 8i?
    The environment we have are:
    1. BEA Weblogic SP9 running on WIn NT.
    2. Oracle 8i running on Solaris.
    Thanks

    Make sure that the characters are correct in the app server after you get
    them out of Oracle and before you put them into the web page. This will help
    you determine if the problem is in the JDBC access to Oracle or the encoding
    into the web page. Make sure that you verify that the hex values of each
    character from the db test case are what you expect.
    Peace,
    Cameron Purdy
    Tangosol Inc.
    << Tangosol Server: How Weblogic applications are customized >>
    << Download now from http://www.tangosol.com/download.jsp >>
    "Bernard Ong" <[email protected]> wrote in message
    news:[email protected]...
    Hi Kev
    1. "It doesn't work" means that I still see ??? in the database. WHen I
    retrieve the data, it is still displayed as ??? in a browser.
    2. Codeset to use to display should be UTF-8.
    3. Charset in database server is UTF8. I did a "select * from
    database_parameters" to get this value.
    4. I copied the Chinese characters from Excel and pasted on Notepad. Icould
    see the Chinese characters with the Chinese emulator turned on. WHen Icopy
    ??? from SQL*Plus and paste it into notepad, I see ???.
    Presume:
    1. Yes, running SQL*PLUS on BEA machine.
    2. BEA machine running on WIndows 200 professional. We downloaded aChinese
    emulator. WIndows 2000 is the English version.
    Cheers
    "Kevin Lu" <[email protected]> wrote in message
    news:[email protected]...
    Hi Bernard,
    Please first clarify:-
    1) "It doesn't work" means... cannot display the chinese character as
    you
    desired?
    2) Which codeset that you want it to display, Chinese traditional big5?UTF-8,
    i would think it's still in Java/JDBC codeset.
    3) What's the charset in the database server? Get help from DBA if you
    not
    sure
    how to obtain this information.
    4) Try paste the result(select via SQL*Plus) onto Win Notepad, what's
    the
    outcome?
    Presume:
    1) you're running SQL*Plus on your BEA machine?
    2) BEA machine is running on Chinese O/S or hv NJStar installed andrunning?
    Let me know if i could be of further help.
    -Kev
    "Bernard Ong" <[email protected]> wrote:
    Thanks Kev.
    We had changed the registry in the BEA machine to
    AMERICAN_AMERICA.UTF8.
    THis was done for the Oracle registry in the BEA machine.
    Unfortunately,
    it
    still doesn't work.
    Cheers,
    Bernard
    "Kevin Lu" <[email protected]> wrote in message
    news:[email protected]...
    Hi Bernard,
    I take about the same approach as you while resolving codeset
    problem.
    So,
    first
    i make sure SQL*Plus could display my desired result before proceedto
    application(be
    it Swing, servlet, JSP console etc..). You may try set the NLS_LANGon
    your client
    machine(same machine as where you run SQL*Plus) to the SAME as
    database
    server
    character set, for instance America_American.US7ASCII. You should
    able
    to
    see
    the Chinese characters.
    Hope this help with your first question. I can't help for the restanyway.
    good luck!
    -Kev
    "Bernard Ong" <[email protected]> wrote:
    Hello
    I am very new at internationalization. We are writing an
    application
    that
    reads Chinese data from a Microsoft Excel file and writes it outinto
    Oracle
    8i. This is what we have done:
    1. Use JDBC-ODBC driver to read the Excel data directly from .xls.
    2. Write data into oracle database.
    When we open Excel, we can view the Chinese characters. When we useSQL
    PLus, we see only ????. When we write another servlet to retrievethe
    data,
    it is displayed as ????. The few questions I have are:
    1. How can I verify that the Chinese data has been accurately
    inserted
    into
    the database?
    2. Do I need to set anything special (environment variables, configfiles
    etc) in BEA Weblogic 5.1 and Oracle 8i?
    The environment we have are:
    1. BEA Weblogic SP9 running on WIn NT.
    2. Oracle 8i running on Solaris.
    Thanks

  • Insert data into oracle based on sql server data(here sql server acting as source to oracle and destination to oracle)

    Source is Oralce. Destination is SQL Server.
    Requirement - I have to fetch sql server server data (empid's) based emp table  and send this as input data to oracle to fetch and empid's are common.
    I cannot use merge or loopkup or for each as oracle have too many records.
    For example - In MS SQL - i have empid=1,2..Only these records, I have to fetch from oracle source into sql server destination. For this, I have adopted the below approaches...The major problem I face, when i build a empid's as a string, it is taking only
    4000 chars. My string lenght is 10000. How do I breakup this string lengh and send to data flow task till all broken strings length passed to DFT.
    Approach-1
    created two variables - oraquery string, empid string
    step1 - ms sql database - created sql task - declare @empid varchar(max)
    SELECT @empid=
    Stuff((SELECT ',' + empid
            FROM  
            (SELECT  DISTINCT  convert(varchar(10),empid ) empid FROM emp
             ) x
            For XML PATH ('')),1,1,'')
    select @empid =    '(' +  @empid + ')'
    select @empid
    resultset=singlerow
    resultset=resultname=0; variablename=User::empid (empid is declared as string)
    step2 - oracle database - created data flow task
    created oledb source
    I put  this statemnt in oraquery expression - "select * from dept where dept in  "
    +  @[User::empid] + "
    expression=true
    [OLE DB Source [1]] Error: SSIS Error Code DTS_E_OLEDBERROR.  An OLE DB error has occurred. Error code: 0x80040E14.
    An OLE DB record is available.  Source: "Microsoft OLE DB Provider for Oracle"  Hresult: 0x80040E14  Description: "ORA-00936: missing expression".
    Approach-2
    created three variables - oraquery string, empid  int, loop object--when I put int then it is automatically setting to 0
    step1 - ms sql database - created sql task - SELECT  DISTINCT  convert(varchar(10),empid ) empid FROM emp
    resultset=fullresult
    resultset=resultname=0; variablename=User::loop
    step2 - created a for each loop container
    for loop editor - for each ado ennumerator
    enumerator configuration - loop
    variablemapping - variable=empid;index=0
    step3 - oracle database - created data flow task (outside for each loop. If I put inside it is taking long time)
    created oledb source
    I put  this statemnt in oraquery expression - "select * from dept where dept in  "
    +  @[User::empid] + "
    expression=true
    Data inserting in a destination table but  empid=0.

    Sorry didnt understand if your step3 is outside loop how
    @[User::empid] will get values for the empids from User::loop. The iteration happens inside loop so you
    need to have a logic to form the delimited list inside using a script task or something and concatenating everything and storing to variable @[User::empid]
    . Then only it will have full value used to be used in step3 query
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Why can I not create a PHP Form Variable binding in Dreamweaver CS6?

    I'm using Dreamweaver CS6 on Windows 7.
    Currently, I'm following along with Lynda.com tutorial:
    Dreamweaver with PHP and MySQL: Ch. 6. Building Data Entry Forms |  Handling form submissions with PHP
    I'm attempting to add a form variable binding to a PHP document, but after each time I open the menu, type in my name and press OK, it does not show up in my Bindings box.
    and then POOF:
    Can anyone tell me what I'm doing wrong here? Or what I haven't done yet?
    I haven't had a problem with the entire tutorial up until this point and I couldn't find any documentation anywhere else on how to fix my problem.

    I'm using Dreamweaver CS6 on Windows 7.
    Currently, I'm following along with Lynda.com tutorial:
    Dreamweaver with PHP and MySQL: Ch. 6. Building Data Entry Forms |  Handling form submissions with PHP
    I'm attempting to add a form variable binding to a PHP document, but after each time I open the menu, type in my name and press OK, it does not show up in my Bindings box.
    and then POOF:
    Can anyone tell me what I'm doing wrong here? Or what I haven't done yet?
    I haven't had a problem with the entire tutorial up until this point and I couldn't find any documentation anywhere else on how to fix my problem.

  • I can't  cast  java.util.Date to  oracle.jbo.domain.Date

    Hi, i have a variable "pippo" type java.util.Date formatted like (dd-MM-YYYY hh:mm:ss)
    and I want insert in my Database where the field is Date type(oracle.jbo.domain.Date)
    in the same format(dd-MM-YYYY hh:mm:ss).
    I try to convert "pippo" but the result is formatted(dd-MM-YYYY hh:mm:ss).
    Thank's a lot yours time and i'm very sorry for my easy english
    Bye Luca

    Here is what i have seen that works , but does not preserve milliseconds. Does anyone have other solution? Using dateValue() looses hours, mins and seconds.
    public oracle.jbo.domain.Date toJboDate(java.util.Date pJavaDate)
    return new oracle.jbo.domain.Date(new Timestamp(pJavaDate.getTime()));
    public java.util.Date toJavaDate(oracle.jbo.domain.Date pJboDate)
    return new Date(pJboDate.timestampValue().getTime());
    Chandresh

  • Binding data to custom method in DataAction

    hi!
    I am using adf uix and struts.
    I am confronted with the following problem: I created a DataAction for calling a custom method of an ApplicationModule. How do I bind data from the DataContainer in the struts-config?
    All how-tos figure out only the binding through ${param.<paramName>}.
    Isn't it possible to address the DataContainer through ${data.<UIModelName>.<BindingName>}? My intention is to bind a column value from an uix edit form to a custom method!
    I attached an excerpt for the illustration of my problem:
    <action name="DataForm" path="/RolleZuordnen" className="oracle.adf.controller.struts.actions.DataActionMapping" type="oracle.adf.controller.struts.actions.DataAction">
    <set-property property="modelReference" value="RolleZuordnenUIModel"/>
    <set-property property="methodName" value="RolleZuordnenUIModel.addRolleToBenutzer"/>
    <set-property property="resultLocation" value="${requestScope.methodResult}"/>
    <set-property property="numParams" value="2"/>
    <set-property property="paramNames[0]" value="${data.editMitarbeiterUIXUIModel.Login}"/>
    <set-property property="paramNames[1]" value="${data.editMitarbeiterUIXUIModel.DrId}"/>
    <forward name="success" path="/editMitarbeiterUIX.do"/>
    </action>
    with regards
    roland

    Have you reviewed the ADF Binding Primer whitepaper...
    http://www.oracle.com/technology/products/jdev/collateral/papers/10g/ADFBindingPrimer/index.html
    It has a section on binding to method return values.

  • Load XML Data to Oracle Table

    I am new to AQ and XML,
    We have a situation at our project, the last DBA left us without any previous notice and no one here know AQ and XML. So now it is my duty to learn and work on this project.
    We are getting Queue with XML information (i mean data) we have to dequeue and then store that data in oracle tables.
    I tried to each and every site to get a grip of what's the basic here, but I get lost. It's more easy for me to understand a concept by going through examples rather study chapters.
    This is what I did today from this site. (http://www.oracle.com/technology/sample_code/tech/java/codesnippet/xmldb/HowToLoadLargeXML.html#PLSQLCode)
    created the potable, then loaded data in potable as per example. Now I want to load this data in a table which I created in Oracle (10.2....) table.
    CREATE OR REPLACE PROCEDURE loadpurchaseorder
    IS
    -- Declare a CLOB variable
    poxml CLOB;
    BEGIN
    -- Store the Purchase Order XML in the CLOB variable
    poxml :=
    '<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <PurchaseOrder>
    <PONum>1001</PONum>
    <Company>Oracle Corp</Company>
    <PONum>1002</PONum>
    <Company>NPC Corp</Company>
    <PONum>1003</PONum>
    <Company>FDCA Corp</Company>
    <PONum>1004</PONum>
    <Company>Mahesh Corp</Company>
    <PONum>1005</PONum>
    <Company>Habeeb Corp</Company>
    </PurchaseOrder>';
    -- Insert the Purchase Order XML into an XMLType column
    INSERT INTO potable
    (purchaseorder
    VALUES (XMLTYPE (poxml)
    --Handle the exceptions
    EXCEPTION
    WHEN OTHERS
    THEN
    raise_application_error
    (-20101
    , 'Exception occurred in loadPurchaseOrder procedure :'
    || Sqlerrm
    END loadpurchaseorder;
    execute loadpurchaseorder;PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.04
    select count(*) from potable;COUNT(*)
    1
    Elapsed: 00:00:00.00
    select * from potable;PURCHASEORDER
    <?xml version="1.0" encoding="ISO-8859-1" standalone='yes'?>
    <PurchaseOrder>
    <PONum>1001</PONum>
    <Company>Oracle Corp</Company>
    <PONum>1002</PONum>
    <Company>NPC Corp</Company>
    <PONum>1003</PONum>
    <Company>FDCA Corp</Company>
    <PONum>1004</PONum>
    <Company>Mahesh Corp</Company>
    <PONum>1005</PONum>
    <Company>Habeeb Corp</Company>
    </PurchaseOrder>
    Elapsed: 00:00:00.03
    create table xml_ora_data(corp_id number, corp_name varchar2(30));Table created.
    Now I want data from potable to be loaded in xml_ora_data.
    any help is appriciated...
    Thanks
    Habeeb

    Thanks for the quick response...
    XML_ORA_DATA is the table I created as below..
    create table xml_ora_data(corp_id number, corp_name varchar2(30));

Maybe you are looking for

  • Where can I get an OS-X 10.4 full install (black) DVD?

    I've recently been given an old G4 17" iMac with 10.2.8 on it. I would like to upgrade this but only to 10.4 since I need a machine which runs "Classic". Our original Mini cam with 10.4 but I cannot find the install DVD Looking at eBay they seem to b

  • Date Dimension processing error

    Hi I am currently attempting to apply attribute relationships and a Hierarchy to my date dimension.  Please see images 1 and 2 attached. The error that is being displayed is Errors in the OLAP storage engine: A duplicate attribute key has been found

  • Display Recursive Columns in JTREE

    I'm having a problem displaying a recursive relationship like EmpNo & MgrNo in a Jtree to show a management hirerarchy. I'm using JDeveloper2.0 and trying to load the model with the data from the two columns.... Is there an example in the documentati

  • MIRO with house bank account ID

    Hi All, I would like to know why MIRO does not allow populating house bank account ID, but only house bank ID? I am aware that table RBKP does not have field to save the house bank account ID value. However, is there a reason behind SAP does not prov

  • The problem to retrieve and edit Universe from server

    I use CmsResourceService.retrieveUniverse to retrive *.unx from server to local. Then , I use LocalResourceService to load *.blx and cast to RelationalBusinessLayer and throws exception in my program. The exception is NestedException Interface reques