How to compile invalid object after 10.2.0.2 to 10.2.0.5 upgrade in EBS R12

Hi,
We have total 31000 invalid object after 10.2.0.2 to 10.2.0.5 upgrade in EBS R12. How we compile these objects?

Ashish,
if you are seeing PLS-00801: internal error [1041] when trying to compile a package that is invalid, you may need to run utlirp.sql against the instance and then the utlrp.sql script. You need to pay attention to the manner in which you run these scripts. To run the utlirp.sql script you need to:
shutdown the instance
restart instance in upgrade mode
startup upgrade
run the utlirp.sql script @utlirp or @?/rdbms/admin/utlirp
shutdown the instance and restart normally
run utlrp.sql @utlrp or @?/rdbms/admin/utlrp
If you are running an auto-config instance, you can source the db environment, optionally switch to the $ORACLE_HOME/rdbms/admin folder and shutdown the instance:
sqlplus 'as /sysdba'
shutdown immediate
startup upgrade;
@utilrp
shutdown
startup
@utlrp
After compiling everything, I would shutdown the instance using the ./addbctl stop script and then restart it. As stated elsewhere, it can take time to compile the invalids--many hours in some cases. The utlirp.sql script may run for quite awhile before it completes since it is invalidating objects.
Please make sure you read up on utlirp.sql and PLS-00801 if that's what you are encountering.
Riley

