REST to SOAP: Invalid number of elements in URL "/"

Hi,
So having read the great blog series PI Rest Adapter - Don't be afraid by Alexander Bundschuh and I decided to try and set up my first scenario using the REST adapter in the same vain as Working with REST Adapter: A REST to SOAP Scenario in SAP PI/PO .
When I come to test the service from SOAPUI I get a 404 error with the message "Invalid number of elements in URL "/". 3 expected, 0 received."
As you can see it is hitting the correct sender communication channel as the response comes back with the channel name "RESTSenderMyService".
The Channel has been set up as follows:
Input and output format = XML
Channel selection = MyService   (The 'Specify Endpoint' flag is ticked)
There is no limit set for the HTTP operation.
Everything else is left unchanged....left as their default values
Also I've tried adding the full URL in SOAPUI in the endpoint field - the attached screenshot shows when I tried moving the /RESTAdapter/MyService into the Resource field.
I've also fiddled with the media type of the payload from text/xml to application/xml.
So the mystery is what does the error message refer to and what are the 3 elements it's expecting?
Thanks in advance.

Hi Peter,
This has happened because you have not defined the values for the url pattern you have defined in the REST sender channel (I am talking about Service resource and id).
Provide them in the resource section and you will get the message through.
eg- /RESTAdapter/MyService/service/resource/id
Thanks,
Vikas Singh

