ORA-20006: ORA-01722: invalid number ORA-06512: at "APPS.WF_NOTIFICATION"

Hi,
I am having a wft program, which checks a function activity and depending on the value returned sends difference notifications.
The package body completed successfully from backend and while running the workflow program it sends a notification also. But while opening the notification it gives the following error,
ORA-20006: ORA-01722: invalid number ORA-06512: at "APPS.WF_NOTIFICATION", line 5328 ORA-06512: at line 5
I have 3 procedures in my package body and all the 3 procedures have exceptions defined as follows, if they are using any workflow activities.
==========================================================
EXCEPTION
     WHEN OTHERS THEN
          WF_CORE.context (
          'WFCustCheck',
          'MisCustDataFromTableDoc',
          document_id,
          display_type,
          document,
          document_type,
          SQLERRM
RAISE_APPLICATION_ERROR (-20006, SQLERRM);
==========================================================
But I am not able to figure out what is causing this error. What does this "line 5328 ORA-06512: at line 5" in the error message indicate?. My package body has only 600 lines. And why is the error message not displaying the procedure name? though I have defined the procedure name in the exception.
What is the best way to get the procedure name in the error message? So that it becomes easier for identifying which procedure is causing the erro?
Please let me know.
Thanks

Hi,
Instead of the RAISE_APPLICATION_ERROR command, just replace that with RAISE;
The error is coming out of the package that is sending the notification (WF_NOTIFICATION), which is invoked when you open the notification. I'm guessing that line 5 is the line in your code though.
Are you using documents to send the notification, or are they purely defined in the .wft file?
Matt
Alpha review chapters from my book "Developing With Oracle Workflow" are available on my website:
http://www.workflowfaq.com
http://forum.workflowfaq.com
NEW! - WorkflowFAQ Blog at http://thoughts.workflowfaq.com

Similar Messages

  • ORA-01722: invalid number Error during R12.1.1 upgrade

    Dear Experts,
    During u6678700 driiver upgrade,one of the woker failed with the following error:
    ATTENTION: All workers either have failed or are waiting:
    FAILED: file jairgmsetupmig.sql on worker 1.
    ATTENTION: Please fix the above failed worker(s) so the manager can continue.
    From the adwork001.log ,
    sqlplus -s APPS/***** @/&un_ja &batchsize 3 u03/oracle/CRP1PROD/apps/apps_st/appl/ja/12.0.0/patch/11
    5/sql/jairgmsetupmig.sql 12
    DECLARE
    ERROR at line 1:
    ORA-01722: invalid number
    ORA-06512: at line 105
    Could not find much in internet.
    Please advice.

    From the adwork001.log ,
    sqlplus -s APPS/***** @/&un_ja &batchsize 3 u03/oracle/CRP1PROD/apps/apps_st/appl/ja/12.0.0/patch/11
    5/sql/jairgmsetupmig.sql 12
    DECLARE
    ERROR at line 1:
    ORA-01722: invalid number
    ORA-06512: at line 105Have you tried to check line 105 in the script and see if it gives any clue?
    Could not find much in internet.
    The only hit I have found in (Bug 7120055 : FAILED: FILE JAIRGMSETUPMIG.SQL ON WORKER 1) but it does not tell much, so you may need to log a SR and get more details about this bug.
    Thanks,
    Hussein

  • Cwm2_olap_metadata_refresh.mr_refresh ORA-01722: invalid number

    Hi,
    M getting these error message after refresh (cwm2_olap_metadata_refresh.mr_refresh) call.
    ERROR::
    Object Type:
    Object Owner:
    Object Name:
    Secondary Name:
    Tertiary Name:
    ORA-01722: invalid number
    ERROR:
    declare
    ERROR at line 1:
    ORA-01722: invalid number
    ORA-06512: at line 56
    But all catalog, cube and Dim are showd valid object in DB. But I am not able to use them through JDev. In JDev it is only showing Catalog, not measure , Dim associated with that. Coz of this I ma not able to create any presentation etc.
    In table SYS.DBA_REGISTRY RAC (COMP_ID) Oracle9i Real Application Clusters
    Version 9.2.0.4.0 is displayed INVALID. Any clue?
    Any help and clue will b gr8 help.

    Which operating system are you using? Have you applied the 9.2.0.4 OLAP specific patch? Ideally you should upgrade your server to 9.2.0.5 as this is the latest patchset. Depending on your platform there may also be OLAP specific patches you need to apply on top of the 9.2.0.5 database patch.
    Did you build this schema yourself? If so there are additional CWM2 pl/sql validation routines you can execute to test your metadata. The status of cubes and dimensions as reported within OEM is not 100% accurate as OEM does not test all the CWM metadata.
    Details of the CWM2 validation packages are contained in the database OLAP manuals.
    Hope this helps
    Business Intelligence Beans Product Management Team
    Oracle Corporation

  • ORA-01722: invalid number - when last column has numbers that has a decimal seperator

    Below is the sample data -
    FRT,1.64,VAT,23.36
    FRT,1.64,VAT,23.36
    When I try to convert 1.64 to to_number all is good but when I do the same with 23.36 I get the following error
    ORA-29913: error in executing ODCIEXTTABLEFETCH callout
    ORA-01722: invalid number
    ORA-06512: at "SYS.ORACLE_LOADER", line 52
    I tried this query as well
    select to_number(CONSIGNMENT_NET_VALUE) as Col1 from DUMP_EXT
    select to_number(CONSIGNMENT_NET_VALUE,'9999999999D99999','NLS_NUMERIC_CHARACTERS='',.''' ) as Col1 from DUMP_EXT --> 268906.1
    getting the same error - any help greatly appreciated.
    T.
    Srini

    Hi,
    You can check this test case
    SQL> !cat a.txt
    FRT,1.64,VAT,23.36
    FRT,1.64,VAT,56.36
    FRT,1.64,VAT,23.36
    SQL> create table DUMP_EXT
        Charge_ID_FRT VARCHAR2(50),
        Net_Amount_VAT VARCHAR2(50),
        Charge_ID_VAT VARCHAR2(50),
        Consignment_Net_Value VARCHAR2(50)
    ORGANIZATION EXTERNAL
        (TYPE ORACLE_LOADER
        DEFAULT DIRECTORY DATA_DD_DIR
        ACCESS PARAMETERS
            (RECORDS DELIMITED BY '\n'
            SKIP 1
            BADFILE 'bad_%a_%p.bad'
            LOGFILE 'log.log'
            FIELDS TERMINATED BY ','
            MISSING FIELD VALUES ARE NULL
            REJECT ROWS WITH ALL NULL FIELDS
                Charge_ID_FRT CHAR(50),
                Net_Amount_VAT CHAR(50),
                Charge_ID_VAT CHAR(50),
                Consignment_Net_Value CHAR(50)
        LOCATION ('a.txt')
    reject limit 0;
      2    3    4    5    6    7    8    9   10   11   12   13   14   15   16   17   18   19   20   21   22   23   24   25   26   27   28 
    Table created.
    SQL> select charge_id_frt,net_amount_vat,charge_id_vat,consignment_net_value from dump_ext;
    CHARG NET_AMOUNT_VAT                                     CHARG CONSIGNMENT_NET_VALUE
    FRT   1.64                                               VAT   56.36
    FRT   1.64                                               VAT   23.36
    --- Get Error here
    SQL> select to_number(CONSIGNMENT_NET_VALUE,'99D99','NLS_NUMERIC_CHARACTERS='',.''' ) as Col1 from DUMP_EXT
      2  /
    select to_number(CONSIGNMENT_NET_VALUE,'99D99','NLS_NUMERIC_CHARACTERS='',.''' ) as Col1 from DUMP_EXT
    ERROR at line 1:
    ORA-29913: error in executing ODCIEXTTABLEFETCH callout
    ORA-01722: invalid number
    -- Check the Variable at DB level
    SQL>   SELECT value   FROM NLS_DATABASE_PARAMETERS  WHERE parameter='NLS_NUMERIC_CHARACTERS';
    VALUE
    -- Use the Query like
    SQL> select to_number(CONSIGNMENT_NET_VALUE,'99D99','NLS_NUMERIC_CHARACTERS=''.,''' ) as Col1 from DUMP_EXT;
          COL1
         56.36
         23.36
    HTH

  • Recieving ORA-01722 invalid number error while creating a materialized view

    Hi,
    I am receiving a ORA-01722 invalid number error while creating a materialized view. when run the select statement of the view i don't get any error, but when i use the same select statement to create a materialized view i receive this error. Could any please help in resolving this error. Here is the code i am using to create a materialized view.
    CREATE MATERIALIZED VIEW MV_EBS_CH_CLOSED
    REFRESH FORCE ON DEMAND
    AS
    SELECT DISTINCT kr.request_id, org.org_unit_name,
    ebs_ch_ticket_type (kr.request_id) ticket_type,
    DECODE
    (kr.status_code,
    'CLOSED_SUCCESS', kr.last_update_date,
    'IN_PROGRESS', (SELECT MAX (start_time)
    FROM ebs_ch_datastore ecd1
    WHERE kr.request_id = ecd1.request_id
    AND workflow_step_name =
    'Final BA Review and Deployment Exit Criteria')
    ) closed_date,
    substr(krhd.visible_parameter12,1,10) siebel_start_date,
    kr.creation_date itg_start_date
    FROM kcrt_requests kr,
    kcrt_request_types krt,
    kcrt_req_header_details krhd, kcrt_request_details krd1,
    (SELECT koum.user_id user_id,
    DECODE (koup.org_unit_name,
    'IT Implementations', 'CHS - Service Management BA',
    koup.org_unit_name
    ) org_unit_name
    FROM krsc_org_unit_members koum, krsc_org_units koup
    WHERE 1 = 1
    AND 'Y' = koup.enabled_flag
    AND koum.org_unit_id = koup.org_unit_id
    AND EXISTS (
    SELECT 'X'
    FROM krsc_org_units kouc
    WHERE koup.org_unit_id = kouc.org_unit_id
    START WITH kouc.parent_org_unit_id =
    ANY (SELECT org_unit_id
    FROM krsc_org_units krsc_org_units1
    WHERE 'Clearinghouse' =
    org_unit_name)
    CONNECT BY kouc.parent_org_unit_id =
    PRIOR kouc.org_unit_id)
    UNION
    SELECT kou.manager_id user_id,
    DECODE
    (kou.org_unit_name,
    'IT Implementations', 'CHS - Service Management BA',
    kou.org_unit_name
    ) org_unit_name
    FROM krsc_org_units kou
    WHERE 'Y' = kou.enabled_flag
    START WITH kou.parent_org_unit_id =
    (SELECT org_unit_id
    FROM krsc_org_units krsc_org_units2
    WHERE 'Clearinghouse' = org_unit_name)
    CONNECT BY kou.parent_org_unit_id = PRIOR kou.org_unit_id) org
    WHERE krt.request_type_id = kr.request_type_id
    AND krt.request_type_name IN ('Bug Fix', 'IT Enhancement')
    and kr.REQUEST_ID = krd1.request_id
    and krd1.batch_number = 1
    AND kr.request_id = krhd.request_id
    AND org.user_id in (krd1.parameter4, krd1.parameter5, krd1.parameter7)
    AND ( 'CLOSED_SUCCESS' = kr.status_code
    OR 'IN_PROGRESS' = kr.status_code
    AND kr.request_id IN (
    SELECT request_id
    FROM (SELECT DISTINCT request_id,
    MAX
    (start_time)
    closed_date
    FROM ebs_ch_datastore
    WHERE 'Final BA Review and Deployment Exit Criteria' =
    workflow_step_name
    GROUP BY request_id))
    Thanks,
    Shaik Mohiuddin

    This error occurs when you try to create a materialized view , but if you run the sql the results are perfectly fine. Well it happend to me also and to fix this I made sure all the coulmns have the same data type which are used in joins or in where clause.
    use
    where
    to_number(col1)=to_number(col2) and to_number(col3)=to_number(col4)
    hope this helps..

  • 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?

  • Error Message (ORA-01722: invalid number) when add amount into Number field

    I am using VB.net, trying to insert data into a field called amt with Data Type 'Number'.
    my vb.net code is as follows
    Dim oradb As String = DatabaseConnectionString
    Dim AmountValue As Decimal = 123.45
    'get the connection
    Dim conn As New OracleConnection(oradb)
    'open the database connection
    conn.Open()
    'create oracle command
    Dim cmd As New OracleCommand("INSERT INTO TBL1 (AMT) VALUES (:AMT)", conn)
    cmd.CommandType = CommandType.Text
    cmd.Parameters.Add(":AMT", OracleDbType.Decimal, AmountValue, ParameterDirection.Input)
    'Execute
    cmd.ExecuteNonQuery()
    I got error message "ORA-01722: invalid number". Please help

    Did you also change the below line before inserting Integer 123:
    cmd.Parameters.Add(":AMT", OracleDbType.Decimal, AmountValue, ParameterDirection.Input)
    to
    cmd.Parameters.Add(":AMT", OracleDbType.Integer, AmountValue, ParameterDirection.Input)

  • How to determine offending column in ORA-01722: invalid number error ...

    When an error like
    ORA-01722: invalid number error
    occurs and you are dealing with many columns that could be the 'culprit', does anyone have a method by which
    you can quickly determine offending column?

    SQL PLus will tell you:
    SQL> create table t
      2  (col1  number
      3  ,col2  number
      4  ,col3  number
      5  ,col4  number
      6  ,col5  number
      7  );
    Table created.
    SQL> create table x
      2  (col1  varchar2(10)
      3  ,col2  varchar2(10)
      4  ,col3  varchar2(10)
      5  ,col4  varchar2(10)
      6  ,col5  varchar2(10)
      7  );
    Table created.
    SQL> insert into x values ('1','2','x','4','5');
    1 row created.
    SQL> insert into t(col1,col2,col3,col4,col5)
      2  select col1,col2,col3,col4,col5 from x;
    select col1,col2,col3,col4,col5 from x
    ERROR at line 2:
    ORA-01722: invalid numberAnd if you rearrange your sql like this, sql plus will give you the line number of the offending column:
    SQL> insert into t
      2  (col1
      3  ,col2
      4  ,col3
      5  ,col4
      6  ,col5
      7  )
      8  select col1
      9        ,col2
    10        ,col3
    11        ,col4
    12        ,col5
    13  from x;
          ,col3
    ERROR at line 10:
    ORA-01722: invalid number

  • Please help: Case Statement - ORA-01722: invalid number Error

    Hi All,
    I'm trying to use Case statement to recode Cancelled statuses into two groups
    'Reject' if the difference between first date and last date is less than 29 and
    'Accept' if the difference between first date and last date is greater than 30
    Here is my 'test' data:
    STATUS     FIRST_DATE     LAST_DATE
    Transfer     10/08/2011     10/09/2011
    Mover     10/08/2011     15/09/2011
    Cancel     10/08/2011     16/09/2011
    Cancel     10/08/2011     5/09/2011
    Here is the syntax
    select a.*,
    (CASE WHEN a.STATUS ='Cancel' THEN (round(a.LAST_DATE-a.FIRST_DATE))
    ELSE 0
    END) CAN_DAYS,
    (CASE WHEN 'CAN_DAYS' >29 THEN 'Reject'
    WHEN 'CAN_DAYS' <30 THEN 'Accept'
    END) Reject_Accept
    from test a
    The first CASE statement works fine and gives me this
    STATUS     FIRST_DATE     LAST_DATE     CAN_DAYS
    Transfer     10/08/2011     10/09/2011     0
    Mover     10/08/2011     15/09/2011     0
    Cancel     10/08/2011     16/09/2011     37
    Cancel     10/08/2011     5/09/2011     26
    but the second CASE produces ORA-01722: invalid number Error. It is something to do with the CAN_DAYS data type, Oracle doesn't see it as Numeric i think.
    The result i want to see would be
    STATUS     FIRST_DATE     LAST_DATE     CAN_DAYS Reject_Accept
    Transfer     10/08/2011     10/09/2011     0
    Mover     10/08/2011     15/09/2011     0
    Cancel     10/08/2011     16/09/2011     37 Accept
    Cancel     10/08/2011     5/09/2011     26 Reject
    Could someone please help me to fix the syntax?
    Thank you in advance,

    This seems to give you your desired results...
    with test as
      ( select 'Transfer' as status, to_date('10/08/2011') as first_date, to_date('10/09/2011') as last_date  from dual union all
        select 'Mover'             , to_date('10/08/2011')              , to_date('15/09/2011')               from dual union all
        select 'Cancel'            , to_date('10/08/2011')              , to_date('16/09/2011')               from dual union all
        select 'Cancel'            , to_date('10/08/2011')              , to_date('05/09/2011')               from dual
    select  status
         ,  first_date
         ,  last_date
         ,  CAN_DAYS
         ,  CASE
              WHEN CAN_DAYS =   0 THEN NULL
              WHEN CAN_DAYS <  30 THEN 'Reject'
              WHEN CAN_DAYS >= 30 THEN 'Accept'
            END  Reject_Accept
      from  ( select  status
                   ,  first_date
                   ,  last_date
                   ,  CASE
                        WHEN STATUS ='Cancel' THEN round(LAST_DATE-FIRST_DATE)
                        ELSE 0
                      END  CAN_DAYS
                from  test
    ;

  • User Accounts and ORA-01722: invalid number error

    Hello,
    I have been using Express for a month or so now but have very limited knowledge of how it works.
    My Problem:
    I have a listing screen for user records which creates records in table QAS_USERS.
    When I add a record it saves the data OK and put the record in the list.
    When I click on the record in the list it takes me to the edit screen and I can change
    the details and it works OK and all the changes get saved to the database.
    On the data entry screen I have a list of the User Groups so I can select what group
    the user will be in, usual details in username, fullname, email address, password etc..
    I then added a routine to create a USER in the APEX Manage USERs.
    It creates the record in my table QAS_USERS and it creates a APEX User Account with
    the correct details and the record is displayed in the list.
    So far so good.
    Now the errors start:
    1. When I look at the User Account in Administration -> Manage Application Express Users
    most of the details have been added but the User Group does not get allocated.
    2. The record I created in QAS_USERS appears in the list on my listing screen but when
    I click on the Edit Icon on the left of the list I get the following error appear
    when the screen changes to the edit screen:
    ORA-01722: invalid number
    Unable to fetch row error
    QAS_USER Table:
    ID NUMBER
    CREATED_ON DATE
    CREATED_BY VARCHAR2(10)
    CHANGED_ON DATE
    CHANGED_BY VARCHAR2(10)
    ACTIVE VARCHAR2(3)
    USERNAME VARCHAR2(10)
    FULLNAME VARCHAR2(30)
    TEAMLEADER VARCHAR2(3)
    TEAMLEADER_ID NUMBER
    LAB NUMBER
    DIRECTOR VARCHAR2(3)
    ACTION_MANAGER VARCHAR2(3)
    SDM VARCHAR2(3)
    GM VARCHAR2(3)
    EMAIL_ADDRESS VARCHAR2(50)
    PASSWORD VARCHAR2(12)
    SDTL VARCHAR2(3)
    FIRSTNAME VARCHAR2(30)
    LASTNAME VARCHAR2(30)
    GROUP_ID NUMBER
    USER_ID VARCHAR2(20)
    Process Script to create the Express User Account:
    Declare
    group_id NUMBER;
    BEGIN
    group_id := APEX_UTIL.get_group_id (:P15_GROUP_ID);
    APEX_UTIL.CREATE_USER (
    P_USER_NAME => :P15_USERNAME,
    P_FIRST_NAME => :P15_FIRSTNAME,
    P_LAST_NAME => :P15_LASTNAME,
    P_WEB_PASSWORD => :P15_PASSWORD,
    P_EMAIL_ADDRESS => :P15_EMAIL_ADDRESS,
    p_developer_privs => 'ADMIN',
    p_group_ids => group_id);
    END;
    If any one has any ideas I would be very grateful.
    Regards,
    Simon.

    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

  • 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>

  • Getting ORA-01722 - Invalid number error in SQL

    I am trying to run a query like
    SELECT NVL (ic.industryclassdesc, 'NULL') industryclass,
    NVL (hci.updated_by, 'NULL') updatedby,
    NVL (hci.operation, 'NULL') operation,
    hci.audittimestamp audittimestamp
    FROM xxx_company_inxxxx hci, xxx_industry ic
    WHERE hci.company_id = 9079496
    AND ic.industryclassid = hci.industryclass_id
    ORDER BY DECODE (hci.operation, 'D', 'X', hci.operation), hci.audittimestamp
    And getting the error - ORA-01722 - Invalid number.
    But the columns - ic.industryclassid, hci.industryclass_id and also hci.company_id are 'Number' datatype and also not nullable.
    Can anyone suggest a approch

    SELECT NVL (ic.industryclassdesc, 'NULL')
    > industryclass,
    NVL (hci.updated_by, 'NULL') updatedby,
    NVL (hci.operation, 'NULL') operation,
    hci.audittimestamp audittimestamp
    xxx_company_inxxxx hci, xxx_industry ic
    WHERE hci.company_id = 9079496
    AND ic.industryclassid = hci.industryclass_id
    BY DECODE (hci.operation, 'D', 'X', hci.operation),
    hci.audittimestamp
    And getting the error - ORA-01722 - Invalid number.
    Do not enter 'String' in the nvl function,if the column is number datatype,
    venki
    null

  • Varchar to number returns a ORA-01722-Invalid Number error

    I have a script where i am converting a varchar to number to be compared against a number.
    (To_Number(p.result_value,'999999.99') < 0 OR p.result_value < 0)
    this particular line is causing the error ORA-01722-Invalid Number.
    Is there any ideas as to why this happens and how I can resolve?
    Thanks in advance!

    The result_value column in Pay_Run_Result_Values is a varchar2 field.
    So you need to put in some additional logic to make sure that the row is having numbers alone before doing to_number.
    Cheers
    Ganesh

  • Error: ORA-01722: invalid number performing List of Values query.

    when i created a cascading select list, For the first time it worked properly then little later
    it is giving this error.
    Error: ORA-01722: invalid number performing List of Values query: "select distinct cl_name d, cl_no r from Kclient where gr_no = :P1_GRNO order by 1
    could any one please solve the problem?
    2. when i run the application. in all the items edit button is automatically seen
    including in the login screen.
    could any one identify what is the error and give me a solution.

    Is this better?
    select DISTINCT FIRST_NAME||' '||LAST_NAME display_value
          , ROW_ID return_value
      from "PSA_RESOURCE_MANAGER"
    where PSA_RESOURCE_MANAGER.ACTIVE_FLAG='Y'
       AND :P117_REPORTING_MANAGER = PSA_RESOURCE_MANAGER.REPORTING_MANAGER
       AND :P117_REPORTING_MANAGER <> -1 order by 1or
    select DISTINCT FIRST_NAME||' '||LAST_NAME display_value
          , ROW_ID return_value
      from "PSA_RESOURCE_MANAGER"
    where PSA_RESOURCE_MANAGER.ACTIVE_FLAG='Y'
       AND :P117_REPORTING_MANAGER = PSA_RESOURCE_MANAGER.REPORTING_MANAGER
       AND :P117_REPORTING_MANAGER != '-1' order by 1Is ROW_ID a column in your table by the way? If not, you should use ROWID (without the underscore)

  • ORA-01722: invalid number performing List of Values query

    I have a situation here where I want to pass string value(available in search field) to POP up key LOV on another page as default value.
    I passed item value in default field in POPup key LOV item.I am able to see string value but It also gave me following error.
    Error: ORA-01722: invalid number performing List of Values query: "select CUSTOMER_NAME, CUSTOMER_ID from (select customer_name, customer_id from hed_customers) wwvlovinlineviewname where CUSTOMER_ID = :WWV_LOV_RETURN_KEY_UTIL_1111".
    Without Default value, it work like champ.
    Please suggest how to get rid of this error
    Thanks in advance

    I hit the same problem.
    The thing is that, in APEX, a 'null' value in a form is not really null but gets passed on as '%'.
    When that gets compared to a number, 01722 will occur.
    A workaround is to define a 'value if null' that is an implicit number, like '-1'.
    And lets hope no one ever uses that as a real ID...
    Cheers
    Peter

Maybe you are looking for

  • How to generate 3 phase sine wave to output on ELVIS

    Hi .I need to make a star or delta connected circuit on ELVIS board.2 make this circuit I need 3 wave generator( with 120 phase shift) and one common ground and because the ELVIS function generator can only generate one wave I decided to generate cou

  • Bug in Contacts

    For SOme reason since the unable to install apps has been fixed I now can't add contacts on my Pre.  I get the Error message. "There was an error saving the contact. Please try again. I press OK Then  the message comes up  This Contact could not be s

  • What Happened to Automatic Brightness

    Where is the iPod touch 5th generation's automatic screen brightness feature in the menues? Just to reiterate I know the 4th generation could change the screen brightness that was a good help when the ambient area's light changes then the iPod isn't

  • SCM / PI Client Copy

    Does anyone have experience not using the preconfigured client (001) in PI or SCM?  We've copied those to 010 to match the productive client number of the rest of our systems. Is this a bad idea?  Should we stay with the preconfigured client?  It doe

  • Retina update for Adobe CS5?

    Does anyone using a Retina MacBook Pro know if Adobe has or will be updating CS5, especially Photoshop and InDesign? Thanks! Dan