Similar Messages

  • How to compile invalid objects parallel

    how to compile invalid objects parallelly in EBS 11i / 11g R2 DB in Linux

    SQL> alter package apps.AD_PA_SUBMIT_REQUEST compile body;
    Warning: Package Body altered with compilation errors.
    SQL> show error
    Errors for PACKAGE BODY APPS.AD_PA_SUBMIT_REQUEST:
    LINE/COL ERROR
    674/4 PL/SQL: Statement ignored
    674/16 PLS-00302: component 'SET_AGGREGATE_LIST' must be declared
    SQL> alter package AD_PA_SUBMIT_REQUEST compile;
    alter package AD_PA_SUBMIT_REQUEST compile
    ERROR at line 1:
    ORA-04043: object AD_PA_SUBMIT_REQUEST does not existPlease run adpasrb.pls and adpasrs.pls under $AD_TOP/patch/115/sql directory to recreate this package and see if you get the same error or not.
    SQL> alter package apps.AD_PA_INSERT_PACKAGE compile body;
    Warning: Package Body altered with compilation errors.
    SQL> show error
    Errors for PACKAGE BODY APPS.AD_PA_INSERT_PACKAGE:
    LINE/COL ERROR
    149/3 PL/SQL: SQL Statement ignored
    186/24 PL/SQL: ORA-02289: sequence does not exist
    SQL> show error
    Errors for PACKAGE BODY APPS.AD_PA_INSERT_PACKAGE:
    LINE/COL ERROR
    149/3 PL/SQL: SQL Statement ignored
    186/24 PL/SQL: ORA-02289: sequence does not existPlease run adpaipb.pls and adpaips.pls under $AD_TOP/patch/115/sql directory to recreate this package and see if you get the same error or not.
    SQL> alter package apps.CS_WF_ACTIVITIES_PKG compile body;
    Warning: Package Body altered with compilation errors.
    SQL> show error
    Errors for PACKAGE BODY APPS.CS_WF_ACTIVITIES_PKG:
    LINE/COL ERROR
    611/9 PL/SQL: SQL Statement ignored
    624/35 PL/SQL: ORA-00918: column ambiguously definedPlease see these docs.
    CS_WF_ACTIVITIES_PKG Invalid Package With "ORA-00918: column ambiguously defined" [ID 464633.1]
    Invalid Package CS_WF_ACTIVITIES_PKG [ID 375355.1]
    Thanks,
    Hussein

  • Invalid object after applying fa patch

    Dear all,
    Just now I had applied patch for FA & Generate message files from Generate Applications Files menu. How do I know that there are any invalid objects for FA after applying patch in order for me to run Compile APPS schema from adadmin to compile the invalid objects. What is the example for the invalid object message? What is the effect if I run Compile APPS schema eventhough there are no invalid object occur? Please advices.

    HI,
    Below is my last message after compiling the APPS Schema
    ======================================
    There are now 1 jobs remaining (current phase=pc_errchk):
    0 running, 1 ready to run and 0 waiting.
    Assigned: file aderrchk.sql on worker 1 for product ad username APPLSYS.Spawned Process 29807
    Completed: file aderrchk.sql on worker 1 for product ad username APPLSYS.
    Done compiling APPS schema(s) in parallel.
    Telling workers to quit...
    All workers have quit.
    Dropping FND_INSTALL_PROCESSES table...
    FND_INSTALL_PROCESSES table dropped.
    Dropping AD_DEFERRED_JOBS table...
    AD_DEFERRED_JOBS table dropped.
    Please check your log files for errors that may have occurred
    while compiling invalid objects.
    Be sure to look at the log file(s) for the parallel worker(s) which ran
    adpcpcln.pls and aderrchk.sql. These scripts display compilation errors
    and list objects which are still invalid.
    sqlplus -s APPS/***** @/test/oracle/testappl/ad/11.5.0/admin/sql/adinvrst.pls *****
    Spawned Process 29850
    Review the messages above, then press [Return] to continue.
    ===========================================
    I had run select owner, object_type, object_name from dba_objects where status = 'INVALID' order by 1,2; once again to look for an INVALID object but the INVALID object still appear.
    Please advice. Do I need to run compile APPS Schema once again?

  • Compile invalid objects in apps schema

    i make compiled the apps schema by
    adadmin,utlrp.sql,compiled manual but still i am getting INVALID objects .. how to compile these objects ?
    Below is the output
    SQL>
    column owner format A9
    column object_name format A31
    column object_type format A15
    column last_ddl_time format A10
    spool invalids.lst
    select OWNER, OBJECT_NAME,OBJECT_TYPE,LAST_DDL_TIME
    from dba_objects where status='INVALID'
    order by owner;
    OWNER OBJECT_NAME OBJECT_TYPE LAST_DDL_T
    APPS FV_FACTS_TBAL_TRANSACTIONS PACKAGE BODY 03-MAR-13
    APPS IGI_IAC_REINSTATE_PKG PACKAGE BODY 03-MAR-13
    APPS IGI_IAC_RETIREMENT PACKAGE BODY 03-MAR-13
    APPS CST_PERIODIC_ABSORPTION_PROC PACKAGE BODY 03-MAR-13
    APPS FV_SLA_UTL_PROCESSING_PKG PACKAGE BODY 03-MAR-13
    APPS FV_CCR_UTIL_PVT PACKAGE BODY 03-MAR-13
    APPS PSA_AP_BC_PVT PACKAGE BODY 03-MAR-13
    APPS XLA_00200_AAD_S_000012_PKG PACKAGE BODY 03-MAR-13
    APPS AR_RECEIPT_UPDATE_API_PUB PACKAGE BODY 03-MAR-13
    APPS AR_AUTOREC_API PACKAGE BODY 03-MAR-13
    10 rows selected.
    SQL> alter package APPS.FV_FACTS_TBAL_TRANSACTIONS compile body;
    Warning: Package Body altered with compilation errors.
    SQL> show err
    Errors for PACKAGE BODY APPS.FV_FACTS_TBAL_TRANSACTIONS:
    LINE/COL ERROR
    1742/6 PL/SQL: SQL Statement ignored
    1743/4 PL/SQL: ORA-00918: column ambiguously defined
    SQL> alter package APPS.IGI_IAC_REINSTATE_PKG compile body;
    Warning: Package Body altered with compilation errors.
    SQL> show err
    Errors for PACKAGE BODY APPS.IGI_IAC_REINSTATE_PKG:
    LINE/COL ERROR
    3470/3 PL/SQL: Statement ignored
    3470/10 PLS-00306: wrong number or types of arguments in call to
    'GET_ASSET_RETIRE_REC'
    SQL> alter package APPS.IGI_IAC_RETIREMENT compile body;
    Warning: Package Body altered with compilation errors.
    SQL> show err
    Errors for PACKAGE BODY APPS.IGI_IAC_RETIREMENT:
    LINE/COL ERROR
    4247/10 PL/SQL: Statement ignored
    4247/18 PLS-00306: wrong number or types of arguments in call to
    'GET_ASSET_RETIRE_REC'
    SQL> alter package APPS.CST_PERIODIC_ABSORPTION_PROC compile body;
    Warning: Package Body altered with compilation errors.
    SQL> show err
    Errors for PACKAGE BODY APPS.CST_PERIODIC_ABSORPTION_PROC:
    LINE/COL ERROR
    3901/3 PL/SQL: Statement ignored
    3901/3 PLS-00306: wrong number or types of arguments in call to
    'ITERATION_PROCESS'
    SQL> alter package APPS.FV_SLA_UTL_PROCESSING_PKG compile body;
    Warning: Package Body altered with compilation errors.
    SQL> show err
    Errors for PACKAGE BODY APPS.FV_SLA_UTL_PROCESSING_PKG:
    LINE/COL ERROR
    49/7 PL/SQL: Statement ignored
    49/22 PLS-00302: component 'PSA_XLA_ERROR' must be declared
    SQL> alter package APPS.FV_CCR_UTIL_PVT compile body;
    Warning: Package Body altered with compilation errors.
    SQL> show err
    Errors for PACKAGE BODY APPS.FV_CCR_UTIL_PVT:
    LINE/COL ERROR
    2926/3 PL/SQL: Statement ignored
    2926/19 PLS-00302: component 'CONTACT_NAME' must be declared
    2928/4 PL/SQL: Statement ignored
    2928/20 PLS-00302: component 'CONTACT_PHONE' must be declared
    2929/8 PL/SQL: Statement ignored
    2929/24 PLS-00302: component 'CONTACT_PHONE' must be declared
    2931/3 PL/SQL: Statement ignored
    2931/19 PLS-00302: component 'CONTACT_EMAIL' must be declared
    2932/3 PL/SQL: Statement ignored
    2932/19 PLS-00302: component 'CONTACT_FAX' must be declared
    SQL> alter package APPS.PSA_AP_BC_PVT compile body;
    Warning: Package Body altered with compilation errors.
    SQL> show err
    Errors for PACKAGE BODY APPS.PSA_AP_BC_PVT:
    LINE/COL ERROR
    291/11 PL/SQL: Statement ignored
    291/26 PLS-00302: component 'PSA_XLA_ERROR' must be declared
    346/13 PL/SQL: Statement ignored
    346/28 PLS-00302: component 'PSA_XLA_ERROR' must be declared
    835/7 PL/SQL: Statement ignored
    835/12 PLS-00313: 'ISPREPAYDIST' not declared in this scope
    1002/15 PL/SQL: Statement ignored
    1002/34 PLS-00201: identifier 'J' must be declared
    1014/13 PL/SQL: Statement ignored
    1014/48 PLS-00201: identifier 'I' must be declared
    1020/13 PL/SQL: Statement ignored
    LINE/COL ERROR
    1020/43 PLS-00201: identifier 'I' must be declared
    1022/13 PL/SQL: Statement ignored
    1024/73 PLS-00201: identifier 'I' must be declared
    1055/11 PL/SQL: Statement ignored
    1055/48 PLS-00201: identifier 'I' must be declared
    1057/11 PL/SQL: SQL Statement ignored
    1057/51 PLS-00201: identifier 'I' must be declared
    1080/80 PLS-00201: identifier 'I' must be declared
    1080/80 PLS-00201: identifier 'I' must be declared
    SQL> alter package APPS.XLA_00200_AAD_S_000012_PKG compile body;
    Warning: Package Body altered with compilation errors.
    SQL> show err
    Errors for PACKAGE BODY APPS.XLA_00200_AAD_S_000012_PKG:
    LINE/COL ERROR
    157514/2 PLS-00103: Encountered the symbol "THEN" when expecting one of
    the following:
    ( - + case mod new not null <an identifier>
    <a double-quoted delimited-identifier> <a bind variable> avg
    count current exists max min prior sql stddev sum variance
    execute forall merge time timestamp interval date
    <a string literal with character set specification>
    <a number> <a single-quoted SQL string> pipe
    <an alternatively-quoted string literal with character set
    specification>
    <an alternatively-quote
    LINE/COL ERROR
    SQL> alter package APPS.AR_RECEIPT_UPDATE_API_PUB compile body;
    Warning: Package Body altered with compilation errors.
    SQL> show err
    Errors for PACKAGE BODY APPS.AR_RECEIPT_UPDATE_API_PUB:
    LINE/COL ERROR
    0/0 PL/SQL: Compilation unit analysis terminated
    1/14 PLS-00201: identifier 'AR_RECEIPT_UPDATE_API_PUB' must be
    declared
    1/14 PLS-00304: cannot compile body of 'AR_RECEIPT_UPDATE_API_PUB'
    without its specification
    SQL> show err
    Errors for PACKAGE BODY APPS.AR_AUTOREC_API:
    LINE/COL ERROR
    2724/9 PL/SQL: SQL Statement ignored
    2740/27 PL/SQL: ORA-00904: "EXT"."SEQ_TYPE_LAST": invalid identifier
    note:application v12.0.4 database 10.2.3

    SQL> alter package APPS.FV_FACTS_TBAL_TRANSACTIONS compile body;
    Warning: Package Body altered with compilation errors.
    SQL> show err
    Errors for PACKAGE BODY APPS.FV_FACTS_TBAL_TRANSACTIONS:
    LINE/COL ERROR
    1742/6 PL/SQL: SQL Statement ignored
    1743/4 PL/SQL: ORA-00918: column ambiguously defined
    SQL> alter package APPS.CST_PERIODIC_ABSORPTION_PROC compile body;
    Warning: Package Body altered with compilation errors.
    SQL> show err
    Errors for PACKAGE BODY APPS.CST_PERIODIC_ABSORPTION_PROC:
    LINE/COL ERROR
    3901/3 PL/SQL: Statement ignored
    3901/3 PLS-00306: wrong number or types of arguments in call to
    'ITERATION_PROCESS'
    SQL> alter package APPS.AR_RECEIPT_UPDATE_API_PUB compile body;
    Warning: Package Body altered with compilation errors.
    SQL> show err
    Errors for PACKAGE BODY APPS.AR_RECEIPT_UPDATE_API_PUB:
    LINE/COL ERROR
    0/0 PL/SQL: Compilation unit analysis terminated
    1/14 PLS-00201: identifier 'AR_RECEIPT_UPDATE_API_PUB' must be
    declared
    1/14 PLS-00304: cannot compile body of 'AR_RECEIPT_UPDATE_API_PUB'
    without its specification
    SQL> alter package APPS.XLA_00200_AAD_S_000012_PKG compile body;
    Warning: Package Body altered with compilation errors.
    SQL> show err
    Errors for PACKAGE BODY APPS.XLA_00200_AAD_S_000012_PKG:
    LINE/COL ERROR
    157514/2 PLS-00103: Encountered the symbol "THEN" when expecting one of
    the following:
    ( - + case mod new not null <an identifier>
    <a double-quoted delimited-identifier> <a bind variable> avg
    count current exists max min prior sql stddev sum variance
    execute forall merge time timestamp interval date
    <a string literal with character set specification>
    <a number> <a single-quoted SQL string> pipe
    <an alternatively-quoted string literal with character set
    specification>
    <an alternatively-quote
    LINE/COL ERROR
    SQL> alter package APPS.FV_CCR_UTIL_PVT compile body;
    Warning: Package Body altered with compilation errors.
    SQL> show err
    Errors for PACKAGE BODY APPS.FV_CCR_UTIL_PVT:
    LINE/COL ERROR
    2926/3 PL/SQL: Statement ignored
    2926/19 PLS-00302: component 'CONTACT_NAME' must be declared
    2928/4 PL/SQL: Statement ignored
    2928/20 PLS-00302: component 'CONTACT_PHONE' must be declared
    2929/8 PL/SQL: Statement ignored
    2929/24 PLS-00302: component 'CONTACT_PHONE' must be declared
    2931/3 PL/SQL: Statement ignored
    2931/19 PLS-00302: component 'CONTACT_EMAIL' must be declared
    2932/3 PL/SQL: Statement ignored
    2932/19 PLS-00302: component 'CONTACT_FAX' must be declared

  • Invalids Objects after DB Migration

    Hi,
    I got lot of invalid objects after DB migration, Before export i droped apps/edw db links in source, after import in new target system i can see lot of invalid objects
    alter VIEW APPLSYS.AQ$WF_CONTROL compile;
    alter VIEW APPLSYS.AQ$_WF_CONTROL_F compile;
    alter VIEW APPS.EUL5_B080110101824Q8V1 compile;
    alter VIEW APPS.EUL5_B080110140308Q1V1 compile;
    alter VIEW APPS.EUL5_B080110101824Q1V1 compile;
    alter VIEW APPS.EUL5_B080110142754Q5V1 compile;
    alter VIEW APPS.EUL4_B050720090637Q1V1 compile;
    alter VIEW APPS.EUL5_B080110101824Q5V1 compile;
    alter VIEW APPS.EUL5_B080110101824Q7V1 compile;
    alter VIEW APPS.EUL5_B080110105519Q8V1 compile;
    alter VIEW APPS.EUL4_B050225111630Q1V1 compile;
    alter VIEW APPS.EUL5_B080827104717Q2V1 compile;
    alter VIEW APPS.EUL5_B080827104041Q1V1 compile;
    alter VIEW APPS.EUL5_B080825171948Q1V1 compile;
    alter VIEW APPS.EUL5_B080827104041Q3V1 compile;
    alter VIEW APPS.EUL4_B070517133406Q3V1 compile;
    alter VIEW APPS.EUL4_B060516094902Q1V1 compile;
    alter VIEW APPS.EUL5_B080110101824Q2V1 compile;
    alter VIEW APPS.EUL5_B080110105519Q7V1 compile;
    alter VIEW APPS.EUL4_B040914132829Q1V1 compile;
    alter PACKAGE APPS.ENG_CHANGE_TEXT_UTIL compile;
    alter VIEW APPS.EUL5_B080110105519Q6V1 compile;
    alter VIEW APPS.EUL4_B070517133406Q1V1 compile;
    alter VIEW APPS.EUL4_B041230091230Q1V1 compile;
    alter VIEW APPS.EUL5_B080110105519Q4V1 compile;
    alter VIEW APPS.EUL4_B050720092221Q1V1 compile;
    alter VIEW APPS.EUL4_B050225111545Q1V1 compile;
    alter VIEW APPS.EUL5_B080110105519Q5V1 compile;
    alter VIEW APPS.EUL4_B070108141912Q1V1 compile;
    alter VIEW APPS.EUL5_B080110142754Q4V1 compile;
    alter VIEW APPS.EUL5_B080110142754Q1V1 compile;
    alter VIEW APPS.EUL5_B080110142754Q2V1 compile;
    alter VIEW APPS.EUL5_B080110101824Q4V1 compile;
    alter PACKAGE APPS.EGO_ITEM_TEXT_UTIL compile;
    alter package APPS.CS_WF_ACTIVITIES_PKG compile body;
    alter package APPS.CS_SR_ADDR_SYNC_INDEX_PKG compile body;
    alter package APPS.BOMPKMUD compile body;
    alter package APPS.ICX_POR_INTERMEDIA_INDEX compile body;
    alter package APPS.CS_KB_CONC_PROG_PKG compile body;
    alter package APPS.OF_PA_PKG compile body;
    alter package APPS.AD_PARALLEL_UPDATES_PKG compile body;
    alter package APPS.CE_BANK_PURGINGS compile body;
    alter package APPS.OE_CREDIT_CARD_MIGRATE_UTIL compile body;
    alter package APPS.OKS_CCENCRYPTION_PKG compile body;
    alter package APPS.OKC_RISK_EVENTS_PKG compile body;
    alter package APPS.OKC_REP_CONTACT_ROLES_PKG compile body;
    alter package APPS.JTF_TASK_IDX_UTL compile body;
    alter package APPS.ENI_DENORM_HRCHY compile body;
    alter package APPS.EGO_ITEM_TEXT_PVT compile body;
    alter package APPS.EGO_ITEM_TEXT_UTIL compile body;
    alter package APPS.EDW_POA_LN_TYPE_M_C compile body;
    alter package APPS.EDW_POA_SPLRITEM_M_C compile body;
    alter package APPS.EDW_GEOGRAPHY_M_C compile body;
    alter package APPS.RA_CUSTOMER_TEXT_PKG compile body;
    alter package APPS.OPI_EDW_UOM_CONV_F_C compile body;
    alter package APPS.EDW_OPI_PRDL_M_C compile body;
    alter package APPS.EDW_OPI_LOT_M_C compile body;
    alter package APPS.EDW_OPI_ACTV_M_C compile body;
    alter package APPS.EDW_OPI_OPRN_M_C compile body;
    alter package APPS.OPI_EDW_OPMINV_DAILY_STAT_F_C compile body;
    alter package APPS.OPI_EDW_OPMCOGS_F_C compile body;
    alter package APPS.OPI_EDW_OPM_JOB_DETAIL_F_C compile body;
    alter package APPS.OPI_EDW_OPM_JOB_RSRC_F_C compile body;
    alter package APPS.OPI_EDW_COGS_F_C compile body;
    alter package APPS.EDW_MTL_INVENTORY_LOC_M_C compile body;
    alter package APPS.ISC_EDW_BOOK_SUM1_F_C compile body;
    alter package APPS.FND_OID_DIAG compile body;
    alter VIEW APPS.EUL5_B090911130003Q2V1 compile;
    alter VIEW APPS.EUL5_B090911130003Q1V1 compile;
    alter VIEW APPS.EUL5_B090910161600Q2V1 compile;
    alter VIEW APPS.EUL5_B090910161600Q1V1 compile;
    alter VIEW APPS.EUL5_B090910090134Q2V1 compile;
    alter VIEW APPS.EUL5_B090910090134Q1V1 compile;
    alter VIEW APPS.EUL5_B090701170823Q3V1 compile;
    alter VIEW APPS.EUL5_B090701170823Q2V1 compile;
    alter VIEW APPS.EUL5_B090701170823Q1V1 compile;
    alter VIEW APPS.EUL5_B090701170628Q3V1 compile;
    alter VIEW APPS.EUL5_B090701170628Q2V1 compile;
    alter VIEW APPS.EUL5_B090701170628Q1V1 compile;
    alter VIEW APPS.EUL5_B090701162946Q3V1 compile;
    alter VIEW APPS.EUL5_B090701162946Q2V1 compile;
    alter VIEW APPS.EUL5_B090701162946Q1V1 compile;
    alter VIEW APPS.EUL5_B090629085441Q1V1 compile;
    alter VIEW APPS.EUL5_B080109163823Q5V1 compile;
    alter VIEW APPS.EUL5_B081014161934Q1V1 compile;
    alter VIEW APPS.EUL5_B080827104041Q2V1 compile;
    alter VIEW APPS.EUL5_B080826171658Q1V1 compile;
    alter VIEW APPS.EUL5_B080827104717Q1V1 compile;
    alter VIEW APPS.EUL5_B080827091711Q1V1 compile;
    alter VIEW APPS.EUL5_B081014085038Q1V1 compile;
    alter VIEW APPS.EUL5_B080826171630Q1V1 compile;
    alter VIEW APPS.EUL5_B080827091711Q2V1 compile;
    alter VIEW APPS.EUL5_B080110101824Q6V1 compile;
    alter VIEW APPS.EUL4_B040903135303Q1V1 compile;
    alter VIEW APPS.EUL5_B080109163823Q4V1 compile;
    alter VIEW APPS.EUL5_B080110105519Q1V1 compile;
    alter VIEW APPS.EUL5_B080110105519Q2V1 compile;
    alter VIEW APPS.EUL5_B080110142754Q6V1 compile;
    alter package APPS.ICX_CAT_INTERMEDIA_INDEX_PVT compile body;
    alter package APPS.ARP_STAX_88 compile body;
    alter package APPS.ARP_STAX_82 compile body;
    alter package APPS.ARP_STAX_86 compile body;
    alter package APPS.ARP_STAX_85 compile body;
    alter package APPS.ARP_STAX_84 compile body;
    alter package APPS.ENG_CHANGE_LINE_UTIL compile body;
    alter package APPS.ENG_CHANGE_ACTIONS_PKG compile body;
    alter package APPS.ENG_LAUNCH_ECO_OI_PK compile body;
    alter package APPS.EDW_MRP_PLAN_M_C compile body;
    alter package APPS.EDW_MRP_FORECAST_M_C compile body;
    alter package APPS.EDW_MRP_DM_CLS_M_C compile body;
    alter package APPS.CS_SR_SYNC_INDEX_PKG compile body;
    alter package APPS.OKE_DELIVERABLE_UTILS_PUB compile body;
    alter package APPS.OKE_DELIVERABLE_UTILS_PKG compile body;
    alter package APPS.EDW_ORGANIZATION_M_C compile body;
    alter package APPS.EDW_HR_MVMNT_TYP_M_C compile body;
    alter package APPS.HR_EDW_WRK_CMPSTN_F_C compile body;
    alter package APPS.EDW_HR_RQN_VCNCY_M_C compile body;
    alter package APPS.EDW_HR_REASON_M_C compile body;
    alter package APPS.EDW_HR_REC_ACT_M_C compile body;
    alter package APPS.EDW_HR_PRSN_TYP_M_C compile body;
    alter package APPS.EDW_HR_POSITION_M_C compile body;
    alter package APPS.EDW_HR_SERVICE_M_C compile body;
    alter package APPS.EDW_HR_GRADE_M_C compile body;
    alter package APPS.EDW_HR_JOBS_M_C compile body;
    alter package APPS.EDW_HR_ASSGNMNT_M_C compile body;
    alter package APPS.EDW_HR_AGE_BAND_M_C compile body;
    alter package APPS.EDW_HR_ASG_CHNG_M_C compile body;
    alter package APPS.FII_PA_BUDGET_F_C compile body;
    alter package APPS.FII_PA_REVENUE_F_C compile body;
    alter package APPS.FII_PA_UOM_CONV_F_C compile body;
    alter package APPS.FII_PA_COST_F_C compile body;
    alter package APPS.FII_AR_E_REVENUE_F_C compile body;
    alter package APPS.FII_AR_TRX_DIST_F_C compile body;
    alter package APPS.FII_AP_SCH_PAYMTS_F_C compile body;
    alter package APPS.FII_AP_INV_LINES_F_C compile body;
    alter package APPS.FII_AP_INV_PAYMTS_F_C compile body;
    alter package APPS.FII_AP_INV_ON_HOLD_F_C compile body;
    alter package APPS.FII_AP_HOLD_DATA_F_C compile body;
    alter package APPS.HZ_PURGE compile body;
    alter package APPS.AR_CMGT_DATA_POINTS_PKG compile body;
    alter package APPS.AR_CMGT_AGING compile body;
    alter package APPS.ENG_CHANGE_TEXT_PVT compile body;
    alter package APPS.ENG_CHANGE_TEXT_UTIL compile body;
    alter package APPS.AP_WEB_MANAGEMENT_REPORTS_PKG compile body;
    alter package APPS.OKC_REP_RELATIONSHIPS_PKG compile body;
    alter package APPS.AZ_R12_TRANSFORM_CASCADE compile body;
    alter package APPS.AZ_COMP_REPORTER compile body;
    alter package APPS.IRC_POSTING_CONTENT_API compile body;
    alter package APPS.IRC_DOCUMENT_API compile body;
    alter package APPS.HZ_PARTY_STAGE compile body;
    alter package APPS.HZ_DQM_SYNC compile body;
    alter package APPS.OKE_AGREEMENT_PVT compile body;
    alter package APPS.OKC_TEMPLATE_KEYWORD_PVT compile body;
    alter package APPS.OKC_DELIVERABLE_PROCESS_PVT compile body;
    alter package APPS.OKC_ARTICLE_KEYWORD_PVT compile body;
    alter package APPS.OKC_TERMS_COPY_GRP compile body;
    alter package APPS.INVPOPIF compile body;
    alter package APPS.IBC_IMT_PUB compile body;
    alter package APPS.FND_IMUTL compile body;
    alter package APPS.ENG_ECO_UTIL compile body;
    alter VIEW CLM.CLM_CLMRMCM1_VIEW compile;
    alter VIEW CLM.CLM_CLMRMMS1_VIEW compile;
    alter VIEW CLM.CLM_CLMRMVS1_VIEW compile;
    alter VIEW CLM.CLM_CLMRMUS1_VIEW compile;
    alter VIEW CLM.CLM_CLMRMSG1_VIEW compile;
    alter VIEW CLM.CLM_CLMRMRS1_VIEW compile;
    alter VIEW CLM.CLM_CLMRMRP1_VIEW compile;
    alter VIEW CLM.CLM_CLMRMRG1_VIEW compile;
    alter VIEW CLM.CLM_CLMRMPT1_VIEW compile;
    alter VIEW CLM.CLM_CLMRMPO1_VIEW compile;
    alter VIEW CLM.CLM_CLMRMOW1_VIEW compile;

    alter VIEW CLM.CLM_CLMRMGM1_VIEW compile;
    alter VIEW CLM.CLM_CLMRMFS1_VIEW compile;
    alter VIEW CLM.CLM_CLMRMFN1_VIEW compile;
    alter VIEW CLM.CLM_CLMRMFD1_VIEW compile;
    alter VIEW CLM.CLM_CLMRMDF1_VIEW compile;
    alter VIEW CLM.CLM_CLMRMCP1_VIEW compile;
    alter VIEW CLM.CLM_CLMRMCL1_VIEW compile;
    alter VIEW CONV.TEST_1 compile;
    alter VIEW DMUSER.GL_JE_LINES_V compile;
    alter VIEW DMUSER.GL_JE_CATEGORIES_TL_V compile;
    alter VIEW NOETIX.NOETIX_SEARCHBY_CANDIDATES compile;
    alter package OBT_AA.PA_EXPENDITURE_INQUIRY compile body;
    alter package OBT_AA.PO_CORE_S compile body;
    alter package OBT_AA.OBTPA_AP_PO_FLEX_PURGEUTL_PVT compile body;
    alter package OBT_AA.PO_INQ_SV compile body;
    alter package OBT_AA.PA_PROJECT_PUB compile body;
    alter package OBT_AA.PA_PROJECT_PVT compile body;
    alter package OBT_AA.PA_CONTROL_API_PVT compile body;
    alter package OBT_AA.PA_CONTROL_API_PUB compile body;
    alter package OBT_AA.PA_PROJECT_CHECK_PVT compile body;
    alter package OBT_AA.RCV_QUANTITIES_S compile body;
    alter package OBT_AA.PA_RESOURCE_PUB compile body;
    alter package OBT_AA.PO_VALIDATE_CAI compile body;
    alter package OBT_AA.OF_PA_PKG compile body;
    alter package OBT_AA.OBTPA_AP_PO_FLEX_PROCS compile body;
    alter package OBT_AA.ARP_STAX_88 compile body;
    alter package OBT_AA.ARP_STAX_86 compile body;
    alter package OBT_AA.ARP_STAX_82 compile body;
    alter package OBT_AA.ARP_STAX_84 compile body;
    alter package OBT_AA.ARP_STAX_85 compile body;
    alter package OBT_AA.EGO_ITEM_TEXT_UTIL compile body;
    alter package OBT_AA.ENG_CHANGE_TEXT_UTIL compile body;
    alter package OBT_AA.PA_EVENT_PVT compile body;
    alter package OBT_AA.PA_EVENT_PUB compile body;
    alter package OBT_AA.OBTPA_AP_PO_FLEX_AP_PURGE_PKG compile body;
    alter package OBT_AA.PA_INTERFACE_UTILS_PUB compile body;
    alter package OBT_AA.OF_ID_PKG compile body;
    alter package OBT_AA.AP_INVOICES_PKG compile body;
    alter package OBT_AA.OBTPA_AP_PO_FLEX_RCV_PURGE_PVT compile body;
    alter package OBT_AA.AP_INVOICES_UTILITY_PKG compile body;
    alter package OBT_AA.GBLWF_PO_AG compile body;
    alter package OBT_AA.AP_INVOICE_PAYMENTS_PKG compile body;
    alter package OBT_AA.FND_GFM compile body;
    alter package OBT_AA.OBTPA_AP_PO_FLEX_PURGE_PVT compile body;
    alter package OBT_AA.GL_CI_REMOTE_INVOKE_PKG compile body;
    alter package OBT_AA.OBTPA_AP_PO_FLEX_PURGE_GRP compile body;
    alter package OBT_AA.FND_ATTACHMENT_UTIL_PKG compile body;
    alter package OBT_AA.POLOAD_CAI compile body;
    alter package OBT_AA.POLOAD2_CAI compile body;
    alter package OBT_AA.POLOAD1_CAI compile body;
    alter package OBT_AA.OBTPA_CUSTOM_APPO_FLEX_PROCS compile body;
    alter VIEW OBT_AA.PO_REQUISITION_HEADERS_REQ_V compile;
    alter VIEW OBT_AA.RCV_VRC_TXS_VEND_V compile;
    alter VIEW OBT_AA.ICX_POR_SES_REQS_V compile;
    alter VIEW OBT_AA.ADI_WEB_FILES_VL compile;
    alter VIEW OBT_AA.POR_ATTACHMENTS_SUMMARY_V compile;
    alter VIEW OBT_AA.WIP_OPERATION_INSTRUCTIONS_V compile;
    alter VIEW OBT_AA.WIP_ENTITY_COMMENTS_V compile;
    alter VIEW OBT_AA.WIP_COMMENT_CODES_V compile;
    alter VIEW OBT_AA.XLA_OKL_AEL_GL_TRX_V compile;
    alter VIEW OBT_AA.XLA_OKL_AEL_GL_QTE_V compile;
    alter VIEW OBT_AA.XLA_OKL_AEL_GL_CTR_V compile;
    alter VIEW OBT_AA.OKL_AEL_GL_QTE_V compile;
    alter VIEW OBT_AA.OKL_POOL_SRCH_V compile;
    alter VIEW OBT_AA.CE_CP_DISC_V compile;
    alter VIEW OBT_AA.OKL_POOL_SRCH_PAYFREQ_V compile;
    alter VIEW OBT_AA.XLA_OKL_AEL_GL_AST_V compile;
    alter VIEW OBT_AA.OKL_AM_ASSET_RETURNS_UV compile;
    alter VIEW OBT_AA.IGI_EXP_DUS_V compile;
    alter VIEW OBT_AA.OKL_AEL_GL_TRX_V compile;
    alter VIEW OBT_AA.OKL_AEL_GL_CTR_V compile;
    alter VIEW OBT_AA.CE_CP_DISC_SURPLUS_V compile;
    alter VIEW OBT_AA.CUN_ITEM_NETWORK_UNITS_V compile;
    alter VIEW OBT_AA.PA_FCST_PERIODIC_HDR_V compile;
    alter VIEW OBT_AA.PA_FCST_PERIODIC_DTL_V compile;
    alter VIEW OBT_AA.OTA_FINANCE_LINES_V compile;
    alter VIEW OBT_AA.PA_ADW_LOWTSK_ACT_CMT_V compile;
    alter VIEW OBT_AA.OKL_EBIZ_KHEADERS_V compile;
    alter VIEW OBT_AA.OKL_CURE_RFND_VND_DTLS_UV compile;
    alter VIEW OBT_AA.OKL_CURE_CONTRACT_UV compile;
    alter VIEW OBT_AA.OKL_BPD_RECEIPT_ASSET_UV compile;
    alter VIEW OBT_AA.OKL_BPD_RECEIPT_APPLIC_UV compile;
    alter VIEW OBT_AA.CUN_ASSET_ADDITIONS_UNITS_V compile;
    alter VIEW OBT_AA.ICX_PO_ACTION_HISTORY_PK_V compile;
    alter VIEW OBT_AA.CST_PAC_WIP_TXN_V compile;
    alter VIEW OBT_AA.PO_RELEASE_XML compile;
    alter VIEW OBT_AA.PO_RELEASE_ARCHIVE_XML compile;
    alter VIEW OBT_AA.PO_LINE_LOCATIONS_XML compile;
    alter VIEW OBT_AA.PO_LINE_LOCATIONS_ARCHIVE_XML compile;
    alter VIEW OBT_AA.PO_LINES_XML compile;
    alter VIEW OBT_AA.PO_LINES_ARCHIVE_XML compile;
    alter VIEW OBT_AA.PO_HEADERS_XML compile;
    alter VIEW OBT_AA.OTFV_FINANCE_LINES compile;
    alter VIEW OBT_AA.PO_HEADERS_ARCHIVE_XML compile;
    alter VIEW OBT_AA.OKL_BPD_AP_DISB_DTL_LN_UV compile;
    alter VIEW OBT_AA.OKL_BPD_AP_DISBURS_SMRY_UV compile;
    alter VIEW OBT_AA.OKL_ACCOUNT_BALANCES_V compile;
    alter VIEW OBT_AA.OKL_AEL_GL_AST_V compile;
    alter VIEW OBT_AA.CUN_PROJECT_SHIPMENT_V compile;
    alter VIEW OBT_AA.PO_POS_ALL_V compile;
    alter VIEW OBT_AA.PA_PROJ_COMMITMENT_STATUS compile;
    alter VIEW OBT_AA.OKL_VP_AGREEMENT_UV compile;
    alter VIEW OBT_AA.OKL_TRX_HEADER_UV compile;
    alter VIEW OBT_AA.OKL_FA_DIST_UV compile;
    alter VIEW OBT_AA.PO_DOCUMENT_HEADERS_VIEW compile;
    alter VIEW OBT_AA.PO_ACTION_HISTORY_V compile;
    alter VIEW OBT_AA.OKL_BPD_AP_DISB_DTLS_UV compile;
    alter VIEW OBT_AA.MRP_SR_VIEW_REC_V compile;
    alter VIEW OBT_AA.CUN_TRANSACTION_HIST_V compile;
    alter VIEW OBT_AA.CUN_ITEM_SUMMARY_V compile;
    alter VIEW OBT_AA.CE_CP_DISC_CLOSE_V compile;
    alter VIEW OBT_AA.PA_RPT_PRJ_SUMMARY compile;
    alter VIEW OBT_AA.PA_RPT_CUST_SUMMARY compile;
    alter VIEW OBT_AA.PA_PROJECT_LISTS_PORTLET_V compile;
    alter VIEW OBT_AA.PA_FCST_PROJECT_HDR_V compile;
    alter VIEW OBT_AA.PA_FCST_PROJECT_SUM_V compile;
    alter VIEW OBT_AA.PA_FCST_PROJECT_DTL_V compile;
    alter VIEW OBT_AA.PA_FCST_PERIODIC_SUM_V compile;
    alter VIEW OBT_AA.PA_ADW_TOPTSK_ACT_CMT_V compile;
    alter VIEW OBT_AA.OKL_CURE_REFUNDS_DTLS_UV compile;
    alter VIEW OBT_AA.OKL_OUTSTANDING_CURE_UV compile;
    alter VIEW OBT_AA.OKL_CURE_RULE_UV compile;
    alter VIEW OBT_AA.OKL_AP_TRX_LINE_UV compile;
    alter VIEW OBT_AA.OKL_AP_DIST_UV compile;
    alter VIEW OBT_AA.CUN_ASSET_UNITS_V compile;
    alter VIEW OBT_AA.GMS_COMMITMENT_TXNS_V compile;
    alter VIEW OBT_AA.GMS_STATUS_PROJ_GENERIC_V compile;
    alter VIEW OBT_AA.CE_CP_DISC_NET_V compile;
    alter VIEW OBT_AA.XLA_WIP_AEL_SL_V compile;
    alter VIEW OBT_AA.XLA_AP_AEL_SL_V compile;
    alter VIEW OBT_AA.WIP_EAM_REQUIREMENTS_ALL_V compile;
    alter VIEW OBT_AA.XLA_WIP_AEL_SL_PAC_V compile;
    alter VIEW OBT_AA.XLA_PSA_PO_ENC_BC_GL_V compile;
    alter VIEW OBT_AA.PA_STATUS_COMMITMENTS_V compile;
    alter VIEW OBT_AA.XLA_WIP_AEL_GL_V compile;
    alter VIEW OBT_AA.XLA_WIP_AEL_GL_PAC_V compile;
    alter VIEW OBT_AA.XLA_REQ_ENC_AEL_GL_V compile;
    alter VIEW OBT_AA.XLA_PSA_REQ_ENC_BC_GL_V compile;
    alter VIEW OBT_AA.XLA_PO_ENC_AEL_GL_V compile;
    alter VIEW OBT_AA.XLA_PO_AEL_SL_V compile;
    alter VIEW OBT_AA.XLA_PO_AEL_SL_PAC_V compile;
    alter VIEW OBT_AA.XLA_PO_AEL_SL_MRC_V compile;
    alter VIEW OBT_AA.XLA_PO_AEL_GL_V compile;
    alter VIEW OBT_AA.XLA_PO_AEL_GL_PAC_V compile;
    alter VIEW OBT_AA.XLA_INV_AEL_SL_V compile;
    alter VIEW OBT_AA.XLA_INV_AEL_SL_PAC_V compile;
    alter VIEW OBT_AA.RCV_ENTER_RECEIPTS_V compile;
    alter VIEW OBT_AA.RCV_ENTER_RECEIPTS_SUP_INT_V compile;
    alter VIEW OBT_AA.PO_TAX_SHIPMENTS_DETAIL_V compile;
    alter VIEW OBT_AA.PO_TAX_CODES_SUMMARY_V compile;
    alter VIEW OBT_AA.RCV_ENTER_RECEIPTS_INTERNAL_V compile;
    alter VIEW OBT_AA.PO_RFQS_VAL_V compile;
    alter VIEW OBT_AA.PN_INDEX_EXCLUDE_TERM_V compile;
    alter VIEW OBT_AA.PO_RFQS_ALL_V compile;
    alter VIEW OBT_AA.PA_STATUS_PROJ_TOTALS_V compile;
    alter VIEW OBT_AA.PA_SST_VIEW_PROJECTS_TASKS_V compile;
    alter VIEW OBT_AA.PA_RPT_PRJ_SUMMARY_BASE_V compile;
    alter VIEW OBT_AA.PA_RPT_CUST_SUMMARY_BASE_V compile;
    alter VIEW OBT_AA.PA_REP_PROJ_SP_PA_V compile;
    alter VIEW OBT_AA.PA_REP_PROJ_SP_GL_V compile;
    alter VIEW OBT_AA.PA_INV_BURDEN_DETAILS_LM_V compile;
    alter VIEW OBT_AA.PA_ADW_R_ST_ACT_CMT_V compile;
    alter VIEW OBT_AA.PA_ADW_R_ACT_CMT_V compile;
    alter VIEW OBT_AA.PA_ADW_ACT_CMT_V compile;
    alter VIEW OBT_AA.OKL_REFUND_UV compile;
    alter VIEW OBT_AA.OKL_K_VENDOR_PROGRAMS_UV compile;
    alter VIEW OBT_AA.OKL_C_V_RULES_UV compile;
    alter VIEW OBT_AA.OKL_CS_PARTIES_TAB_UV compile;
    alter VIEW OBT_AA.OKL_CURE_VENDOR_PROGRAM_UV compile;
    alter VIEW OBT_AA.OKL_CS_ALL_PARTIES_W_AMOUNT_UV compile;
    alter VIEW OBT_AA.OKL_BPD_DISB_CONTRACT_LOV_UV compile;
    alter VIEW OBT_AA.GMS_STATUS_COMMITMENTS_V compile;
    alter VIEW OBT_AA.CUN_ITEMS_V compile;
    alter VIEW OBT_AA.CSP_REQUIRED_PARTS_V compile;
    alter VIEW OBT_AA.CSP_DC_PARTS_V compile;
    alter VIEW OBT_AA.MRP_SR_RECEIPT_ORG_V compile;
    alter VIEW OBT_AA.MRP_I2_RESCHED_PO_REQ_V compile;
    alter VIEW OBT_AA.RCV_RECEIVERS_UNORDERED_V compile;
    alter VIEW OBT_AA.JG_PO_REL_TAX_LINES_SUMMARY_V compile;
    alter VIEW OBT_AA.PN_TERM_TEMPLATES_V compile;
    alter VIEW OBT_AA.PJM_PROJECT_PROJ_SUMMARY_V compile;
    alter VIEW OBT_AA.PA_REQUIREMENTS_AMG_V compile;
    alter VIEW OBT_AA.PA_REP_RES_CAP_WKD_V compile;
    alter VIEW OBT_AA.PA_REP_RES_AVL_WK_V compile;
    alter VIEW OBT_AA.PA_PROJ_SUMMARY_AMOUNTS_V compile;
    alter VIEW OBT_AA.PA_PROJ_COMMITMENT_BASE_VIEW compile;
    alter VIEW OBT_AA.PA_REP_ASMT_DTS_V compile;
    alter VIEW OBT_AA.PA_PROJ_ASSIGNMENTS_AMG_V compile;
    alter VIEW OBT_AA.PA_PROJECT_OPEN_ASSNS_STAFF_V compile;
    alter VIEW OBT_AA.PA_PROJECT_OPEN_ASSNS_V compile;
    alter VIEW OBT_AA.PA_PROJECT_LISTS_USER_V compile;
    alter VIEW OBT_AA.PA_PROJECT_ASSIGNMENTS_V compile;
    alter VIEW OBT_AA.PA_FCST_PROJECT_LIST_V compile;
    alter VIEW OBT_AA.PA_PROJECTS_CUST_360_V compile;
    alter VIEW OBT_AA.PA_C_RES_DETAILS_V compile;
    alter VIEW OBT_AA.OKL_FUND_REQ_HEADERS_UV compile;
    alter VIEW OBT_AA.OKL_CURE_REFUNDS_SUMRY_UV compile;
    alter VIEW OBT_AA.OKL_CURE_VENDOR_SUMRY_UV compile;
    alter VIEW OBT_AA.OKL_BPD_DISB_LOV_UV compile;
    alter VIEW OBT_AA.AP_EXPENSE_REPORT_HISTORY_V compile;
    alter VIEW OBT_AA.OKC_K_ATE_V compile;
    alter VIEW OBT_AA.AX_MTL_MATERIAL_TRANS_CONV_V2 compile;
    alter VIEW OBT_AA.AHL_OSP_ORDER_LINES_V compile;
    alter VIEW OBT_AA.OKC_KOL_ATTACHMENTS_V compile;
    alter VIEW OBT_AA.AMW_EXPORT_PROCESS_V compile;
    alter VIEW OBT_AA.OKI_K_CONTACTS_V compile;
    alter VIEW OBT_AA.OKE_K_ALL_ACCESS_V compile;
    alter VIEW OBT_AA.OKC_KOL_SEARCH_KHEADERS_V compile;
    alter VIEW OBT_AA.ICX_REQ_SUPPLIERS_V compile;
    alter VIEW OBT_AA.ICX_REQ_DIST_HEADER_V compile;
    alter VIEW OBT_AA.ICX_PO_RFQ_LINE_LOC_V compile;
    alter VIEW OBT_AA.ICX_PO_REQ_HEADERS_V compile;
    alter VIEW OBT_AA.ICX_PO_REQS_BY_USERS_V compile;
    alter VIEW OBT_AA.ICX_AP_EXPENSE_LINES_V compile;
    alter VIEW OBT_AA.ICX_ENG_WEB_SCHEDULE_PO_V compile;
    alter VIEW OBT_AA.ICX_PO_OPEN_REQS_BY_USERS_V compile;
    alter VIEW OBT_AA.GMS_COMMITMENT_BURDEN_V compile;
    alter VIEW OBT_AA.GMS_1034_REPORT_V compile;
    alter VIEW OBT_AA.FV_ECS_PAYMENT_V compile;
    alter VIEW OBT_AA.FII_AP_IVSR_INV_SOURCE_LCV compile;
    alter VIEW OBT_AA.EAM_DIRECT_ITEM_RECS_V compile;
    alter VIEW OBT_AA.ECE_PO_PROJECT_INFO_V compile;
    alter VIEW OBT_AA.CST_PAC_AEL_SL_WIP_V compile;
    alter VIEW OBT_AA.CST_AEL_SL_WIP_V compile;
    alter VIEW OBT_AA.CE_REVERSAL_TRANSACTIONS_V compile;
    alter VIEW OBT_AA.CHV_SCHEDULERS_VAL_V compile;
    alter VIEW OBT_AA.CE_RECONCILED_TRANSACTIONS_V compile;
    alter VIEW OBT_AA.CE_AVAILABLE_TRANSACTIONS_V compile;
    alter VIEW OBT_AA.CE_FC_API_DISC_V compile;
    alter VIEW OBT_AA.AMW_EXPORT_AUDIT_PROCEDURE_V compile;
    alter VIEW OBT_AA.AP_AEL_SL_V compile;
    alter VIEW OBT_AA.MRP_SCATP_SOURCES_V compile;
    alter VIEW OBT_AA.MRP_I2_PROCUREMENT_V compile;
    alter VIEW OBT_AA.MRP_I2_PART_SUPPLIER_V compile;
    alter VIEW OBT_AA.IGI_CIS_PMT_VCH_V compile;
    alter VIEW OBT_AA.XTR_AP_OPEN_TRX_V compile;
    alter VIEW OBT_AA.WIP_OSP_REQS_POS_V compile;
    alter VIEW OBT_AA.WIP_ICX_OSP_WORKBENCH_V compile;
    alter VIEW OBT_AA.WIP_BIS_PROD_VAL_EMP_V compile;
    alter VIEW OBT_AA.REQ_ENC_AEL_GL_V compile;
    alter VIEW OBT_AA.RCV_VIEW_INTERFACE_V compile;
    alter VIEW OBT_AA.RCV_MSH_V compile;
    alter VIEW OBT_AA.RCV_AEL_SL_MRC_V compile;
    alter VIEW OBT_AA.RCV_ENTER_RECEIPTS_INVENTORY_V compile;
    alter VIEW OBT_AA.RCV_AEL_SL_V compile;
    alter VIEW OBT_AA.RCV_ENTER_RECEIPTS_INT_REQ_V compile;
    alter VIEW OBT_AA.RCV_AEL_GL_V compile;
    alter VIEW OBT_AA.PSA_REQ_ENC_GL_BC_V compile;
    alter VIEW OBT_AA.PO_REQEXPRESS_LINES_V compile;
    alter VIEW OBT_AA.PO_RFQ_HEADERS_PRINT compile;
    alter VIEW OBT_AA.PO_REQS_IN_TRANSIT_ALL_V compile;
    alter VIEW OBT_AA.PO_NOTIFICATION_DETAILS_V compile;
    alter VIEW OBT_AA.PO_HEADERS_PRINT compile;
    alter VIEW OBT_AA.PO_HEADERS_CHANGE_PRINT compile;
    alter VIEW OBT_AA.ITG_UPDEL_LINES_V compile;
    alter VIEW OBT_AA.ITG_UPDEL_HEADERS_V compile;
    alter VIEW OBT_AA.ITG_SP_REL_PART_SOLDTO_V compile;
    alter VIEW OBT_AA.ITG_SP_REL_LINE_PART_SHIPTO_V compile;
    alter VIEW OBT_AA.ITG_SP_REL_LINE_DIST_V compile;
    alter VIEW OBT_AA.ITG_SP_PO_PART_SOLDTO_V compile;
    alter VIEW OBT_AA.ITG_SP_PO_LINE_PART_SHIPTO_V compile;
    alter VIEW OBT_AA.ITG_SP_PO_LINE_DIST_V compile;
    alter VIEW OBT_AA.ITG_REQ_LINES_V compile;
    alter VIEW OBT_AA.ITG_REQ_HEADERS_V compile;
    alter VIEW OBT_AA.ITG_PO_LINE_LOC_ARCH_V compile;
    alter VIEW OBT_AA.ITG_PO_HEADER_ARCH_V compile;
    alter VIEW OBT_AA.ITG_PO_DISTRBN_ARCH_V compile;
    alter VIEW OBT_AA.INVFV_MOVEMENT_STATISTICS compile;
    alter VIEW OBT_AA.IGI_MPP_SELECTED_INVOICES_V compile;
    alter VIEW OBT_AA.IGI_MPP_EXP_RECOGNITION compile;
    alter VIEW OBT_AA.IGI_MPP_AP_DIST_MERGE_V compile;
    alter VIEW OBT_AA.IGI_MPP_AP_INVOICES_MERGE_V compile;
    alter VIEW OBT_AA.IGI_EXP_AVAILABLE_TRX_V compile;
    alter VIEW OBT_AA.IGI_EXP_DU_LINES_V compile;
    alter VIEW OBT_AA.IGC_CC_HEADERS_V compile;
    alter VIEW OBT_AA.ICX_SHIP_SCHEDULE_HEADERS_V compile;
    alter VIEW OBT_AA.ICX_RECEIPT_HEADERS_V compile;
    alter VIEW OBT_AA.ICX_RCV_TRANSACTIONS_V compile;
    alter VIEW OBT_AA.ICX_RCV_RETURNS_V compile;
    alter VIEW OBT_AA.ICX_RCV_REJECTED_ITEMS_V compile;
    alter VIEW OBT_AA.ICX_RCV_EARLY_LATE_RECEIPTS_V compile;
    alter VIEW OBT_AA.ICX_RCV_ACCEPTED_ITEMS_V compile;
    alter VIEW OBT_AA.POS_ACK_SELECT_V compile;
    alter VIEW OBT_AA.POR_VIEW_REQS_BY_GROUP_V compile;
    alter VIEW OBT_AA.POR_VIEW_REQS_BY_APPROVER_V compile;
    alter VIEW OBT_AA.POR_RECEIVE_ORDERS_V compile;
    alter VIEW OBT_AA.POR_RCV_RETURN_TO_VENDOR_V compile;
    alter VIEW OBT_AA.POR_VIEW_LINE_DETAILS_V compile;
    alter VIEW OBT_AA.POR_LINES_ALL_V compile;
    alter VIEW OBT_AA.PN_PAYMENT_TERMS_V compile;
    alter VIEW OBT_AA.PN_PAYMENT_TERMS_HISTORY_V compile;
    alter VIEW OBT_AA.PN_EXP_PAYMENT_ITEMS_V compile;
    alter VIEW OBT_AA.PA_TXN_ACCUM_V compile;
    alter VIEW OBT_AA.PA_TEMPLATE_REQUIREMENTS_V compile;
    alter VIEW OBT_AA.PA_STATUS_EI_V compile;
    alter VIEW OBT_AA.PA_STATUS_PROJ_V compile;
    alter VIEW OBT_AA.PA_STATUS_PROJ_GENERIC_V compile;
    alter VIEW OBT_AA.PA_REV_BURDEN_DETAILS_V compile;
    alter VIEW OBT_AA.PA_SECURED_PROJECTS_V compile;
    alter VIEW OBT_AA.PA_REP_RES_SCHHRS_WKD_V compile;
    alter VIEW OBT_AA.PA_REP_REQT_DTS_V compile;
    alter VIEW OBT_AA.PA_REP_RES_SCHHRS_PAD_V compile;
    alter VIEW OBT_AA.PA_REP_RES_SCHHRS_GLD_V compile;
    alter VIEW OBT_AA.PA_REP_PROJ_REQHRS_WKD_V compile;
    alter VIEW OBT_AA.PA_REP_PROJ_REQHRS_WK_V compile;
    alter VIEW OBT_AA.PA_REP_PROJ_REQHRS_PA_V compile;
    alter VIEW OBT_AA.PA_REP_PROJ_REQHRS_PAD_V compile;
    alter VIEW OBT_AA.PA_REP_PROJ_REQHRS_GL_V compile;
    alter VIEW OBT_AA.PA_REP_PROJ_REQHRS_GLD_V compile;
    alter VIEW OBT_AA.PA_QUERY_RES_LIST_MEMBERS_V compile;
    alter VIEW OBT_AA.PA_PRVDR_CC_ORG_REL_V compile;
    alter VIEW OBT_AA.PA_PROJ_UNBILLED_EXPEND_VIEW compile;
    alter VIEW OBT_AA.PA_PROJ_PARTIES_PROG_EV_V compile;

  • How to compile INVALID dba & user_objects...

    Hi,
    While upgrading 12.1.3, i am getting INVALID object error in more then 2103 objects, now i need to compile INVALID objects ONLY...
    I have tried adadmin to compile but it has taken more then 20hrs to complete also this has compiling all the records, so i need to know how to compile those 2103 records..
    Please some one suggest me the command or sql query to use for succeed this..
    Thanks
    Suresh
    Edited by: Suresh on Mar 8, 2011 10:29 AM

    Hi Hussein,
    I have listed all invalid objects as per blow query...
    select OBJECT_NAME, OWNER from dba_objects where status = 'INVALID';
    NOTE: I have compiled invalid objects in database by using SQL> @utlrp.sql (as sysdba)
    AND in application tier i tried through adadmin (APPS schema) even though its not compiling, invalid objects are not reducing..
    OBJECT_NAME
    OWNER
    MTH_UDA_PKG
    APPS
    MTH_UTIL_PKG
    APPS
    OKL_DEAL_ASSET_PVT_W
    APPS
    OBJECT_NAME
    OWNER
    OKL_DEAL_CREAT_PVT_W
    APPS
    OKL_INTERNAL_BILLING_PVT
    APPS
    OE_OUTBOUND_INT
    APPS
    OBJECT_NAME
    OWNER
    OE_INBOUND_INT
    APPS
    OE_GENESIS_UTIL
    APPS
    OZF_SUPP_TRD_PRFLS_PKG
    APPS
    OBJECT_NAME
    OWNER
    OZF_SD_BATCH_PVT
    APPS
    OZF_SD_BATCH_FEED_PVT
    APPS
    OZF_SD_UTIL_PVT
    APPS
    OBJECT_NAME
    OWNER
    OZF_SUPP_TRADE_PROFILE_PVT
    APPS
    OZF_SUPP_TRADE_PROFILE_PVT_W
    APPS
    PA_CONTROL_API_PVT
    APPS
    OBJECT_NAME
    OWNER
    PAY_PAYJPCAD_XMLP_PKG
    APPS
    PAY_PAYJPGMT_XMLP_PKG
    APPS
    PAY_PAYJPLTX_XMLP_PKG
    APPS
    OBJECT_NAME
    OWNER
    PAY_PAYJPMAG_XMLP_PKG
    APPS
    PAY_PAYJPSDD_XMLP_PKG
    APPS
    PAY_PAYJPSQD_XMLP_PKG
    APPS
    OBJECT_NAME
    OWNER
    PAY_PAYJPSMT_XMLP_PKG
    APPS
    PAY_PAYJPWTM_XMLP_PKG
    APPS
    PAY_PYAURECP_XMLP_PKG
    APPS
    OBJECT_NAME
    OWNER
    PAY_DK_ARCHIVE_EIN
    APPS
    PAY_RETRO_STATUS_INTERNAL
    APPS
    HR_HELPDESK_UTIL_SS
    APPS
    OBJECT_NAME
    OWNER
    PER_GB_PENSRV_SVPN
    APPS
    PER_SUCCESSION_PLAN_API
    APPS
    PER_SUCCESSION_PLAN_SWI
    APPS
    OBJECT_NAME
    OWNER
    PN_MTM_ROLLFORWARD_PKG
    APPS
    RRS_SITE_UTILS
    APPS
    WSH_WSHRDINV_XMLP_PKG
    APPS
    OBJECT_NAME
    OWNER
    WSH_WSHRDPAK_XMLP_PKG
    APPS
    XLA_HIST_LEDGER_UPG_PKG
    APPS
    PER_SUCCESSION_PLAN_BK1
    APPS
    OBJECT_NAME
    OWNER
    PER_SUCCESSION_PLAN_BK2
    APPS
    MSC_CURRENCY_CONV_MV
    APPS
    MSD_DEM_OBI_DEMANTRA_MV
    APPS
    OBJECT_NAME
    OWNER
    FFP62356_01012000
    APPS
    FFP62357_01012000
    APPS
    FFP62358_01012000
    APPS
    OBJECT_NAME
    OWNER
    FFP62359_01012000
    APPS
    FFP62376_01012000
    APPS
    FFP62377_01012000
    APPS
    OBJECT_NAME
    OWNER
    FFP62378_01012000
    APPS
    FFP62379_01012000
    APPS
    F
    CA
    OBJECT_NAME
    OWNER
    G
    CA
    2032 rows selected.
    SQL>
    please guide me how to move forward ....
    Thanks & Regard...
    Suresh

  • Compile Invalid Objects fails on first error

    When attempting to compile invalid objects (Views or Packages) from the connection tree, the process fails on the first generated error and does not continue with the remaining invalid objects.
    This is the code used by SQL Developer...
    begin
    FOR cur IN (SELECT OBJECT_NAME, OBJECT_TYPE, owner
    FROM all_objects
    WHERE object_type = :OBJECT_TYPE
    and owner = :OBJECT_OWNER
    AND status = 'INVALID' ) LOOP
    if cur.OBJECT_TYPE = 'PACKAGE BODY' then
    EXECUTE IMMEDIATE 'alter ' || cur.OBJECT_TYPE || ' ' || cur.OBJECT_NAME || ' compile body';
    else
    EXECUTE IMMEDIATE 'alter ' || cur.OBJECT_TYPE || ' ' || cur.OBJECT_NAME || ' compile';
    end if;
    end loop;
    end;
    ...and this is the code used by a 'leading competitor' doing the same kind of process (amended by us to provide feedback)...
    DECLARE
    V_OWNER varchar2(30);
    V_VIEWNAME varchar2(30);
    C_ID integer;
    I_RESULT integer;
    CURSOR c is select OWNER, OBJECT_NAME from all_objects where owner in ('OCTOPUS', 'MILOGUSER') and object_type = 'VIEW' and STATUS = 'INVALID';
    BEGIN
    I_RESULT := -1;
    OPEN c;
    LOOP
    FETCH c into V_OWNER, V_VIEWNAME;
    EXIT WHEN c%NOTFOUND;
    DBMS_OUTPUT.PUT_LINE(V_OWNER ||'.' ||V_VIEWNAME);
    BEGIN
    C_ID := DBMS_SQL.open_cursor;
    DBMS_SQL.PARSE(C_ID, 'ALTER VIEW '|| V_OWNER || '.' || V_VIEWNAME || ' COMPILE', DBMS_SQL.v7);
    I_RESULT := DBMS_SQL.EXECUTE(C_ID);
    EXCEPTION
    WHEN OTHERS THEN I_RESULT := -1; END;
    DBMS_OUTPUT.PUT_LINE(I_RESULT);
    DBMS_SQL.CLOSE_CURSOR(C_ID);
    END LOOP;
    END;
    Note: the exception part of the code allows the process to continue and wouldn't take much to incorporate into SQL Developer

    Bug logged andy.
    B

  • Compile Invalid Objects

    Hi friends,
    how do i compile all the invalid objects in one time ???
    thanks,
    Raj

    Hi,
    Here's what I do when I need to recompile a user's schema. Don't say it's bullet proof, but so far it has worked for me. I use it after each deployment to a schema.
    procedure recompile_schema
    is
       l_type   user_objects.object_type%type;
       l_name   user_objects.object_name%type;
       l_stat   user_objects.status%type;
       compile_error exception;
       pragma exception_init(compile_error, -24344);
       cursor dep_cur
       is
              select object_id
                from (select o1.object_id
                            ,o1.object_name
                            ,o1.object_type
                            ,o1.status
                            ,d1.referenced_name
                            ,d1.referenced_type
                            ,case
                                when exists (select null
                                               from user_dependencies d2
                                              where d2.referenced_name = d1.name
                                                and d2.referenced_type = d1.type)
                                then
                                   1
                                else
                                   0
                             end
                                is_referenced
                        from user_dependencies d1, user_objects o1
                       where o1.object_type in
                                   ('PACKAGE'
                                   ,'PROCEDURE'
                                   ,'FUNCTION'
                                   ,'PACKAGE BODY'
                                   ,'VIEW'
                                   ,'MATERIALIZED VIEW'
                                   ,'TRIGGER'
                                   ,'SYNONYM')
                         and d1.name = o1.object_name
                         and d1.type = o1.object_type)
               where is_referenced = 1
          start with is_referenced = 0
          connect by object_name = prior referenced_name
                 and object_type = prior referenced_type
            group by object_id
            order by max(level) desc, object_id;
       procedure do_compile(pi_object_type   in user_objects.object_type%type
                           ,pi_object_name   in user_objects.object_name%type)
       is
       begin
          --dbms_output.put_line('Compiling: ' || pi_object_name);
          if pi_object_type = 'PACKAGE BODY'
          then
             exe('ALTER PACKAGE ' || pi_object_name || ' COMPILE BODY');
          else
             exe('ALTER ' || pi_object_type || ' ' || pi_object_name || ' COMPILE');
          end if;
       exception
          when compile_error
          then
             dbms_output.put_line(sqlerrm);
       end do_compile;
    begin
       dbms_output.put_line('recompiling invalid objects in schema ' || user);
       -- loop through all objects in order of dependancy.
       for rec in dep_cur
       loop
          -- select the objects attributes (type, name and status).
          select object_type, object_name, status
            into l_type, l_name, l_stat
            from user_objects
           where object_id = rec.object_id;
          -- if the object is invalid, recompile it.
          if l_stat = 'INVALID'
          then
             dbms_output.put_line('Compiling(1): ' || l_name);
             do_compile(l_type, l_name);
          end if;
       end loop;
       -- Recompile all remaining INVALID OBJECTS (all those without dependencies).
       for rec
       in (select object_type, object_name
             from user_objects
            where status = 'INVALID'
              and object_type in
                        ('PACKAGE'
                        ,'PROCEDURE'
                        ,'FUNCTION'
                        ,'TRIGGER'
                        ,'PACKAGE BODY'
                        ,'VIEW'
                        ,'MATERIALIZED VIEW'
                        ,'TRIGGER'
                        ,'SYNONYM'))
       loop
          dbms_output.put_line('Compiling(2): ' || rec.object_name);
          do_compile(rec.object_type, rec.object_name);
       end loop;
    end recompile_schema;Regards
    Peter

  • How to Repair Invalid Objects

    Hello,
    In my 10.2 g database, I have 56 "invalid" objects in PUBLIC. All are synonyms.
    After running the utlrp.sql utility, the same 56 synonyms are still invalid. ( I ran it 3 times)
    How can I repair the invalids, if the repair utility will not repair them?
    Thanks, John

    DBA_ERRORS shows errors if a previous compilation gave invalid status, or if the object has been invoked in a statement.
    example:
    SQL> select status from dba_objects where object_name='V';
    STATUS
    INVALID
    SQL> select text from dba_errors where name='V';
    no rows selected
    SQL> select * from v;
    select * from v
    ERROR at line 1:
    ORA-04063: view "MYUSER.V" has errors
    SQL> select text from dba_errors where name='V';
    TEXT
    ORA-00942: table or view does not exist
    answered by Nicolas
    select *
    from dba_dependencies
    where name = 'YOUR_PACKAGE'
    and referenced_owner = 'ANYUSER' --- Comment this out if you are looking for yourself
    and owner = USER --- Or can be set to any user
    answered by  Girish Sharma         reference: from thread: Invalid Object

  • Invalid objects after upgrade to 11gR2 database in 11i

    Hi All
    we have prod instance of 11i with 10gR2 database.
    Currnetly we have upgraded database to 11gR2.
    After upgrade to 11gR2 we have foung lot of "FPA" Invalids.
    Please share your views. how to validate this invalids
    Regards
    Shaik

    Please see these docs/threads.
    Error PLS-00801: Internal Error [1401] When Compiling Invalid Apps Objects [Doc ID: 784179.1]
    Difference between UTLRP.SQL - UTLIRP.SQL - UTLIP.SQL? [Doc ID: 272322.1]
    Many  db  objects error after Upgrate EBS 12.1.1 to EBS 12.1.2(7303033)
    Thanks,
    Hussein

  • Unable to compile invalid objects  post R12.1.1to R12.1.3 upgrades

    Hi Experts,
    Kindly note that post upgrade from R12.1.1 to R12.1.3.
    I am unable to compile the below invalid objects.
    APPS     PACKAGE BODY     BIS_TARGET_LEVEL_PVT
    APPS     PACKAGE BODY     MSC_CL_PULL
    APPS     PACKAGE BODY     RLM_MANAGE_DEMAND_SV
    APPS     PACKAGE BODY     RLM_RD_SV
    APPS     PACKAGE BODY     RLM_EXTINTERFACE_SV
    APPS     PACKAGE BODY     CSC_ACTION_ASSEMBLER_PVT_W
    APPS     PACKAGE BODY     ASO_OPP_QTE_PUB
    APPS     PACKAGE BODY     ISC_EDW_BOOK_SUM1_F_C
    APPS     PACKAGE BODY     OPI_EDW_OPMINV_DAILY_STAT_F_C
    APPS     PACKAGE BODY     ASO_SECURITY_INT
    APPS     PACKAGE BODY     ASO_QUOTE_PUB_W
    APPS     PACKAGE BODY     ASO_QUOTE_HEADERS_PVT
    Please advise.
    Mohammed Abdul Muqeet

    Kindly note that post upgrade from R12.1.1 to R12.1.3.
    I am unable to compile the below invalid objects.
    APPS     PACKAGE BODY     BIS_TARGET_LEVEL_PVT
    APPS     PACKAGE BODY     MSC_CL_PULL
    APPS     PACKAGE BODY     RLM_MANAGE_DEMAND_SV
    APPS     PACKAGE BODY     RLM_RD_SV
    APPS     PACKAGE BODY     RLM_EXTINTERFACE_SV
    APPS     PACKAGE BODY     CSC_ACTION_ASSEMBLER_PVT_W
    APPS     PACKAGE BODY     ASO_OPP_QTE_PUB
    APPS     PACKAGE BODY     ISC_EDW_BOOK_SUM1_F_C
    APPS     PACKAGE BODY     OPI_EDW_OPMINV_DAILY_STAT_F_C
    APPS     PACKAGE BODY     ASO_SECURITY_INT
    APPS     PACKAGE BODY     ASO_QUOTE_PUB_W
    APPS     PACKAGE BODY     ASO_QUOTE_HEADERS_PVTWhat is the error you get when you compile those invalid objects manually?
    Please see these docs.
    ASO Invalid Objects in 12.1.3 [ID 1235496.1]
    How To Resolve RLM Invalids [ID 1450159.1]
    R12: Contact Center: Package CSC_ACTION_ASSEMBLER_PVT_W Invalid [ID 1126155.1]
    BIS_TARGET_LEVEL_PVT is Invalid After Upgrade to EBS 12.1.3 [ID 1364996.1]
    Thanks,
    Hussein

  • How to compile all objects.....in Oracle10g

    Hi ,
    The Oracle Doc about PL/SQL Packages and Types reffering to DBMS_UTILITY and the COMPILE_SCHEMA procedure....points out :
    "Compiles all procedures, functions, packages, and triggers in the specified schema"
    So how to compile views and possibly other db schema object types ......????
    For example issuing the command :
    select object_name from user_objects where status='INVALID';
    we get all invalid objects, views , packages , e.t.c.
    How to compile all types of objects ... except for EM10g env......
    Many thanks....
    Sim

    You may want to use Solomon Yakobson's utility available here:
    http://apex.oracle.com/pls/otn/f?p=2853:5:4266218307366505

  • R12 - Compile Invalid objects (Fast Formula, Package Body and View) Urgent

    Invalid objects about 43, in this Fast Formula 2 AP Package object, and 1 view
    OWNER     OBJECT_TYPE     COUNT(*)
    APPS     PACKAGE BODY     37.00
    APPS     PROCEDURE     1.00
    SCOTT     PACKAGE BODY     1.00
    APPS     VIEW     1.00
    APPS     FUNCTION     3.00
    any one can give idea to make it valid.
    Awaiting for your reply.
    FYI
    the object list is below.
    OWNER     OBJECT_NAME
    APPS     FFP52474_01010001
    APPS     FFP61059_01010001
    APPS     FFP56168_01010001
    APPS     FFP56167_01010001
    APPS     FFP58579_01052004
    APPS     FFP56169_01010001
    APPS     FFP56170_01010001
    APPS     FFP56171_01010001
    APPS     FFP56172_01010001
    APPS     FFP56173_01010001
    APPS     FFP60309_01010001
    APPS     FFP60306_01010001
    APPS     FFP60308_01010001
    APPS     FFP60310_01010001
    APPS     FFP60307_01010001
    APPS     AP_IMPORT_VALIDATION_PKG
    APPS     FFP58576_01011951
    APPS     FFP60357_01011951
    APPS     FFP57511_01010001
    APPS     FFP57510_01010001
    APPS     FFP52473_01010001
    APPS     FFP60305_01010001
    APPS     FFP60545_01042004
    APPS     FFP60342_01010001
    APPS     FFP58887_01042004
    APPS     FFP58888_01042004
    APPS     FFP58870_01042004
    APPS     FFP58885_01042004
    APPS     FFP58907_01010001
    APPS     FFP58906_01010001
    APPS     FFP58861_01042004
    APPS     FFP61122_01010001
    APPS     FFP58871_01042004
    APPS     FFP58857_01042005
    APPS     FFP60917_01032006
    SCOTT     MK_PLS_XML_REP_TEST
    APPS     MK_PLS_XML_REP_TEST
    APPS     AP_FSX_PAYMENT_ADVICE
    APPS     RA_SITE_USES
    APPS     ZDBAR_CONTACT
    APPS     ZDBAR_FAX
    APPS     ZDBCLOAD
    APPS     ZDBAP_DV_PAYMENT_TYPE
    Advanced thanks for reading and giving solution for this.
    Thamaraiselvan

    any one can give idea to make it valid.Run "Compile APPS Schema" from adadmin.
    For Fast Formulas, refer to:
    Note: 155737.1 - How To Compile Oracle Fast Formulas
    http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=155737.1

  • INVALID Objects after upgrade from 12.1.1 to 12.1.3

    Hi
    Recently I have applied 9239090, 13984450, 10627841 patches to upgrade from 12.1.1 to 12.1.3, but now there are a number of Invalid objects in the DB.
    I have tried to compile them through 'adadmin' utility, and even ran 'utlirp.sql' with 'utlrp.sql'. Tried bouncing all db, apps tier, apache but they still remains 'Invalid'. What kind of objects are they and whether they will have any impact on apps? How to compile them?
    Any help will be really appreciated. Thanks.
    As a test I tried to compile one object and get the following errors:
    Package Body APPS.FFP55370_01011990@EBS12
    Error(347,1): PL/SQL: Statement ignored
    Error(347,5): PLS-00306: wrong number or types of arguments in call to 'ARREARAGE'
    Error(382,1): PL/SQL: Statement ignored
    Error(382,5): PLS-00306: wrong number or types of arguments in call to 'ARREARAGE'
    Invalid Objects list
    FFP55370_01011990
    FFP50529_01011900
    FFP50775_01011900
    FFP52090_01011990
    FFP50576_01011900
    FFP54520_01011995
    ImportExport
    FFP58914_01010001
    FFP60324_01010001
    FFP56324_01011990
    FFP50523_01011900
    FFP54824_01012000
    FFP59200_01011990
    FFP55331_01011998
    FFP55359_01011990
    FFP58907_01010001
    FFP55328_01011998
    FFP55356_01011990
    FFP58908_01010001
    FFP59176_01012004
    FFP57126_01011995
    FFP60588_01011990
    FFP61138_01010001
    FFP61170_01010001
    FFP61884_01010001
    FFP61867_01010001
    FFP62357_01012000
    FFP62358_01012000
    FFP62376_01012000
    FFP51848_01011990
    FFP50533_01011900
    FFP50531_01011900
    FFP54413_01011995
    FFP54409_01011995
    FFP52683_01071999
    WWV_FLOW_LIST_OF_VALUES_DATA
    WWV_FLOW_LISTS_OF_VALUES$
    FFP58919_01010001
    FFP58887_01042004
    FFP51846_01011990
    FFP59110_01011990
    FFP57215_01011999
    FFP56739_01011999
    FFP56325_01011990
    FFP59192_01011990
    FFP1915_01010001
    FFP56596_01012001
    FFP1918_01010001
    FFP57217_01012000
    FFP59113_01011990
    FFP55243_26121999
    FFP56327_01011990
    FFP54521_01011995
    FFP60587_01011990
    FFP60593_01011990
    FFP60793_01012004
    FSAH_DUPLICATE_PKG
    FFP61920_01010001
    FFP55366_01011990
    FFP52681_01071999
    FFP51840_01011990
    FFP52621_01011996
    FFP55065_01011990
    FFP53477_01012001
    FFP59131_01011990
    FFP51850_01011990
    FFP51838_01011990
    FFP59273_01012004
    FFP51849_01011990
    FFP55077_01011990
    FFP59251_01012004
    FFP55240_26121999
    FFP54414_01011995
    FFP54393_01011995
    FFP58912_01010001
    FFP54823_01012000
    FFP57196_01012000
    FFP55362_01011990
    FFP57216_01012000
    FFP57125_01011995
    FFP60833_01012000
    FFP60943_01011990
    FFP60964_01012000
    FFP61532_01011990
    XLA_00707_AAD_C_000026_PKG
    FFP61919_01010001
    FFP62359_01012000
    FFP55060_01011990
    FFP50510_01011900
    FFP55355_01011990
    FFP55058_01011990
    FFP54406_01011995
    FFP51867_01011990
    FFP54474_01011995
    FFP55361_01011990
    FFP58885_01042004
    FFP51844_01011990
    FFP56716_01012001
    FFP59175_01012004
    FFP54525_01011995
    FFP54909_01011990
    FFP56329_01011990
    FFP54407_01011995
    FFP56052_01012000
    FFP54524_01011995
    FFP56056_01012000
    FFP54404_01011995
    FFP54523_01011995
    FFP58913_01010001
    FFP55306_01011995
    FFP50525_01011900
    FFP55333_01011998
    FFP1916_01010001
    FFP58911_01010001
    FFP60555_01010001
    FFP61156_01010001
    FFP61152_01010001
    FFP52982_01010001
    FFP61511_01012000
    FFP62356_01012000
    FFP62378_01012000
    FFP62379_01012000
    FFP51404_01011997
    FFP55358_01011990
    FFP55067_01011990
    FFP52115_01011990
    FFP51887_01011990
    FFP54398_01011995
    FFP54411_01011995
    WWV_FLOW_GENERIC
    WWV_FLOW_FIELD_TEMPLATES
    FFP53720_01011990
    FFP54827_01012000
    FFP50522_01011900
    FFP55330_01011998
    FFP54912_01011990
    FFP59116_01011990
    FFP59115_01011990
    FFP54394_01011995
    FFP56330_01011990
    FFP56434_01012001
    FFP58163_01011951
    FFP59114_01011990
    FFP56328_01011990
    FFP58910_01010001
    FFP60606_01011990
    FFP61440_01011990
    XLA_20065_AAD_C_000030_PKG
    FFP55069_01011990
    FFP53540_01012001
    FFP55364_01011990
    FFP55375_01011990
    FFP50577_01011900
    FFP52481_01010001
    RE_PROFILER
    FFP58915_01010001
    FFP58920_01010001
    FFP51888_01011990
    FFP50928_01011997
    FFP56333_01011990
    FFP55063_01011990
    FFP55367_01011990
    FFP51068_01011997
    FFP59111_01011990
    FFP56332_01011990
    FFP56323_01011990
    FFP57190_01012000
    FFP1919_01010001
    FFP59191_01011990
    FFP51966_01011998
    FFP54403_01011995
    FFP55368_01011990
    FFP1917_01010001
    FFP60592_01011990
    FFP60607_01011990
    FFP61277_01011951
    FFP61871_01010001
    FFP61926_01010001
    FFP61897_01010001
    FFP62377_01012000
    FFP51837_01011990
    FFP50512_01011900
    FFP52744_01071999
    FFP52724_01071999
    FFP51411_01011999
    FFP50527_01011900
    FFP58888_01042004
    FFP58870_01042004
    FFP59117_01011990
    FFP56331_01011990
    FFP55080_01011990
    FFP59112_01011990
    FFP50583_01011900
    FFP54518_01011995
    FFP55079_01011990
    FFP59195_01011990
    FFP56053_01012000
    FFP56322_01011990
    FFP55373_01011990
    FFP54449_01011995
    FFP54522_01011995
    FFP54948_01011990
    FFP58918_01010001
    FFP60591_01011990
    RDT_1
    FFP60944_01011990
    FFP60963_01012000
    FFP61124_01010001
    FFP61912_01010001
    MSD_DEM_OBI_DEMANTRA_MV
    FFP55372_01011990
    FFP50773_01011900
    FFP53497_01012001
    FFP51406_01011997
    FFP50506_01011900
    FFP50508_01011900
    FFP51843_01011990
    FFP55062_01011990
    FFP55078_01011990
    FFP55070_01011990
    FFP57220_01012000
    FFP56326_01011990
    FFP51906_01011990
    FFP53224_01011999
    FFP56337_01011995
    FFP58909_01010001
    FFP58906_01010001
    FFP58861_01042004
    FFP51841_01011990
    FFP50581_01011900
    FFP56321_01011990
    FFP50524_01011900
    FFP60589_01011990
    FFP61924_01010001
    XLA_00707_AAD_C_000044_PKG
    F
    G

    Hi Gents,
    All objects starting with FF have been successfully compiled by the fix pointed out by you. Thanks v much for your help. Much appreciated.
    Now a total of 15 invalid objects are remaining. I could manage to find solution of 14 objects (which I understand can be safely ignored, and highlighted the source of the solution below).
    The only one remaining is this materialized view. I tried to compile it but but did not throw any errors, and still remains under invalid state. Not sure how to go about it. I can confirm that this is not a custom object.
    MSD_DEM_OBI_DEMANTRA_MV     MATERIALIZED VIEW
    --> I found an answer about them on *MOS [ID 967352.1]*, and will now safely ignore them now.
    FSAH_DUPLICATE_PKG     PACKAGE BODY
    RE_PROFILER     PACKAGE BODY
    XLA_00707_AAD_C_000026_PKG     PACKAGE BODY
    XLA_00707_AAD_C_000044_PKG     PACKAGE BODY
    XLA_20065_AAD_C_000030_PKG     PACKAGE BODY
    --> I followed this thread for resolution on these objects. I believe that they can be safely ignored now.
    247 Invalids are not getting compiled
    ImportExport     JAVA SOURCE
    ImportExport     JAVA CLASS
    WWV_FLOW_LIST_OF_VALUES_DATA     SYNONYM
    WWV_FLOW_LISTS_OF_VALUES$     SYNONYM
    WWV_FLOW_GENERIC     SYNONYM
    WWV_FLOW_FIELD_TEMPLATES     SYNONYM
    RDT_1     TABLE
    F     TABLE
    G     TABLE

  • Invalid Objects after upgrading 12.1.3

    Hi,
    I upgraded my EBS version to 12.1.3 from 12.1.2. And the database is 11.1.0.7, OS is RHEL 5.0.
    After upgrading im getting some invalid objects of 272 that i mentioned below..
    i did all the steps for the fix this ,
    1. Ran utlrp.sql script in $ORACLE_HOME/rdbms/admin
    2. Compiled the apps schema in adadmin on apps ties
    3. Re-link options
    4. SQL> @$FND_TOP/patch/115/sql/fndptmus.pls
    SQL> @$FND_TOP/patch/115/sql/fndptmub.pls
    5. SQL> ALTER PACKAGE BODY ASO_OPP_QTE_PUB COMPILE;
    ALTER PACKAGE BODY ASO_OPP_QTE_PUB COMPILE
    ERROR at line 1:
    ORA-00922: missing or invalid option
    INVALID OBJTCTS:
    ASO_QUOTE_PUB_W
    ASO_SECURITY_INT
    ASO_QUOTE_HEADERS_PVT
    MSC_SCH_WB
    PJM_INQUIRY
    OKL_REVERSE_CONTRACT_PVT
    INV_OBJECT_GENEALOGY
    OE_DELAYED_REQUESTS_UTIL
    HXT_RETRO_PROCESS
    OKL_PROCESS_TMPT_SET_PVT_W
    OKL_TRANS_CONTRACTS_PVT_W
    OKL_CONTRACT_PVT
    OKL_FUNDING_PVT
    OKL_GENERATE_ACCRUALS_PVT_W
    OKL_PROCESS_TMPT_SET_PUB
    OKL_GENERATE_ACCRUALS_PVT
    OKL_AM_ASSET_DISPOSE_PVT
    OKL_BLK_AST_UPD_PVT
    OKL_CONTRACT_BOOK_PVT
    OKL_KBK_APPROVALS_WF
    OKL_CS_WF
    OKL_FUNDING_WF
    OKL_LA_JE_PVT
    OKL_INSURANCE_POLICIES_PVT
    OKL_INTEREST_CALC_PVT
    OKL_AM_BTCH_EXP_LEASE_LOAN_PVT
    OKL_LOSS_PROV_PVT
    OKL_MISC_TRANS_PVT
    OKL_MASS_REBOOK_PVT
    OKL_AM_LEASE_LOAN_TRMNT_PVT
    OKL_AM_LOAN_TRMNT_PVT
    OKL_AM_LEASE_TRMNT_PVT
    OKL_RELEASE_PVT
    OKL_CONTRACT_REBOOK_PVT
    OKL_AM_QUOTES_WF
    OKL_REV_LOSS_PROV_PVT
    OKL_AM_RECYCLE_TRMNT_PVT
    OKL_SPLIT_CONTRACT_PVT
    OKL_SPLIT_ASSET_PVT
    OKL_TRANS_CONTRACTS_PVT
    OKL_AM_TERMNT_QUOTE_PVT
    OKL_CS_TRANSFER_ASSUMPTION_PVT
    OKL_PROCESS_TMPT_SET_PVT
    OKL_TRANSACTION_PVT
    OKL_VARIABLE_INTEREST_PVT
    OKL_COPY_CONTRACT_PUB_W
    OKL_PROCESS_TMPT_SET_PUB_W
    WIP_SF_CUSTOM_ATTRIBUTES
    AS_SALES_LEAD_OPP_PVT
    ASO_OPP_QTE_PUB
    OPI_POR_EXPECTED_RCPT_MV
    OPI_POR_BACKORDER_SUM_MV
    OPI_POR_OVERDUE_RCPT_MV
    OKL_CS_PRINCIPAL_PAYDOWN_PVT
    AST_UWQ_WRAPPER_PKG
    AST_UWQ_OLIST_WORK_ACTION
    OKL_AM_CNTRCT_LN_TRMNT_PVT
    OKL_AM_TERMINATE_INV_AGMT_PVT
    OKL_INVESTOR_INVOICE_DISB_PVT
    OKL_PERIOD_SWEEP_PVT
    OKL_SEC_AGREEMENT_PVT
    IGS_FI_CREDIT_PVT
    CSC_ACTION_ASSEMBLER_PVT_W
    OZF_EARNING_SUMMARY_MV
    ImportExport
    ImportExport
    WWV_FLOW_LIST_OF_VALUES_DATA
    WWV_FLOW_LISTS_OF_VALUES$
    WWV_FLOW_GENERIC
    WWV_FLOW_FIELD_TEMPLATES
    RE_PROFILER
    FFP58914_01010001
    FFP58915_01010001
    FFP58920_01010001
    FFP58919_01010001
    OKL_BPD_TERMINATION_ADJ_PVT
    OKL_STREAM_MIGRATION_PVT
    FFP60324_01010001
    FFP58887_01042004
    FFP58888_01042004
    FFP58870_01042004
    FFP53720_01011990
    FFP58885_01042004
    FFP51846_01011990
    FFP60964_01012000
    OKL_AM_BAL_WRITEOFF_PVT
    OKL_LA_SALES_TAX_PVT
    OKL_AM_TERMNT_VENDOR_PRG_PVT
    WIP_WS_DL_UTIL
    OZF_CUST_FUND_SUMMARY_MV
    FFP61156_01010001
    FFP61138_01010001
    FFP61170_01010001
    FFP61152_01010001
    FFP61124_01010001
    FFP61277_01011951
    SYS_PLSQL_233217_87_1
    FFP61440_01011990
    FFP52982_01010001
    WMS_WAVE_PLANNING_PVT
    FFP61511_01012000
    FFP61532_01011990
    OKL_MULTIGAAP_ENGINE_PVT
    XLA_00707_AAD_C_000026_PKG
    XLA_20065_AAD_C_000030_PKG
    FSAH_DUPLICATE_PKG
    XLA_00707_AAD_C_000044_PKG
    OKL_INTERNAL_BILLING_PVT
    OE_ITEMS_MV
    MSD_DEM_OBI_DEMANTRA_MV
    FFP62356_01012000
    Any solution for this..??.
    Thanks,
    vasanth

    Hi,
    SQL> show errors
    Errors for PACKAGE BODY OKL_MULTIGAAP_ENGINE_PVT:
    LINE/COL ERROR
    0/0     PLS-00907: cannot load library unit APPS.OKL_TCN_PVT (referenced
         by APPS.OKL_TRX_CONTRACTS_PVT)
    0/0     PLS-00907: cannot load library unit APPS.OKL_TCN_PVT (referenced
         by APPS.OKL_TRX_CONTRACTS_PVT)
    0/0     PLS-00907: cannot load library unit APPS.OKL_TCL_PVT (referenced
         by APPS.OKL_TRX_CONTRACTS_PVT)
    0/0     PLS-00907: cannot load library unit APPS.OKL_TCL_PVT (referenced
         by APPS.OKL_TRX_CONTRACTS_PVT)
    LINE/COL ERROR
    0/0     PLS-00907: cannot load library unit APPS.OKL_TCN_PVT (referenced
         by APPS.OKL_TRX_CONTRACTS_PVT)
    0/0     PLS-00907: cannot load library unit APPS.OKL_TCN_PVT (referenced
         by APPS.OKL_TRX_CONTRACTS_PVT)
    0/0     PLS-00907: cannot load library unit APPS.OKL_TCN_PVT (referenced
         by APPS.OKL_TRX_CONTRACTS_PVT)
    0/0     PLS-00907: cannot load library unit APPS.OKL_TCN_PVT (referenced
    LINE/COL ERROR
         by APPS.OKL_TRX_CONTRACTS_PVT)
    0/0     PLS-00907: cannot load library unit APPS.OKL_TCL_PVT (referenced
         by APPS.OKL_TRX_CONTRACTS_PVT)
    0/0     PLS-00907: cannot load library unit APPS.OKL_TCL_PVT (referenced
         by APPS.OKL_TRX_CONTRACTS_PVT)
    656/4     PL/SQL: Statement ignored
    832/10     PL/SQL: Statement ignored
    944/10     PL/SQL: Statement ignored
    LINE/COL ERROR
    971/10     PL/SQL: Statement ignored
    1049/10 PL/SQL: Statement ignored
    1150/10 PL/SQL: Statement ignored
    1226/28 PL/SQL: Item ignored
    1227/28 PL/SQL: Item ignored
    1228/28 PL/SQL: Item ignored
    1229/28 PL/SQL: Item ignored
    i didnt get any errors before following that Metalink ID... it replied no errors
    Now only im getting errors...
    there is no errors in alert log file...
    Thanks,
    vasanth

Maybe you are looking for