Similar Messages

  • Invalid serial number for element 12 [was:Larueski]

    Invaled serial number for element 12

    It should be a 24-digit number commencing 1057 (DO NOT POST THE NUMBER IN THESE FORUMS). If it's alpha-numeric you have a redemption code that you must convert to a serial number following the appropriate instructions at http://helpx.adobe.com/x-productkb/global/redemption-code-help.html#productboxorprepaidcar d.
    If it is a '1057' number, then you should start a Chat with Adobe at  http://helpx.adobe.com/uk/x-productkb/policy-pricing/activation-deactivation-products.html.
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children
    If this post or another user's post resolves the original issue, please mark the posts as correct and/or helpful accordingly. This helps other users with similar trouble get answers to their questions quicker. Thanks.

  • Error Message - ORA-01722 Invalid Number

    Hello:
    I have the following situation. When I create an organization, a record is inserted into the following table, AGREEMENTS, and populates four fields.
    I have an update form which selects the organization from the AGREEMENTS table so the user can populate the rest of the table. In addition, on this form, there is a drop-down box which allows the user to select the name of a legal document along with the version of the document in which the user needs to select. This select list is created via an LOV joining three tables. The item name for this select list is :P6_DOCUMENT.
    The code for the LOV is:
    SELECT S.DOC_NAME||' - '|| O.VERSION_NO AS DOC, O.ORG_DOC_CURR_KEY
    FROM SUPPORTING_DOCS S,
         ORG_DOC_CURR_VER O,
         AGREEMENTS H
    WHERE
        S.DOC_TYPE = 'HISA'
    AND S.SUPPORTING_DOC_KEY = O.SUPPORTING_DOC_KEY
    AND H.ORG_KEY_LE = O.ORG_KEY
    AND O.ORG_KEY=:P6_ORG_KEY_LEWhen the user completes the form, the SUBMIT process is a PL/SQL block consisting of an UPDATE statement to update the AGREEMENTS table based on the selected organization and an INSERT statement to insert a record into the AGREEMENTS_DOC table to store the value stored in :P7_DOCUMENT.
    Ok, now here is where my problem starts.
    When I first bring up the form and I select the organization I want to update, I click the Search button to find the organization and I receive the following error message: ORA-01722 Invalid Number.
    At this point all I'm doing is a basic search. There is no insert/update or anything going on. I'm not understanding why I would be receiving this error message.
    The search is based on the database column ORG_KEY_LE whose datatype is NUMBER.
    In my application, the item assigned to ORG_KEY_LE is P6_ORG_KEY_LE.
    I have a PL/SQL block process created (On Load-Before Header) in the Page Rendering area of my page definition. The PL/SQL code that is written is:
    BEGIN
    IF :P6_SEARCH_ORG != '0' THEN
    :P6_ORG_KEY_LE := :P6_SEARCH_ORG;
    END IF;
    END;I then have an Item created, :P6_SEARCH_ORG, which is a Select List. In the LOV portion of the page for this item, I have the following:
    select ORG_KEY_LE display_value, ORG_KEY_LE return_value
    from AGREEMENTS
    order by 1The reason for using this table is because this table contains the newly created organization which needs to be updated with the remaining columns of data.
    I then have a Search button in the Button area which has the following settings:
    Button Position: Region Template Position #CHANGE#.
    Condition Type: Value of Item in Express 1 is NULL.
    Expression 1: :P6_ORG_KEY_LE.
    To troubleshoot this problem, I created two pages, one page to do the UPDATE and the second page to do the INSERT.
    The SEARCH functionality in both pages are identical.
    When I run my UPDATE page, which only involves updating the missing fields, the process works. I have my search box, I'm able to search for the organization, make my updates, and I'm good.
    When I run my INSERT page, which involves inserting the record with the assigned document, I receive the error message after I click the SEARCH button. In order to INSERT the record into this table, I first need to SELECT the organization that was UPDATED in the AGREEMENTS table (using the UPDATE page described in above paragraph). When I select the organization, the user can then assign the appropriate legal document to the organization and insert the record into the AGREEMENTS_DOC table.
    Can someone help me with this error message? I'm not sure why I am able to perform my SEARCH on a page with the UPDATE statement, not able to perform the SEARCH on the page with my INSERT statement, and not be able to perform the SEARCH on the page that combines the UPDATE and INSERT statements.
    I did some more troubleshooting and I do believe my SUBMIT process which contains the INSERT statement is the issue. I created a fourth page which doesn't have a SUBMIT process. I brought up the form, searched for my organization and the information for that organization appeared. The problem is definately with my UPDATE/INSERT process.
    The PL/SQL block for the Submit process is the following:
    BEGIN
    update
        MDD.HISA_AGREEMENTS
         set
           LAST_UPDATED_BY=V('APP_USER'),
           APPROVER_SALUTATION=:P6_APPROVER_SALUTATION,
           APPROVER_FIRST_NAME=:P6_APPROVER_FIRST_NAME,
           APPROVER_MIDDLE_INITIAL=:P6_APPROVER_MIDDLE_INITIAL,
           APPROVER_LAST_NAME=:P6_APPROVER_LAST_NAME,
           APPROVER_NAME_SUFFIX=:P6_APPROVER_NAME_SUFFIX,
           APPROVER_EMAIL_ADDR=:P6_APPROVER_EMAIL_ADDR,
           SPONSOR_EMAIL_ADDR=:P6_SPONSOR_EMAIL_ADDR,
           APPROVER_TITLE=:P6_APPROVER_TITLE
    where
          ORG_KEY_LE=:P6_ORG_KEY_LE
    INSERT INTO
        HISA_AGREEMENT_DOCS
          (HISA_AGREEMENT_DOC_KEY,
           ORG_KEY_LE,
           APPLICATION_KEY,
           STATUS,
           STATUS_DATE,
           CREATED_BY,
           ORG_DOC_CURR_KEY)
    VALUES
          (HISA_AGREEMENT_DOC_KEY_SEQ.NEXTVAL,
           :P6_ORG_KEY_LE,
           :P6_APPLICATION_KEY,
           'C',
           SYSDATE,
           V('APP_USER'),
           :P6_DOCUMENT)
    END;There is something wrong with the above statement and I do not understand what it could be. Can someone help?
    Thanks for the help.

    Hi,
    I believe you are on to something.
    The select list for item :P6_DOCUMENT appears when I first bring up the form. When I select my organization and receive the error message, I clicked on the Session in the Developer's bar. The value in item/field :P6_DOCUMENT shows %null%.
    This is the path in which my user would like to accomplish her task:
    1. Select an organization
    2. Display the information for that organization from the AGREEMENTS table
    3. Enter the data for the remaining fields in the AGREEMENTS table
    4. Select the document (:P6_DOCUMENT) from the drop-down.
    5. Click Submit
    6. Update the AGREEMENTS table with data entered in #3.
    7. Insert a record into the AGREEMENTS_DOC table with the selection from #4.
    Somehow I need the :P6_DOCUMENT field not to show the %null% during the SEARCH functionality. I think that is causing the problem.
    How do I fix this?

  • SQLAuthenticator Provider Specific ORA-01722 invalid number error

    Hi,
    when i try to to configure sql authentication and
    After restrating the OBIEE server  i am facing the below error
    <Oct 21, 2013 12:09:10 PM GST> <Error> <Security> <BEA-000000> <[Security:090759
    ]A SQLException occurred while retrieving user information
    java.sql.SQLSyntaxErrorException: ORA-01722: invalid number
            at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:462)
            at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:405)
            at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:931)
            at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:481)
            at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:205)
            Truncated. see log file for complete stacktrace
    >
    Pls suggest to fix the issue

    Pls find the config.xml copied below
    <?xml version='1.0' encoding='UTF-8'?>
    <domain xmlns="http://xmlns.oracle.com/weblogic/domain" xmlns:sec="http://xmlns.oracle.com/weblogic/security" xmlns:wls="http://xmlns.oracle.com/weblogic/security/wls" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.oracle.com/weblogic/security/xacml http://xmlns.oracle.com/weblogic/security/xacml/1.0/xacml.xsd http://xmlns.oracle.com/weblogic/security/providers/passwordvalidator http://xmlns.oracle.com/weblogic/security/providers/passwordvalidator/1.0/passwordvalidator.xsd http://xmlns.oracle.com/weblogic/domain http://xmlns.oracle.com/weblogic/1.0/domain.xsd http://xmlns.oracle.com/weblogic/security http://xmlns.oracle.com/weblogic/1.0/security.xsd http://xmlns.oracle.com/weblogic/security/wls http://xmlns.oracle.com/weblogic/security/wls/1.0/wls.xsd">
      <name>bifoundation_domain</name>
      <domain-version>10.3.5.0</domain-version>
      <security-configuration>
        <name>bifoundation_domain</name>
        <realm>
          <sec:authentication-provider xsi:type="wls:read-only-sql-authenticatorType">
            <sec:name>UserGroupDBAuthenticator</sec:name>
            <sec:control-flag>SUFFICIENT</sec:control-flag>
            <wls:data-source-name>UserGroupDS</wls:data-source-name>
            <wls:sql-get-users-password>SELECT USER_PASSWORD FROM BO_USER WHERE USER_ID = ?</wls:sql-get-users-password>
            <wls:sql-user-exists>SELECT USER_ID FROM BO_USER WHERE USER_ID= ?</wls:sql-user-exists>
            <wls:sql-list-member-groups>SELECT USER_ID FROM BO_USER WHERE USER_ID= ?</wls:sql-list-member-groups>
            <wls:sql-list-users>SELECT USER_ID FROM BO_USER WHERE USER_ID LIKE ?</wls:sql-list-users>
            <wls:sql-get-user-description>SELECT USER_AFNAME FROM BO_USER WHERE USER_ID LIKE ?</wls:sql-get-user-description>
            <wls:sql-list-groups>SELECT USER_CATEGORY_ID FROM BO_USER_CATEGORY WHERE USER_CATEGORY_ID LIKE ?</wls:sql-list-groups>
            <wls:sql-group-exists>SELECT USER_CATEGORY_ID FROM BO_USER_CATEGORY WHERE USER_CATEGORY_ID = ?</wls:sql-group-exists>
            <wls:sql-is-member>SELECT USER_ID FROM BO_USER WHERE USER_ID= ? AND USER_CATEGORY_ID = ?</wls:sql-is-member>
            <wls:sql-get-group-description>SELECT USER_CATEGORY_ANAME FROM BO_USER_CATEGORY WHERE USER_CATEGORY_ID = ?</wls:sql-get-group-description>
          </sec:authentication-provider>
          <sec:authentication-provider xsi:type="wls:active-directory-authenticatorType">
            <sec:name>MSAD</sec:name>
            <sec:control-flag>SUFFICIENT</sec:control-flag>
            <wls:host>scdc001.scad.ae</wls:host>
            <wls:user-name-attribute>sAMAccountName</wls:user-name-attribute>
            <wls:principal>CN=HCL1 HCL1,OU=Unknown Accounts,OU=SCADOU,DC=scad,DC=ae</wls:principal>
            <wls:user-base-dn>OU=SCADOU,DC=scad,DC=ae</wls:user-base-dn>
            <wls:credential-encrypted>{AES}yJt1s2K9bE/H3EgbCde7SLVz2O+kGSeF2XPlx16Kg/c=</wls:credential-encrypted>
            <wls:user-from-name-filter></wls:user-from-name-filter>
            <wls:group-base-dn>OU=SCADOU,DC=scad,DC=ae</wls:group-base-dn>
            <wls:group-from-name-filter></wls:group-from-name-filter>
          </sec:authentication-provider>
          <sec:authentication-provider xsi:type="wls:default-authenticatorType">
            <sec:control-flag>SUFFICIENT</sec:control-flag>
            <wls:use-retrieved-user-name-as-principal>true</wls:use-retrieved-user-name-as-principal>
          </sec:authentication-provider>
          <sec:authentication-provider xsi:type="wls:default-identity-asserterType">
            <sec:active-type>AuthenticatedUser</sec:active-type>
          </sec:authentication-provider>
          <sec:role-mapper xmlns:xac="http://xmlns.oracle.com/weblogic/security/xacml" xsi:type="xac:xacml-role-mapperType"></sec:role-mapper>
          <sec:authorizer xmlns:xac="http://xmlns.oracle.com/weblogic/security/xacml" xsi:type="xac:xacml-authorizerType"></sec:authorizer>
          <sec:adjudicator xsi:type="wls:default-adjudicatorType"></sec:adjudicator>
          <sec:credential-mapper xsi:type="wls:default-credential-mapperType"></sec:credential-mapper>
          <sec:cert-path-provider xsi:type="wls:web-logic-cert-path-providerType"></sec:cert-path-provider>
          <sec:cert-path-builder>WebLogicCertPathProvider</sec:cert-path-builder>
          <sec:name>myrealm</sec:name>
          <sec:password-validator xmlns:pas="http://xmlns.oracle.com/weblogic/security/providers/passwordvalidator" xsi:type="pas:system-password-validatorType">
            <sec:name>SystemPasswordValidator</sec:name>
            <pas:min-password-length>8</pas:min-password-length>
            <pas:min-numeric-or-special-characters>1</pas:min-numeric-or-special-characters>
          </sec:password-validator>
        </realm>
        <default-realm>myrealm</default-realm>
        <anonymous-admin-lookup-enabled>false</anonymous-admin-lookup-enabled>
        <clear-text-credential-access-enabled>false</clear-text-credential-access-enabled>
        <credential-encrypted>{AES}XIuR3PugbUjOzUtule2BBcdFXE5YndaeC6lrv+CIpRES+1us7RK77qywGsAGQiu5shrQ9gdqXF4lDUGu52pQFlbohEqFM7fLLSY9gitQi203cjSIEtDL/SjrIWX/L7GS</credential-encrypted>
        <web-app-files-case-insensitive>false</web-app-files-case-insensitive>
        <compatibility-connection-filters-enabled>false</compatibility-connection-filters-enabled>
        <node-manager-username>weblogic</node-manager-username>
        <node-manager-password-encrypted>{AES}Lnj81ljv/oGM7z99GT5+6NQdb6MxacRAO3QWV3q6hCE=</node-manager-password-encrypted>
        <principal-equals-case-insensitive>false</principal-equals-case-insensitive>
        <principal-equals-compare-dn-and-guid>false</principal-equals-compare-dn-and-guid>
        <downgrade-untrusted-principals>false</downgrade-untrusted-principals>
        <enforce-strict-url-pattern>true</enforce-strict-url-pattern>
        <cross-domain-security-enabled>false</cross-domain-security-enabled>
      </security-configuration>
      <jta>
        <security-interop-mode>default</security-interop-mode>
      </jta>
      <server>
        <name>AdminServer</name>
        <idle-connection-timeout>1000</idle-connection-timeout>
        <period-length>200000</period-length>
        <idle-periods-until-timeout>20</idle-periods-until-timeout>
        <dgc-idle-periods-until-timeout>21</dgc-idle-periods-until-timeout>
        <ssl>
          <name>AdminServer</name>
          <hostname-verification-ignored>true</hostname-verification-ignored>
          <listen-port>7002</listen-port>
        </ssl>
        <machine>scbofup3</machine>
        <listen-address></listen-address>
        <server-diagnostic-config>
          <name>AdminServer</name>
          <diagnostic-context-enabled>true</diagnostic-context-enabled>
        </server-diagnostic-config>
      </server>
      <server>
        <name>bi_server1</name>
        <ssl>
          <name>bi_server1</name>
          <enabled>false</enabled>
          <listen-port>9804</listen-port>
        </ssl>
        <machine>scbofup3</machine>
        <listen-port>8765</listen-port>
        <listen-port-enabled>true</listen-port-enabled>
        <cluster>bi_cluster</cluster>
        <listen-address></listen-address>
        <java-compiler>javac</java-compiler>
        <server-start>
          <name>bi_server1</name>
          <arguments>-Dserver.group=obi</arguments>
        </server-start>
        <jta-migratable-target>
          <name>bi_server1</name>
          <user-preferred-server>bi_server1</user-preferred-server>
          <cluster>bi_cluster</cluster>
        </jta-migratable-target>
        <client-cert-proxy-enabled>false</client-cert-proxy-enabled>
        <server-diagnostic-config>
          <name>bi_server1</name>
          <diagnostic-context-enabled>true</diagnostic-context-enabled>
          <wldf-diagnostic-volume>Low</wldf-diagnostic-volume>
        </server-diagnostic-config>
      </server>
      <cluster>
        <name>bi_cluster</name>
        <cluster-messaging-mode>unicast</cluster-messaging-mode>
      </cluster>
      <production-mode-enabled>true</production-mode-enabled>
      <embedded-ldap>
        <name>bifoundation_domain</name>
        <credential-encrypted>{AES}M3mHz4RP6LUiVO8E50F4tImxMHn81BhfT/wauMEMPzI7dCliZNS25wD7bch3SUc0</credential-encrypted>
      </embedded-ldap>
      <configuration-version>10.3.5.0</configuration-version>
      <app-deployment>
        <name>FMW Welcome Page Application#11.1.0.0.0</name>
        <target>AdminServer</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/oracle_common/modules/oracle.jrf_11.1.1/fmw-welcome.ear</source-path>
        <deployment-order>5</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </app-deployment>
      <app-deployment>
        <name>DMS Application#11.1.1.1.0</name>
        <target>bi_cluster,AdminServer</target>
        <module-type>war</module-type>
        <source-path>E:/OBIEE11g/oracle_common/modules/oracle.dms_11.1.1/dms.war</source-path>
        <deployment-order>5</deployment-order>
        <security-dd-model>CustomRoles</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </app-deployment>
      <app-deployment>
        <name>wsil-wls</name>
        <target>bi_cluster,AdminServer</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/oracle_common/modules/oracle.webservices_11.1.1/wsil-wls.ear</source-path>
        <deployment-order>5</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </app-deployment>
      <app-deployment>
        <name>ESSAPP</name>
        <target>bi_cluster</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/ess/archives/stub-ess-app.ear</source-path>
        <deployment-order>50</deployment-order>
        <security-dd-model>CustomRoles</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </app-deployment>
      <app-deployment>
        <name>wsm-pm</name>
        <target>bi_cluster,AdminServer</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/oracle_common/modules/oracle.wsm.pm_11.1.1/wsm-pm.ear</source-path>
        <deployment-order>5</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </app-deployment>
      <app-deployment>
        <name>em</name>
        <target>AdminServer</target>
        <module-type>ear</module-type>
        <source-path>E:\OBIEE11g\user_projects\applications\bifoundation_domain/em.ear</source-path>
        <deployment-order>400</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </app-deployment>
      <app-deployment>
        <name>bilocaladmin#11.1.1</name>
        <target>bi_cluster</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/bifoundation/jee/bilocaladmin.ear</source-path>
        <deployment-order>253</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </app-deployment>
      <app-deployment>
        <name>biadminservices#11.1.1</name>
        <target>AdminServer</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/bifoundation/jee/biadminservices.ear</source-path>
        <deployment-order>257</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </app-deployment>
      <app-deployment>
        <name>bicontentserver#11.1.1</name>
        <target>bi_cluster</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/bifoundation/jee/bicontentserver.ear</source-path>
        <deployment-order>300</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </app-deployment>
      <app-deployment>
        <name>biadminutils#11.1.1</name>
        <target>AdminServer</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/bifoundation/jee/biadminutils.ear</source-path>
        <deployment-order>240</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </app-deployment>
      <app-deployment>
        <name>bicomposer#11.1.1</name>
        <target>bi_cluster</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/modules/oracle.bi.presentation_11.1.1/bicomposer.ear</source-path>
        <deployment-order>100</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </app-deployment>
      <app-deployment>
        <name>asyncadminservice#11.1.1</name>
        <target>bi_cluster</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/bifoundation/jee/AsyncAdminService.ear</source-path>
        <deployment-order>260</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </app-deployment>
      <app-deployment>
        <name>jbips#11.1.1</name>
        <target>bi_cluster</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/bifoundation/jee/jbips.ear</source-path>
        <deployment-order>100</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </app-deployment>
      <app-deployment>
        <name>bioffice#11.1.1</name>
        <target>bi_cluster</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/bifoundation/jee/bioffice.ear</source-path>
        <deployment-order>300</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </app-deployment>
      <app-deployment>
        <name>biofficeclient#11.1.1</name>
        <target>bi_cluster</target>
        <module-type>war</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/bifoundation/jee/biofficeclient.war</source-path>
        <deployment-order>301</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </app-deployment>
      <app-deployment>
        <name>analytics#11.1.1</name>
        <target>bi_cluster</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/bifoundation/jee/analytics.ear</source-path>
        <deployment-order>250</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </app-deployment>
      <app-deployment>
        <name>bimiddleware#11.1.1</name>
        <target>bi_cluster</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/bifoundation/jee/bimiddleware.ear</source-path>
        <deployment-order>251</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </app-deployment>
      <app-deployment>
        <name>bisearch#11.1.1</name>
        <target>bi_cluster</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/bifoundation/jee/bisearch.ear</source-path>
        <deployment-order>254</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </app-deployment>
      <app-deployment>
        <name>bisecurityadmin#11.1.1</name>
        <target>bi_cluster,AdminServer</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/bifoundation/jee/bisecurityadmin.ear</source-path>
        <deployment-order>256</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </app-deployment>
      <app-deployment>
        <name>bisecurity#11.1.1</name>
        <target>bi_cluster</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/bifoundation/jee/bisecurity.ear</source-path>
        <deployment-order>257</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </app-deployment>
      <app-deployment>
        <name>mapviewer#11.1.1</name>
        <target>bi_cluster</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/bifoundation/jee/mapviewer.ear</source-path>
        <deployment-order>258</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </app-deployment>
      <app-deployment>
        <name>adminservice#11.1.1</name>
        <target>bi_cluster</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/bifoundation/jee/AdminService.ear</source-path>
        <deployment-order>259</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </app-deployment>
      <app-deployment>
        <name>biadminservlet#11.1.1</name>
        <target>bi_cluster</target>
        <module-type>war</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/bifoundation/javahost/lib/obisintegration/biadminservlet.war</source-path>
        <deployment-order>261</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </app-deployment>
      <app-deployment>
        <name>NonJ2EEManagement</name>
        <target>AdminServer</target>
        <module-type>ear</module-type>
        <source-path>servers\AdminServer\upload\NonJ2EEManagement\app\NonJ2EEManagement.ear</source-path>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </app-deployment>
      <app-deployment>
        <name>OracleRTD#11.1.1</name>
        <target>bi_cluster</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/bifoundation/jee/RTD.ear</source-path>
        <deployment-order>333</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </app-deployment>
      <app-deployment>
        <name>bipublisher#11.1.1</name>
        <target>bi_cluster</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/bifoundation/jee/xmlpserver.ear</source-path>
        <deployment-order>510</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </app-deployment>
      <app-deployment>
        <name>Workspace#11.1.1</name>
        <target>bi_cluster</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/products/Foundation/workspace/InstallableApps/workspace.ear</source-path>
        <deployment-order>522</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </app-deployment>
      <app-deployment>
        <name>Calc#11.1.1</name>
        <target>bi_cluster</target>
        <module-type>war</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/products/Foundation/CALC/AppServer/InstallableApps/calcmgr.ear</source-path>
        <deployment-order>523</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </app-deployment>
      <app-deployment>
        <name>FinancialReporting#11.1.1</name>
        <target>bi_cluster</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/products/financialreporting/InstallableApps/HReports.ear</source-path>
        <deployment-order>524</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </app-deployment>
      <app-deployment>
        <name>APS#11.1.1</name>
        <target>bi_cluster</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/products/Essbase/aps/redist/aps.ear</source-path>
        <deployment-order>521</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </app-deployment>
      <app-deployment>
        <name>eas#11.1.1</name>
        <target>bi_cluster</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/products/Essbase/eas/server/tomcat/webapps/eas.ear</source-path>
        <deployment-order>100</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </app-deployment>
      <app-deployment>
        <name>analyticsRes</name>
        <target>bi_cluster</target>
        <module-type>war</module-type>
        <source-path>E:\OBIEE11g\instances\instance1\bifoundation\OracleBIPresentationServicesComponent\coreapplication_obips1\analyticsRes</source-path>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </app-deployment>
      <library>
        <name>oracle.bi.adf.model.slib#[email protected]</name>
        <target>bi_cluster,AdminServer</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/oracle_common/modules/oracle.bi.presentation_11.1.1/bi-adf-model-slib.ear</source-path>
        <deployment-order>100</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>oracle.bi.adf.view.slib#[email protected]</name>
        <target>bi_cluster,AdminServer</target>
        <module-type>war</module-type>
        <source-path>E:/OBIEE11g/oracle_common/modules/oracle.bi.presentation_11.1.1/bi-adf-view-slib.war</source-path>
        <deployment-order>100</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>oracle.bi.adf.webcenter.slib#[email protected]</name>
        <target>bi_cluster,AdminServer</target>
        <module-type>war</module-type>
        <source-path>E:/OBIEE11g/oracle_common/modules/oracle.bi.presentation_11.1.1/bi-adf-webcenter-slib.war</source-path>
        <deployment-order>100</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>oracle.wsm.seedpolicies#[email protected]</name>
        <target>bi_cluster,AdminServer</target>
        <source-path>E:/OBIEE11g/oracle_common/modules/oracle.wsm.policies_11.1.1/wsm-seed-policies.jar</source-path>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>oracle.jsp.next#[email protected]</name>
        <target>bi_cluster,AdminServer</target>
        <source-path>E:/OBIEE11g/oracle_common/modules/oracle.jsp_11.1.1/ojsp.jar</source-path>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>oracle.dconfig-infra#[email protected]</name>
        <target>bi_cluster,AdminServer</target>
        <source-path>E:/OBIEE11g/oracle_common/modules/oracle.dconfig-infra_11.1.1.jar</source-path>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>orai18n-adf#[email protected]</name>
        <target>bi_cluster,AdminServer</target>
        <source-path>E:/OBIEE11g/oracle_common/modules/oracle.nlsgdk_11.1.0/orai18n-adf.jar</source-path>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>oracle.adf.dconfigbeans#[email protected]</name>
        <target>bi_cluster,AdminServer</target>
        <source-path>E:/OBIEE11g/oracle_common/modules/oracle.adf.dconfigbeans_11.1.1.jar</source-path>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>oracle.pwdgen#[email protected]</name>
        <target>bi_cluster,AdminServer</target>
        <source-path>E:/OBIEE11g/oracle_common/modules/oracle.pwdgen_11.1.1/pwdgen.jar</source-path>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>oracle.jrf.system.filter</name>
        <target>bi_cluster,AdminServer</target>
        <source-path>E:/OBIEE11g/oracle_common/modules/oracle.jrf_11.1.1/system-filters.war</source-path>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>adf.oracle.domain#[email protected]</name>
        <target>bi_cluster,AdminServer</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/oracle_common/modules/oracle.adf.model_11.1.1/adf.oracle.domain.ear</source-path>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>adf.oracle.businesseditor#[email protected]</name>
        <target>bi_cluster,AdminServer</target>
        <module-type>war</module-type>
        <source-path>E:/OBIEE11g/oracle_common/modules/oracle.adf.businesseditor_11.1.1/adf.businesseditor.war</source-path>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>oracle.adf.management#[email protected]</name>
        <target>bi_cluster,AdminServer</target>
        <module-type>war</module-type>
        <source-path>E:/OBIEE11g/oracle_common/modules/oracle.adf.management_11.1.1/adf-management.war</source-path>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>adf.oracle.domain.webapp#[email protected]</name>
        <target>bi_cluster,AdminServer</target>
        <module-type>war</module-type>
        <source-path>E:/OBIEE11g/oracle_common/modules/oracle.adf.view_11.1.1/adf.oracle.domain.webapp.war</source-path>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>jsf#[email protected]</name>
        <target>bi_cluster,AdminServer</target>
        <module-type>war</module-type>
        <source-path>E:\OBIEE11g\wlserver_10.3/common/deployable-libraries/jsf-1.2.war</source-path>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>jstl#[email protected]</name>
        <target>bi_cluster,AdminServer</target>
        <module-type>war</module-type>
        <source-path>E:\OBIEE11g\wlserver_10.3/common/deployable-libraries/jstl-1.2.war</source-path>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>UIX#[email protected]</name>
        <target>bi_cluster,AdminServer</target>
        <module-type>war</module-type>
        <source-path>E:/OBIEE11g/oracle_common/modules/oracle.uix_11.1.1/uix11.war</source-path>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>ohw-rcf#[email protected]</name>
        <target>bi_cluster,AdminServer</target>
        <module-type>war</module-type>
        <source-path>E:/OBIEE11g/oracle_common/modules/oracle.help_5.0/ohw-rcf.war</source-path>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>ohw-uix#[email protected]</name>
        <target>bi_cluster,AdminServer</target>
        <module-type>war</module-type>
        <source-path>E:/OBIEE11g/oracle_common/modules/oracle.help_5.0/ohw-uix.war</source-path>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>oracle.adf.desktopintegration.model#[email protected]</name>
        <target>bi_cluster,AdminServer</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/oracle_common/modules/oracle.adf.desktopintegration.model_11.1.1/oracle.adf.desktopintegration.model.ear</source-path>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>oracle.adf.desktopintegration#[email protected]</name>
        <target>bi_cluster,AdminServer</target>
        <module-type>war</module-type>
        <source-path>E:/OBIEE11g/oracle_common/modules/oracle.adf.desktopintegration_11.1.1/oracle.adf.desktopintegration.war</source-path>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>oracle.bi.jbips#[email protected]</name>
        <target>bi_cluster,AdminServer</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/oracle_common/modules/oracle.bi.presentation_11.1.1/bi-jbips-slib-stub.ear</source-path>
        <deployment-order>100</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>oracle.bi.composer#[email protected]</name>
        <target>bi_cluster,AdminServer</target>
        <module-type>war</module-type>
        <source-path>E:/OBIEE11g/oracle_common/modules/oracle.bi.presentation_11.1.1/bi-composer-slib-stub.war</source-path>
        <deployment-order>100</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>oracle.bpm.mgmt#[email protected]</name>
        <target>AdminServer</target>
        <source-path>E:/OBIEE11g/oracle_common/bpm/modules/oracle.bpm.mgmt_11.1.1/oracle.bpm.bpmn-em-tools.jar</source-path>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>emai</name>
        <target>AdminServer</target>
        <module-type>war</module-type>
        <source-path>E:/OBIEE11g/oracle_common/sysman/archives/applications/11_1_1_0_0_emai.war</source-path>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>oracle.ess.client#[email protected]</name>
        <target>bi_cluster</target>
        <source-path>E:/OBIEE11g/Oracle_BI1/modules/oracle.ess.client_11.1.1/stub-ess-client.ear</source-path>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>oracle.ess#[email protected]</name>
        <target>bi_cluster</target>
        <source-path>E:/OBIEE11g/Oracle_BI1/modules/oracle.ess_11.1.1/stub-ess.ear</source-path>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>oracle.webcenter.skin#[email protected]</name>
        <target>AdminServer</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/oracle_common/webcenter/modules/oracle.portlet.server_11.1.1/oracle.webcenter.skin.ear</source-path>
        <deployment-order>300</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>oracle.webcenter.composer#[email protected]</name>
        <target>AdminServer</target>
        <module-type>war</module-type>
        <source-path>E:/OBIEE11g/oracle_common/webcenter/modules/oracle.webcenter.framework_11.1.1/oracle.webcenter.composer.war</source-path>
        <deployment-order>300</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>emas</name>
        <target>AdminServer</target>
        <module-type>war</module-type>
        <source-path>E:/OBIEE11g/oracle_common/sysman/archives/applications/11_1_1_0_0_emas.war</source-path>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>emcore</name>
        <target>AdminServer</target>
        <module-type>war</module-type>
        <source-path>E:/OBIEE11g/oracle_common/sysman/archives/applications/11_1_1_0_0_emcore.war</source-path>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>bi.em</name>
        <target>AdminServer</target>
        <module-type>war</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/sysman/archives/fmwctrl/plugins/11_1_1_0_0_bi.war</source-path>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>essbase.em</name>
        <target>AdminServer</target>
        <module-type>war</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/sysman/archives/fmwctrl/plugins/11_1_1_0_0_essbase.war</source-path>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>oracle.biopmn#11.1.1</name>
        <target>bi_cluster,AdminServer</target>
        <source-path>E:/OBIEE11g/Oracle_BI1/bifoundation/jlib/oracle-biopmn.jar</source-path>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>oracle.applcore.model#[email protected]</name>
        <target>bi_cluster</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/oracle_common/atgpf/modules/oracle.applcore.model_11.1.1/oracle.applcore.model.stub.ear</source-path>
        <deployment-order>500</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>oracle.applcore.view#[email protected]</name>
        <target>AdminServer</target>
        <module-type>war</module-type>
        <source-path>E:/OBIEE11g/oracle_common/atgpf/modules/oracle.applcore.view_11.1.1/oracle.applcore.view.stub.war</source-path>
        <deployment-order>500</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>oracle.applcore.config#[email protected]</name>
        <target>bi_cluster</target>
        <module-type>jar</module-type>
        <source-path>E:/OBIEE11g/oracle_common/atgpf/modules/features/oracle.applcore.config.stub.jar</source-path>
        <deployment-order>500</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>epm-shared-libraries#[email protected]</name>
        <target>bi_cluster,AdminServer</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/common/jlib/11.1.2.0/epm.jar</source-path>
        <deployment-order>500</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>bijdbc#11.1.1</name>
        <target>bi_cluster</target>
        <module-type>jar</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/bifoundation/jdbc/jdk16/bijdbc.jar</source-path>
        <deployment-order>300</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>oracle.bi.composer#[email protected]</name>
        <target>bi_cluster,AdminServer</target>
        <module-type>war</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/modules/oracle.bi.presentation_11.1.1/bi-composer-slib.war</source-path>
        <deployment-order>100</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>oracle.bi.jbips#[email protected]</name>
        <target>bi_cluster,AdminServer</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/modules/oracle.bi.presentation_11.1.1/bi-jbips-slib.ear</source-path>
        <deployment-order>100</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>oracle.bi.jbips.commons#[email protected]</name>
        <target>bi_cluster</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/modules/oracle.bi.presentation_11.1.1/bi-jbips-commons-slib.ear</source-path>
        <deployment-order>100</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>oracle.bi.jbips.soap#[email protected]</name>
        <target>bi_cluster</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/modules/oracle.bi.presentation_11.1.1/bi-jbips-soap-slib.ear</source-path>
        <deployment-order>100</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>bithirdparty#11.1.1</name>
        <target>bi_cluster</target>
        <source-path>E:/OBIEE11g/Oracle_BI1/modules/oracle.bithirdparty_11.1.1/bithirdparty.jar</source-path>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>oracle.rtd.client#[email protected]</name>
        <target>bi_cluster</target>
        <source-path>E:/OBIEE11g/Oracle_BI1/clients/rtd/oracle.rtd.client.ear</source-path>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>oracle.rtd.client.webapp#[email protected]</name>
        <target>bi_cluster</target>
        <source-path>E:/OBIEE11g/Oracle_BI1/clients/rtd/oracle.rtd.client.webapp.war</source-path>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>bip-shared-libraries#11.1.1</name>
        <target>bi_cluster</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/modules/BIPWebCP.jar</source-path>
        <deployment-order>500</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>xerces#[email protected]</name>
        <target>bi_cluster</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/common/jlib/11.1.2.0/epm_xerces.jar</source-path>
        <deployment-order>500</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>epm-misc-libraries#[email protected]</name>
        <target>bi_cluster</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/common/jlib/11.1.2.0/epm_misc.jar</source-path>
        <deployment-order>500</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>epm-bpmui-libraries#[email protected]</name>
        <target>bi_cluster</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/common/jlib/11.1.2.0/epm_bpmui.jar</source-path>
        <deployment-order>500</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>epm-bpmui-shared-webapp#[email protected]</name>
        <target>bi_cluster</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/common/bpmui-common/11.1.2.0/bpmui.war</source-path>
        <deployment-order>500</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>epm-applistener-libraries</name>
        <target>bi_cluster</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/common/config/11.1.2.0/hit-applistener.jar</source-path>
        <deployment-order>500</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>epm-calcmgr-libraries#[email protected]</name>
        <target>bi_cluster</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/common/calcmgr/11.1.2.0/lib/calcmgr.jar</source-path>
        <deployment-order>500</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>epm-epma-libraries#[email protected]</name>
        <target>bi_cluster</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/common/jlib/11.1.2.0/epm_epma.jar</source-path>
        <deployment-order>500</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>epm-pdf-libraries#[email protected]</name>
        <target>bi_cluster</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/common/jlib/11.1.2.0/epm_pdf.jar</source-path>
        <deployment-order>500</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>struts#[email protected]</name>
        <target>bi_cluster</target>
        <module-type>war</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/common/misc/11.1.2.0/struts.war</source-path>
        <deployment-order>500</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>epm-fr-libraries#[email protected]</name>
        <target>bi_cluster</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/common/jlib/11.1.2.0/epm_fr.jar</source-path>
        <deployment-order>500</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>epm-frweb-libraries#[email protected]</name>
        <target>bi_cluster</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/common/jlib/11.1.2.0/epm_frweb.jar</source-path>
        <deployment-order>500</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>epm-annotation-libraries#[email protected]</name>
        <target>bi_cluster</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/common/jlib/11.1.2.0/epm_annotation.jar</source-path>
        <deployment-order>500</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>epm-planning-libraries#[email protected]</name>
        <target>bi_cluster</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/common/jlib/11.1.2.0/epm_planning.jar</source-path>
        <deployment-order>500</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>epm-planning-adm-libraries#[email protected]</name>
        <target>bi_cluster</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/common/jlib/11.1.2.0/epm_planning_adm.jar</source-path>
        <deployment-order>500</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <library>
        <name>epm-eas-libraries#[email protected]</name>
        <target>bi_cluster</target>
        <module-type>ear</module-type>
        <source-path>E:/OBIEE11g/Oracle_BI1/common/jlib/11.1.2.0/epm_eas.jar</source-path>
        <deployment-order>500</deployment-order>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </library>
      <machine>
        <name>scbofup3</name>
        <node-manager>
          <listen-address>scbofup3</listen-address>
          <listen-port>9556</listen-port>
        </node-manager>
      </machine>
      <jms-server>
        <name>JRFWSAsyncJmsServer</name>
        <target>bi_server1</target>
        <persistent-store>JRFWSAsyncFileStore</persistent-store>
        <messages-maximum>200000</messages-maximum>
      </jms-server>
      <jms-server>
        <name>BipJmsServer</name>
        <target>bi_server1</target>
        <persistent-store>BipJmsStore</persistent-store>
      </jms-server>
      <migratable-target>
        <name>bi_server1 (migratable)</name>
        <notes>This is a system generated default migratable target for a server. Do not delete manually.</notes>
        <user-preferred-server>bi_server1</user-preferred-server>
        <cluster>bi_cluster</cluster>
      </migratable-target>
      <self-tuning>
        <work-manager>
          <name>weblogic.wsee.mdb.DispatchPolicy</name>
          <target>bi_cluster</target>
        </work-manager>
      </self-tuning>
      <shutdown-class>
        <name>JOC-Shutdown</name>
        <target>bi_cluster,AdminServer</target>
        <deployment-order>150</deployment-order>
        <class-name>oracle.ias.cache.Shutdown</class-name>
      </shutdown-class>
      <shutdown-class>
        <name>DMSShutdown</name>
        <target>bi_cluster,AdminServer</target>
        <deployment-order>150</deployment-order>
        <class-name>oracle.dms.wls.DMSShutdown</class-name>
      </shutdown-class>
      <startup-class>
        <name>JRF Startup Class</name>
        <target>bi_cluster,AdminServer</target>
        <deployment-order>110</deployment-order>
        <class-name>oracle.jrf.wls.JRFStartup</class-name>
        <failure-is-fatal>false</failure-is-fatal>
        <load-before-app-deployments>true</load-before-app-deployments>
        <load-before-app-activation>true</load-before-app-activation>
      </startup-class>
      <startup-class>
        <name>JPS Startup Class</name>
        <target>bi_cluster,AdminServer</target>
        <deployment-order>115</deployment-order>
        <class-name>oracle.security.jps.wls.JpsWlsStartupClass</class-name>
        <failure-is-fatal>false</failure-is-fatal>
        <load-before-app-deployments>true</load-before-app-deployments>
        <load-before-app-activation>true</load-before-app-activation>
      </startup-class>
      <startup-class>
        <name>ODL-Startup</name>
        <target>bi_cluster,AdminServer</target>
        <deployment-order>145</deployment-order>
        <class-name>oracle.core.ojdl.weblogic.ODLConfiguration</class-name>
        <failure-is-fatal>false</failure-is-fatal>
        <load-before-app-deployments>true</load-before-app-deployments>
        <load-before-app-activation>true</load-before-app-activation>
      </startup-class>
      <startup-class>
        <name>AWT Application Context Startup Class</name>
        <target>bi_cluster,AdminServer</target>
        <deployment-order>150</deployment-order>
        <class-name>oracle.jrf.AppContextStartup</class-name>
        <failure-is-fatal>false</failure-is-fatal>
        <load-before-app-deployments>true</load-before-app-deployments>
        <load-before-app-activation>true</load-before-app-activation>
      </startup-class>
      <startup-class>
        <name>JMX Framework Startup Class</name>
        <target>bi_cluster,AdminServer</target>
        <deployment-order>150</deployment-order>
        <class-name>oracle.as.jmx.framework.wls.spi.StartupListener</class-name>
        <failure-is-fatal>false</failure-is-fatal>
        <load-before-app-deployments>true</load-before-app-deployments>
        <load-before-app-activation>true</load-before-app-activation>
      </startup-class>
      <startup-class>
        <name>Web Services Startup Class</name>
        <target>bi_cluster,AdminServer</target>
        <deployment-order>150</deployment-order>
        <class-name>oracle.j2ee.ws.server.WebServiceServerStartup</class-name>
        <failure-is-fatal>false</failure-is-fatal>
        <load-before-app-deployments>true</load-before-app-deployments>
        <load-before-app-activation>true</load-before-app-activation>
      </startup-class>
      <startup-class>
        <name>JOC-Startup</name>
        <target>bi_cluster,AdminServer</target>
        <deployment-order>150</deployment-order>
        <class-name>oracle.ias.cache.Startup</class-name>
        <failure-is-fatal>false</failure-is-fatal>
        <load-before-app-deployments>true</load-before-app-deployments>
        <load-before-app-activation>true</load-before-app-activation>
      </startup-class>
      <startup-class>
        <name>DMS-Startup</name>
        <target>bi_cluster,AdminServer</target>
        <deployment-order>150</deployment-order>
        <class-name>oracle.dms.wls.DMSStartup</class-name>
        <failure-is-fatal>false</failure-is-fatal>
        <load-before-app-deployments>true</load-before-app-deployments>
        <load-before-app-activation>true</load-before-app-activation>
      </startup-class>
      <file-store>
        <name>JRFWSAsyncFileStore</name>
        <directory>JRFWSAsyncFileStore</directory>
        <target>bi_server1</target>
      </file-store>
      <file-store>
        <name>BipJmsStore</name>
        <directory>BipJmsStore</directory>
        <target>bi_server1</target>
      </file-store>
      <jms-system-resource>
        <name>JRFWSAsyncJmsModule</name>
        <target>bi_cluster</target>
        <sub-deployment>
          <name>JRFWS_JMS_MODULE_SUBDEPLOYMENT_JRFWSJMSServer</name>
          <target>JRFWSAsyncJmsServer</target>
        </sub-deployment>
        <descriptor-file-name>jms/jrfwsasyncjmsmodule-jms.xml</descriptor-file-name>
      </jms-system-resource>
      <jms-system-resource>
        <name>BipJmsResource</name>
        <target>bi_cluster</target>
        <sub-deployment>
          <name>BipJmsSubDeployment</name>
          <target>BipJmsServer</target>
        </sub-deployment>
        <descriptor-file-name>jms/bipjmsresource-jms.xml</descriptor-file-name>
      </jms-system-resource>
      <admin-server-name>AdminServer</admin-server-name>
      <wldf-system-resource>
        <name>Module-FMWDFW</name>
        <target>bi_cluster,AdminServer</target>
        <descriptor-file-name>diagnostics/Module-FMWDFW-2818.xml</descriptor-file-name>
        <description>Creates FMWDFW incidents based on unchecked Exceptions and critical errors</description>
      </wldf-system-resource>
      <jdbc-system-resource>
        <name>mds-owsm</name>
        <target>bi_cluster,AdminServer</target>
        <descriptor-file-name>jdbc/mds-owsm-jdbc.xml</descriptor-file-name>
      </jdbc-system-resource>
      <jdbc-system-resource>
        <name>EPMSystemRegistry</name>
        <target>bi_cluster,AdminServer</target>
        <descriptor-file-name>jdbc/EPMSystemRegistry-jdbc.xml</descriptor-file-name>
      </jdbc-system-resource>
      <jdbc-system-resource>
        <name>rtd_datasource</name>
        <target>bi_cluster</target>
        <descriptor-file-name>jdbc/RTDDataSource-jdbc.xml</descriptor-file-name>
      </jdbc-system-resource>
      <jdbc-system-resource>
        <name>bip_datasource</name>
        <target>bi_cluster</target>
        <descriptor-file-name>jdbc/bip_datasource-jdbc.xml</descriptor-file-name>
      </jdbc-system-resource>
      <jdbc-system-resource>
        <name>calc_datasource</name>
        <target>bi_cluster</target>
        <descriptor-file-name>jdbc/calc_datasource-jdbc.xml</descriptor-file-name>
      </jdbc-system-resource>
      <jdbc-system-resource>
        <name>raframework_datasource</name>
        <target>bi_cluster</target>
        <descriptor-file-name>jdbc/raframework_datasource-jdbc.xml</descriptor-file-name>
      </jdbc-system-resource>
      <jdbc-system-resource>
        <name>aps_datasource</name>
        <target>bi_cluster</target>
        <descriptor-file-name>jdbc/aps_datasource-jdbc.xml</descriptor-file-name>
      </jdbc-system-resource>
      <jdbc-system-resource>
        <name>UserGroupDS</name>
        <target>AdminServer,bi_server1</target>
        <descriptor-file-name>jdbc/UserGroupDS-0115-jdbc.xml</descriptor-file-name>
      </jdbc-system-resource>
    </domain>

  • "Error while parsing SOAP XML payload: no element found" received when invoking Web Service

    Running PB 12.1 Build 7000.  Using Easysoap.  Error ""Error while parsing SOAP XML payload: no element found" received when invoking Web Service".  This error does not appear to be coming from the application code.  Noticed that there were some erroneous characters showing up within the header portion of the XML ("&Quot;").  Not sure where these are coming from.  When I do a find within the PB code for ""&quot;" it gets located within two objects, whereas they both reference a "temp_xml_letter".  Not sure where or what temp_xml_letter resides???   The developer of this is no longer with us and my exposure to WSDL and Web Services is rather limited.  Need to get this resolved...please.
    This is the result of the search.  Notice the extraneous characters ("&quot;"):
    dar1main.pbl(d_as400_mq_xml)
    darlettr.pbl(d_email_xml)
    ---------- Search: Searching Target darwin for 'temp_xml'    (9:52:41 AM)
    ---------- 2 Matches Found On "temp_xml":
    dar1main.pbl(d_as400_mq_xml).d_as400_mq_xml:  export.xml(usetemplate="temp_xml_letter" headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0  template=(comment="" encoding="UTF-8" name="temp_xml_letter" xml="<?xml version=~"1.0~" encoding=~"UTF-16LE~" standalone=~"yes~"?><EmailServiceTransaction xmlns=~"http://xml.xxnamespace.com/Utility/Email/EmailService" ~" xmlns:imc=~"http://xml.xxnamespace.com/IMC~" xmlns:xsi=~"http://www.w3.org/2001/XMLSchema-instance~" xmlns:root=~"http://xml.xxnamespace.com/RootTypes~" xmlns:email=~"http://xml.xxnamespace.com/Utility/Email~" xsi:schemaLocation=~"http://xml.xxnamespace.com/Utility/Email/EmailService http://dev.xxnamespace.com/Utility/Email/EmailService/V10-TRX-EmailService.xsd~"><EmailServiceInformation><EmailServiceDetail __pbband=~"detail~"><ApplicationIdentifier> applicationidentifier </ApplicationIdentifier><AddresseeInformation><AddresseeDetail><Number> number </Number></AddresseeDetail></AddresseeInformation><EmailMessageInformation><Ema
    darlettr.pbl(d_email_xml).d_email_xml:  export.xml(usetemplate="temp_xml_letter" headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0  template=(comment="" encoding="UTF-8" name="temp_xml_letter" xml="<?xml version=~"1.0~" encoding=~"UTF-16LE~" standalone=~"yes~"?><EmailServiceTransaction xmlns=~"http://xml.xxnamespace.com/Utility/Email/EmailService" ~" xmlns:imc=~"http://xml.xxnamespace.com/IMC~" xmlns:xsi=~"http://www.w3.org/2001/XMLSchema-instance~" xmlns:root=~"http://xml.xxnamespace.com/RootTypes~" xmlns:email=~"http://xml.xxnamespace.com/Utility/Email~" xsi:schemaLocation=~"http://xml.xxnamespace.com/Utility/Email/EmailService http://dev.xxnamespace.com/Utility/Email/EmailService/V10-TRX-EmailService.xsd~"><EmailServiceInformation><EmailServiceDetail __pbband=~"detail~"><ApplicationIdentifier> applicationidentifier </ApplicationIdentifier><AddresseeInformation><AddresseeDetail><Number> imcnumber </Number></AddresseeDetail></AddresseeInformation><EmailMessageInformation><Ema
    ---------- Done 2 Matches Found On "temp_xml":
    ---------- Finished Searching Target darwin for 'temp_xml'    (9:52:41 AM)

    Maybe "extraneous" is an incorrect term.  Apparantly, based upon the writeup within Wiki, the parser I am using does not interpret the "&quot;"?  How do I find which parser is being utilized and how to control it?
    <<<
    If the document is read by an XML parser that does not or cannot read external entities, then only the five built-in XML character entities (see above) can safely be used, although other entities may be used if they are declared in the internal DTD subset.
    If the document is read by an XML parser that does read external entities, then the five built-in XML character entities can safely be used. The other 248 HTML character entities can be used as long as the XHTML DTD is accessible to the parser at the time the document is read. Other entities may also be used if they are declared in the internal DTD subset.
    >>>

  • Write two functions to find the the number of elements in a linked list?

    I am trying to Write two functions to find the the number of elements in a linked list. One method using recursion and One method using a loop...
    //The linked List class is Represented here.
    public class lp {
    public int first;
    public lp rest;
    public lp(int first1, lp rest1)
    first = first1;
    rest = rest1;
    The program i wrote so far is
    import java.util.*;
    import linklist.lp;
    public class listCount{
    //loop function
    public static void show_list(lp list)
    int counter = 0;
    while(list != null)
    list = list.rest;
    counter++;
    System.out.println ("length computed with a loop:" + counter);
    //recursive function
    public static int recursive_count(lp list)
    if (list.first == null)
    return 0;
    else
    return recursive_count(list.rest) + 1;
    //main method
    public static void main (String args[])
    lp list1 = new lp(1, new lp(2, new lp(3, null)));
    show_list(list1);
    System.out.println("length computed with a recursion:" +
    recursive_count(list1));
    at the if (list.first == null) line i get the error " incomparable types:
    int and <nulltype>" I know this is a beginners error but please
    help...What should I do?

    byte, char, short, int, long, float, double, and boolean are primitives, not objects. They have no members, you cannot call methods on them, and they cannot be set to or compared with null.

  • ORA-01722: invalid number caused with SQL using bind variable

    Hi,
    Im am hoping that someone can help me resolve a problem thats only just services and is being experienced on quite a few clients.
    our application uses C++ exes and makes OCI calls to the database.
    what has happened in the last week or so, there has been quite a few invalid number errors being received on a prod server but strangly enough we cannot reproduct the error on our UAT system.
    The sql is using bind variables and the information in the trace file shows that a number is being used for the bind variable, here is an extract from one trace file:
    for some schemas, the bind variable value is some currupted value, i think:
    oacdty=01 mxl=32(21) mxlc=00 mal=00 scl=00 pre=00
    oacflg=03 fl2=1206001 frm=01 csi=178 siz=32 off=0
    kxsbbbfp=9a8d62b8 bln=32 avl=03 flg=05
    value="Â*d"
    but on another schema, the value used is:
    Bind#0
    oacdty=01 mxl=32(32) mxlc=00 mal=00 scl=00 pre=00
    oacflg=03 fl2=1206001 frm=01 csi=178 siz=32 off=0
    kxsbbbfp=c5f92718 bln=32 avl=04 flg=05
    value="2101"
    however both produce invalid number errors.
    I am relatively inexperienced as a DBA so would appreciate as much help as i can get.

    Could you post your sql statement that is being run.
    Also post the query plan from your uat system and the one from your production system (They are likely to be different)
    You can export the stats from your production system and run them in your uat system. If you do this, then the execution plans should be the same on both systems(dbms_stats) and if you have the same data you should run into the same problem on uat as in production.
    The root cause of this type of problem is having a column in a table which holds values which are of different datatypes. Typically there is a condition in the where clause which indicates that for example only numeric columns should be retrieved from the column which holds multiple data types. However since the optimizer is free to rewrite the query any way it sees fit, (It does not necessarily execute in the order the sql statement is written) it does not filter this data first, and therefore you hit non-numeric data and run into the invalid number error.
    You can use little techniques like using an inline view with rownum in the column list, to perform the first filter. This ensures that the inline view is executed on its own, rather than being merged (materialized) with the rest of the query.
    A quick temporary solution is to use a comparison like to_char(column_name) = variable
    Make sure your comparisons are correct and it doesn't negatively impact on performance of the query

  • Invalid number while loading a number with a coma as a group separator

    Hi,
    I'm loading a file in which I have numbers such as -9,999.99. The point is for decimal and the coma for the group separator (thousands).
    I did an alter session with a set to NLS_NUMERIC_CHARACTERS=".,"
    I have no errors with numbers such as -999.99 but as soon as I have a number with a thousand such 1,789.44 I got an invalid number error ??
    By the way when I tried to do the SQL statement directly, I also got the error
    SQL> select to_number('1,789.55','S999G999D99','NLS_NUMERIC_CHARACTERS=".,"') from dual;
    select to_number('1,789.55','S999G999D99','NLS_NUMERIC_CHARACTERS=".,"') from dual
    ERREUR à la ligne 1 :
    ORA-01722: Nombre non valide
    What am I missing ? What should I do to avoid the error ?
    Thxs in advance for your help.
    Rgds
    Yves

    Look carefully onto your format mask - it begins with 'S'.
    Format Model
    S
    Returns negative value with a leading minus sign (-).
    Returns positive value with a leading plus sign (+).
    Returns negative value with a trailing minus sign (-).
    Returns positive value with a trailing plus sign (+).
    Restriction: The S format element can appear only in the first or last position of a number format model.
    SQL> select to_number('+1,789.55','S999G999D99','NLS_NUMERIC_CHARACTERS=''.,''') from dual
      2  /
    TO_NUMBER('+1,789.55','S999G999D99','NLS_NUMERIC_CHARACTERS=''.,''')
                                                                 1789.55
    SQL> select to_number('1,789.55','999G999D99','NLS_NUMERIC_CHARACTERS=''.,''') from dual
      2  /
    TO_NUMBER('1,789.55','999G999D99','NLS_NUMERIC_CHARACTERS=''.,''')
                                                               1789.55Rgds.

  • Understanding NVL: INVALID NUMBER in NVL Function

    Hi,
    The below query is a part of a cursor which takes in p_po_number as input with datatype same as segment1 of po_headers_all (varchar2(20)). The columns event_system_id1 to event_system_id4 are varchar2(240). In most cases p_po_number will be null as the program is scheduled and the input parameter of p_po_number is not passed. In effect, for most cases, the below query will end like event_system_id1 = NVL(NULL,event_system_id1)
    I am getting an error of INVALID NUMBER
    SELECT TO_NUMBER (event_system_id1)
    FROM c_fnd_intf_transact_q
    WHERE event_system_id2 = :p_organization_code
    AND event_system_id4 =
    DECODE (:p_po_type,
    :vgc_internal, 'XXX',
    :vgc_standard
    AND event_system_id1 =
    NVL (p_po_number, event_system_id1)
    I modified the query to
    SELECT event_system_id1
    FROM c_fnd_intf_transact_q
    WHERE event_system_id2 = :p_organization_code
    AND event_system_id4 =
    DECODE (:p_po_type,
    :vgc_internal, 'XXX',
    :vgc_standard
    AND event_system_id1 =
    NVL (p_po_number, event_system_id1)
    which still threw the same error thus ruling out the cause of the issue being that to_number leaving only the implicit conversions of NVL.
    I further modified the query to
    SELECT TO_NUMBER (event_system_id1)
    FROM c_fnd_intf_transact_q
    WHERE event_system_id2 = :p_organization_code
    AND event_system_id4 =
    DECODE (:p_po_type,
    :vgc_internal, 'XXX',
    :vgc_standard
    AND p_po_number is not null
    which gave me the desired result in a round about way.
    What confuses me here is both p_po_number and event_system_id1 are of varchar2 type. Why am I getting the error of INVALID NUMBER here and why is NVL converting the second parameter NUMBER datatype when the first one is VARCHAR2 even though null.
    I am working in Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production.
    P.S: The column event_system_id1 is not restricted to store numbers alone. It also contains character values though I use it only for storing number as it is shared table.

    Well, the expression
    NVL (p_po_number, event_system_id1)
    has NUMBER and VARCHAR2 elements, and you say "+P.S: The column event_system_id1 is not restricted to store numbers alone+" , and the documentation:
    http://download.oracle.com/docs/cd/E14072_01/server.112/e10592/functions117.htm
    says:
    +The arguments expr1 and expr2 can have any data type. If their data types are different, then Oracle Database implicitly converts one to the other. If they are cannot be converted implicitly, the database returns an error. The implicit conversion is implemented as follows:+
    +•If expr1 is character data, then Oracle Database converts expr2 to the data type of expr1 before comparing them and returns VARCHAR2 in the character set of expr1.+
    +•If expr1 is numeric, then Oracle determines which argument has the highest numeric precedence, implicitly converts the other argument to that data type, and returns that data type.+
    Exactly what is it you don't understand?
    Regards, A

  • Errors on IMAQ Train SVM due to invalid number of labels in weighted cost

    I get errors when I try to train texture using 'IMAQ Train SVM' due to invalid number of labels in weighted cost. I could not find much information about weighted cost for the 'Model Options' input. What type of label needs to be supplied and how many? I could not find any related information in NIVisionConcepts document. Are there any other references?
    Thanks,
    -ygno

    Hi ygno,
    According to this help document you need an array of labels and weight. Make sure you initialize the array when you use the VI and have the appropriate amount of elements in the array.
    Paolo F.
    National Instruments
    Applications Engineer

  • Count number of elements

    Dear All,
    probably there is somethin wrong in how I use the xmlsequence...
    I have a table called XML_WORD with a fiels with XML Docs called XML_CONTENT
    As you see what I want to try is to count the number of elements into a certain node...
    What is wrong in the statement I wrote?
    Thanks a lot and hope this will solve my problem with XML_SEQUENCE.
    Stefano
    SQL> desc XML_WORD
    Name Null? Type
    ID NUMBER
    WORD_ID CHAR(40)
    LEMMA CHAR(60)
    XML_CONTENT SYS.XMLTYPE(XMLSchema "http:
    //word.xsd" Element "word")
    STORAGE Object-relational TY
    PE "word5828_T"
    IS_ACTIVE NUMBER
    RELEASE_CODE NUMBER
    SQL> edit
    Wrote file afiedt.buf
    1 select count(*)
    2 from XML_WORD,
    3 table (xmlsequence(extract(XML_CONTENT,'count(/word/noun/sense[1]/collocation')))
    4* where ID=9973
    SQL> /
    from XML_WORD,
    ERROR at line 2:
    ORA-31013: Invalid XPATH expression

    Sure - thanks for the time and thoughts.
    I am using the schema you helped me with a bit ago, Re: unique constraint defined in xsd
    I have tried to create a stored function that will return the number of maps per username and also one that will return the map elements based on a passed username.
    CREATE OR REPLACE FUNCTION COUNTMAPS(userName varchar2)
    return number
    as numMaps number;
    begin
    select count(*)
    into numMaps
    from mapsetxml,
    table (xmlsequence(extract(object_value,'/mapset/map')))
    where existsNode(object_value, '/mapset[" ' ||userName|| ' "]')=1;
    return numMaps;
    end;
    I get the total number of maps, not the number of maps associated with a particular user.

  • Serial number for Elements v11

    I am trying to get the serial number for Elements v11.  I go to adobe.com/go/getserial but it keeps telloing me that my redemption code is invalid.  What do I do?

    your serial number will continue to work with the correct product.
    if you are trying to activate more than twice, you will see an activation count error.  in that situation contact adobe support, contact adobe support by clicking here and, when available, click 'still need help', https://helpx.adobe.com/contact.html
    if you're seeing a different message, what is it?

  • View Debug: ORA-01722: invalid number

    Has anyone come across this problem in 4.0.2.00.06 when viewing debug information you get ORA-01722: invalid number in the interactive report when you drill down into the debug identifier? The XML chart displays Ok and I get the information in the top section. e.g. elapsed time information.
    As a test I've cleared the contents of WWV_FLOW_DEBUG_MESSAGES table and rerun debug mode but the problem persists.

    Jeff's work around is correct - if you remove the graph column, you should be able to display the rest of the report. I've found that this error primarily occurs when changing the session time zone (or using Automatic Time Zone support), but there may be other conditions which this also occurs.
    This was a bug that was filed and fixed recently for Application Express 4.1.
    Joel

  • Case When Statement and ORA:01722 Invalid number error

    Hi folks, I have posted this under another heading as well under E-business suite so apologies if some you have already seen it but I would really appreciate some help on this one. Any suggestions are most welcome.
    We are trying to put together a calculation that returns the number of days absent an individual has had in a given time period. We need to cater for those absences that started before the period and are closed during it, absence that start during the period and end after it, and those that open and close within it.
    The period is always a rolling 6 months from sysdate.
    This is the calc we have come up with so far which works for some people but we get the invalid number error if the absence includes a half day - so 0.5, 1.5,etc.
    This is probably over complicated but we are not techie at all so are learning as we go!
    We are using the HRMS - Administration - Oracle Human Resources (Core) business area in 10G and the Absence Attendance and Person folders.
    SUM(TO_NUMBER(NVL(( CASE WHEN Absence Attendance.Actual Start Date < TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY') THEN ( CASE WHEN Absence Attendance."Actual End Date" > SYSDATE THEN ( WORKING_DAYS_BETWEEN(TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY'),SYSDATE) ) ELSE ( CASE WHEN ( CASE WHEN TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY') >= Absence Attendance.Actual Start Date THEN ( WORKING_DAYS_BETWEEN(TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY'),Absence Attendance."Actual End Date") ) ELSE ( CASE WHEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,Absence Attendance."Actual End Date") ) IS NULL THEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,SYSDATE) ) ELSE ( CASE WHEN SYSDATE <= Absence Attendance."Actual End Date" THEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,SYSDATE) ) ELSE ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,Absence Attendance."Actual End Date") ) END ) END ) END ) IS NULL THEN ( WORKING_DAYS_BETWEEN(TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY'),SYSDATE) ) ELSE ( CASE WHEN TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY') >= Absence Attendance.Actual Start Date THEN ( WORKING_DAYS_BETWEEN(TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY'),Absence Attendance."Actual End Date") ) ELSE ( CASE WHEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,Absence Attendance."Actual End Date") ) IS NULL THEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,SYSDATE) ) ELSE ( CASE WHEN SYSDATE <= Absence Attendance."Actual End Date" THEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,SYSDATE) ) ELSE ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,Absence Attendance."Actual End Date") ) END ) END ) END ) END ) END ) ELSE ( CASE WHEN ( CASE WHEN TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY') >= Absence Attendance.Actual Start Date THEN ( WORKING_DAYS_BETWEEN(TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY'),Absence Attendance."Actual End Date") ) ELSE ( CASE WHEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,Absence Attendance."Actual End Date") ) IS NULL THEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,SYSDATE) ) ELSE ( CASE WHEN SYSDATE <= Absence Attendance."Actual End Date" THEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,SYSDATE) ) ELSE ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,Absence Attendance."Actual End Date") ) END ) END ) END ) IS NULL THEN ( WORKING_DAYS_BETWEEN(TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY'),SYSDATE) ) ELSE ( CASE WHEN TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY') >= Absence Attendance.Actual Start Date THEN ( WORKING_DAYS_BETWEEN(TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY'),Absence Attendance."Actual End Date") ) ELSE ( CASE WHEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,Absence Attendance."Actual End Date") ) IS NULL THEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,SYSDATE) ) ELSE ( CASE WHEN SYSDATE <= Absence Attendance."Actual End Date" THEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,SYSDATE) ) ELSE ( Absence Attendance.Duration Days ) END ) END ) END ) END ) END ),( DAYS_BETWEEN(Absence Attendance.Actual Start Date,Absence Attendance."Actual End Date") )),'999999990D00'))

    Hi,
    It could be that this is because you are using SYSDATE which contains the time as a fraction rather than TRUNC(SYSDATE) which just contains the current time. It could be that your working_dates_between raises this error.
    However, your formula is far more complicated than it needs to be.
    Firstly, you want to look at the date window ADD_MONTHS(TRUNC(SYSDATE), -6) to TRUNC(SYSDATE). Then you want to look at the portion of the absence that falls in the date window. This is GREATEST(Absence Attendance.Actual Start Date, ADD_MONTHS(TRUNC(SYSDATE), -6)) to LEAST(NVL(Absence Attendance."Actual End Date",TRUNC(SYSDATE)), TRUNC(SYSDATE)). You may need to add 1 to the absence end date because this is the last day of their absence rather than the date they return. It depends how you calculate the days between the start and end
    date of the absence. You can create calculations for the start and end date of the absences within the 6 months time window. Create calculation AbsenceStart as
    GREATEST(Absence Attendance.Actual Start Date, ADD_MONTHS(TRUNC(SYSDATE), -6))
    and AbsenceEnd as
    LEAST(NVL(Absence Attendance."Actual End Date",TRUNC(SYSDATE)), TRUNC(SYSDATE))
    Then you need to only pick up absence that a part of the absence in your 6 month date window. You can use a condition in the workbook or a condition in a case statement to do this. You then need to calculate the difference between these dates and SUM all the values.
    SUM(CASE WHEN AbsenceEnd >= AbsenceStart THEN WORKING_DAYS_BETWEEN(AbsenceStart, AbsenceEnd) END)
    That's it. Not so complicated after all.
    Rod West

  • Case When Statement and ORA:1722 Invalid number error

    Sorry I posted this in the wrong forum - I have the answer now
    Cheers
    HELP!!!
    We are trying to put together a calculation that returns the number of days absent an individual has had in a given time period. We need to cater for those absences that started before the period and are closed during it, absence that start during the period and end after it, and those that open and close within it.
    The period is always a rolling 6 months from sysdate.
    This is the calc we have come up with so far which works for some people but we get the invalid number error if the absence includes a half day - so 0.5, 1.5,etc.
    This is probably over complicated but we are not Techie at all so are learning as we go! We are using the HRMS - Administration - Oracle Human Resources (Core) business area in 10G and the Absence Attendance and Person folders.
    SUM(TO_NUMBER(NVL(( CASE WHEN Absence Attendance.Actual Start Date < TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY') THEN ( CASE WHEN Absence Attendance."Actual End Date" > SYSDATE THEN ( WORKING_DAYS_BETWEEN(TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY'),SYSDATE) ) ELSE ( CASE WHEN ( CASE WHEN TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY') >= Absence Attendance.Actual Start Date THEN ( WORKING_DAYS_BETWEEN(TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY'),Absence Attendance."Actual End Date") ) ELSE ( CASE WHEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,Absence Attendance."Actual End Date") ) IS NULL THEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,SYSDATE) ) ELSE ( CASE WHEN SYSDATE <= Absence Attendance."Actual End Date" THEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,SYSDATE) ) ELSE ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,Absence Attendance."Actual End Date") ) END ) END ) END ) IS NULL THEN ( WORKING_DAYS_BETWEEN(TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY'),SYSDATE) ) ELSE ( CASE WHEN TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY') >= Absence Attendance.Actual Start Date THEN ( WORKING_DAYS_BETWEEN(TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY'),Absence Attendance."Actual End Date") ) ELSE ( CASE WHEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,Absence Attendance."Actual End Date") ) IS NULL THEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,SYSDATE) ) ELSE ( CASE WHEN SYSDATE <= Absence Attendance."Actual End Date" THEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,SYSDATE) ) ELSE ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,Absence Attendance."Actual End Date") ) END ) END ) END ) END ) END ) ELSE ( CASE WHEN ( CASE WHEN TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY') >= Absence Attendance.Actual Start Date THEN ( WORKING_DAYS_BETWEEN(TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY'),Absence Attendance."Actual End Date") ) ELSE ( CASE WHEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,Absence Attendance."Actual End Date") ) IS NULL THEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,SYSDATE) ) ELSE ( CASE WHEN SYSDATE <= Absence Attendance."Actual End Date" THEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,SYSDATE) ) ELSE ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,Absence Attendance."Actual End Date") ) END ) END ) END ) IS NULL THEN ( WORKING_DAYS_BETWEEN(TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY'),SYSDATE) ) ELSE ( CASE WHEN TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY') >= Absence Attendance.Actual Start Date THEN ( WORKING_DAYS_BETWEEN(TO_DATE(ADD_MONTHS(SYSDATE,-6),'DD-Mon-YYYY'),Absence Attendance."Actual End Date") ) ELSE ( CASE WHEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,Absence Attendance."Actual End Date") ) IS NULL THEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,SYSDATE) ) ELSE ( CASE WHEN SYSDATE <= Absence Attendance."Actual End Date" THEN ( WORKING_DAYS_BETWEEN(Absence Attendance.Actual Start Date,SYSDATE) ) ELSE ( Absence Attendance.Duration Days ) END ) END ) END ) END ) END ),( DAYS_BETWEEN(Absence Attendance.Actual Start Date,Absence Attendance."Actual End Date") )),'999999990D00'))
    Edited by: CPearce on Sep 25, 2008 8:03 AM

    Hi,
    It could be that this is because you are using SYSDATE which contains the time as a fraction rather than TRUNC(SYSDATE) which just contains the current time. It could be that your working_dates_between raises this error.
    However, your formula is far more complicated than it needs to be.
    Firstly, you want to look at the date window ADD_MONTHS(TRUNC(SYSDATE), -6) to TRUNC(SYSDATE). Then you want to look at the portion of the absence that falls in the date window. This is GREATEST(Absence Attendance.Actual Start Date, ADD_MONTHS(TRUNC(SYSDATE), -6)) to LEAST(NVL(Absence Attendance."Actual End Date",TRUNC(SYSDATE)), TRUNC(SYSDATE)). You may need to add 1 to the absence end date because this is the last day of their absence rather than the date they return. It depends how you calculate the days between the start and end
    date of the absence. You can create calculations for the start and end date of the absences within the 6 months time window. Create calculation AbsenceStart as
    GREATEST(Absence Attendance.Actual Start Date, ADD_MONTHS(TRUNC(SYSDATE), -6))
    and AbsenceEnd as
    LEAST(NVL(Absence Attendance."Actual End Date",TRUNC(SYSDATE)), TRUNC(SYSDATE))
    Then you need to only pick up absence that a part of the absence in your 6 month date window. You can use a condition in the workbook or a condition in a case statement to do this. You then need to calculate the difference between these dates and SUM all the values.
    SUM(CASE WHEN AbsenceEnd >= AbsenceStart THEN WORKING_DAYS_BETWEEN(AbsenceStart, AbsenceEnd) END)
    That's it. Not so complicated after all.
    Rod West

Maybe you are looking for

  • Problems w. RFC_READ_TABLE and TABLE_ENTRIES_GET_VIA_RFC  - 4.6c to 4.7

    Hello, i've used, although it's not recommended, RFC_READ_TABLE successfully with 4.6c to read various QM tables, like 'QALS', 'QAVE' etc. Now the company migrated from 4.6c to 4.7 and my modules stopped working partially. When trying to read 'QALS',

  • Upgrading to Tiger is it worth it?

    thinking of upgrading to tiger is it worth it? Also is there a how to page out there somewhere so i can see how to do it. Would i have to save all my files prior to the change over?

  • IPhoto 9.4.2 KEEPS Crashing!!

    I keep on opening iPhoto 9.4.2 and it crashes every time I open it.  Any suggestionso on how to fix it? Process:         iPhoto [3107] Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto Identifier:      com.apple.iPhoto Version:        

  • Client push in foreign forests without AD integration

    I am working through a scenario where an SCCM installation is not making use of AD integration and there will be clients in several foreign, untrusted forests. I am looking at how to use the Client Push function to install the client on endpoints. As

  • Quality of pictures added to a Movie

    Hi, I am trying to add pictures to a movie but it seems like iMovie HD changes the aspect ratio and resolution of the picture, which results in poor quality of the image. Any suggestions on how to change that or get around it? Thanks,