Unable to remove invalid objects

Hi All,
I am Using Apps R12
RDBMS : 10.2.0.2.0
Oracle Applications : 12.0.2
Form Version : 12.0.1
Please help me.
system having constant invalid objects as below:
OWNER     OBJECT_NAME     OBJECT_TYPE COUNT(*)
PUBLIC     BEN_PL_EXTRACT_IDENTIFIER_D SYNONYM     1
APPS     BEN_PL_EXTRACT_IDENTIFIER_D VIEW     1
please, how to remove these two invalid objects
Thanks
Regards
Sagb

Try to compile it manually, what error do you get?
SQL> alter view APPS.BEN_PL_EXTRACT_IDENTIFIER_D compile;
SQL> show errors

Similar Messages

  • 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

  • Unable to Compile Invalid Objects

    Why are the following Objects invalid?
    All attempt to re-compile these objects files, what am I missing?
    OWNER OBJECT_NAME OBJECT_TYPE STATUS
    CASHAR WB_OLAP_LOAD_CUBE PROCEDURE INVALID
    CASHAR WB_OLAP_LOAD_DIMENSION PROCEDURE INVALID
    CASHAR WB_OLAP_LOAD_DIMENSION_GE PROCEDURE INVALID

    In general, the errors you get on compilation will point to the specific offending line and statement.
    Being that all three of these procedures call OLAP DBMS_AWM packages, I would venture to guess there is something wrong with access to these packages.
    Execute the following from OWB target schema:
    select owner, object_name, procedure_name
    from dba_procedures
    where object_name like 'DBMS_AWM%'
    If this query returns nothing, you most likely don't have an OLAP Server installed in the database. That would be indicated by the lack of OLAPSYS schema and nothing from this query:
    select comp_name, version, status, schema
    from dba_registry
    where comp_name like '%OLAP%'
    So install OLAP Server if you need to use these OWB procedures. Note that OLAP Server is the extra cost option to Oracle Enterprise Edition database.
    Nikolai

  • Unable to remove a host from VMM - Error (2606) Unable to perform the job because one or more of the selected objects are locked by another job.

    I am unable to remove a host from my Virtual Machine Manager 2012 R2. I receive the following error:
    Error (2606)
    Unable to perform the job because one or more of the selected objects are locked by another job.
    Recommended Action
    To find out which job is locking the object, in the Jobs view, group by Status, and find the running or canceling job for the object. When the job is complete, try again.
    I have already tried running the following command in SQL Server Management Studio
    SELECT * FROM [VirtualManagerDB].[dbo].[tbl_VMM_Lock] where TaskID='Task_GUID'
    I received this error back:
    Msg 8169, Level 16, State 2, Line 1
    Conversion failed when converting from a character string to uniqueidentifier.
    I have also tried rebooting both the host and the Virtual Machine Manager Server.  After rebooting them both, I still receive the same error when trying to remove the host.
    Here are my server details
    VMM Server OS = Windows 2012 Standard
    VMM Version = 2012 R2 3.2.7510.0
    Host OS = Windows 2012 R2 Datacenter
    Host Agent Version = 3.2.75.10.0
    SQL Server OS = Windows 2012 Datacenter
    SQL Version = 2012 SP 1 (11.0.3000.0)

    Hi there,
    How many hosts are you managing with your VMM server?
    The locking job might be the background host refresher job. Did you see any jobs in the jobs view, when the host removal job failed?
    If there is no active jobs in the jobs view when this host removal job fails, can you please turn on the VMM tracing, retry the host removal, and paste back the traces for the failed job (search for exception and paste the whole stack)?
    Thanks!
    Cheng

  • Unable to remove object from arraylist

    Hello,
    I am trying to remove a few objects from an arraylist and it isnt happeneing in one loop :
                         for(int i=0;i<someList.size();i++){
                             empVo = (EmpVO)colList.get(i);
                             if(empVo.getempName().trim().equalsIgnoreCase("A") ||empVo.getempName().trim().equalsIgnoreCase("B") ||empVo.getempName().trim().equalsIgnoreCase("C") )
                                colList.remove(i);
                         }So, it doesnt remove the object all the time whenever the names of A,B or C appear, so I have to run this loop thrice so it deletes all the data pertaining to these three emp names. Then I thought may be the size of the arraylist is changing and used a temp var for the someList.size, but that doesnt work either. Could you please tell me what is going wrong ?
    Edited by: Sarvananda on Sep 3, 2010 12:10 PM
    Also, the exact test has names A to F. So say A, D and E will be deleted in the first loop, then I have to specifically sysout and see which ones were deleted and then write another loop for B,C and F. Ofcourse at the end A - F are removed. But why two loops for it

    Encephalopathic wrote:
    What if you do this using an iterator to remove items, or if you start from the top of the list and iterate down to the first item?thanks for your reply. I was just looking at the API, and stumbled on this :
    The iterators returned by this class's iterator and listIterator methods are fail-fast: if the list is structurally modified at any time after the iterator is created, in any way except through the iterator's own remove or add methods, the iterator will throw a ConcurrentModificationException. Thus, in the face of concurrent modification, the iterator fails quickly and cleanly, rather than risking arbitrary, non-deterministic behavior at an undetermined time in the future.Any pointers on where I could look or how I could I move from here ?
    Another question I had was, there is no efficient way to 'move' objects in an arraylist (based on their indexes), isn't it ?
    I always have to remove and add at a certain index.

  • ArrayList problem ....i can remove my object from my arrayList

    hi all, i am going to remove a object from my array by using arrayList.However, it can`t work properly and did nth for me..i don`t know why...could anyone give me some suggestion and show me what i did wrong on my code ....i stated more detail next to my code...plesae help...
    public class MusicCd
         private String musicCdsTitle;
            private int yearOfRelease;
         public MusicCd()
              musicCdsTitle = "";
              yearOfRelease = 1900;
         public MusicCd(String newMusicCdsTitle)
              musicCdsTitle = newMusicCdsTitle;
              //yearOfRelease = newYearOfRelease;
         public MusicCd(String newMusicCdsTitle, int newYearOfRelease)
              musicCdsTitle = newMusicCdsTitle;
              yearOfRelease = newYearOfRelease;
         public String getTitle()
              return musicCdsTitle;
         public int getYearOfRelease()
              return yearOfRelease;
         public void setTitle(String newMusicCdsTitle)
              musicCdsTitle = newMusicCdsTitle;
         public void setYearOfRelease(int newYearOfRelease)
              yearOfRelease = newYearOfRelease;
         public boolean equalsName(MusicCd otherCd)
              if(otherCd == null)
                   return false;
              else
                   return (musicCdsTitle.equals(otherCd.musicCdsTitle));
         public String toString()
              return("Music Cd`s Title: " + musicCdsTitle + "\t"
                     + "Year of release: " + yearOfRelease + "\t");
    import java.util.ArrayList;
    import java.io.*;
    public class MusicCdStore
       ArrayList<MusicCd> MusicCdList;
       public void insertCd()
            MusicCdList = new ArrayList<MusicCd>( ); 
            readOperation theRo = new readOperation();
            MusicCd theCd;
            int muiseCdsYearOfRelease;
            String muiseCdsTitle;
              while(true)
                    String continueInsertCd = "Y";
                   do
                        muiseCdsTitle = theRo.readString("Please enter your CD`s title : ");
                        muiseCdsYearOfRelease = theRo.readInt("Please enter your CD`s year of release : ");
                        MusicCdList.add(new MusicCd(muiseCdsTitle, muiseCdsYearOfRelease));
                        MusicCdList.trimToSize();
                        continueInsertCd = theRo.readString("Do you have another Cd ? (Y/N) : ");
                   }while(continueInsertCd.equals("Y") || continueInsertCd.equals("y") );
                   if(continueInsertCd.equals("N") || continueInsertCd.equals("n"));
                                                    //MusicCdList.add(new MusicCd(muiseCdsTitle, muiseCdsYearOfRelease));                              
                                  break;
                      //System.out.println("You `ve an invalid input " + continueInsertCd + " Please enter (Y/N) only!!");
       public void displayAllCd()
                    System.out.println("\nOur CD collection is: \n" );
              System.out.println(toString());
       public String toString( )
            String result= " ";
            for( MusicCd tempCd : MusicCdList)
                 result += tempCd.toString() + "\n";
            return result;
       public void searchingMusicCd()
            readOperation theRo = new readOperation();
            String keyword = theRo.readString("Enter a CD `s Title you are going to search : ") ;
            ArrayList<MusicCd> results = searchForTitle(keyword );
              System.out.println("The search results for " + keyword + " are:" );
              for(MusicCd tempCd : results)
                   System.out.println( tempCd.toString() );
       //encapsulate the A
       public void removeCd()
            readOperation theRo = new readOperation();
            String keyword = theRo.readString("Please enter CD `s title you are going to remove : ") ;
            ArrayList<MusicCd> removeMusicCdResult = new ArrayList<MusicCd>();
                  System.out.println("The CD that you just removed  is " + keyword );
              for(MusicCd tempCd : removeMusicCdResult)
                   System.out.println( tempCd.toString() );
       //problem occurs here : i am so confused of how to remove the exactly stuff from my arrayList
       //pls help
       private ArrayList<MusicCd> removeCdForTitle(String removeCdsTitle)
             MusicCd tempMusicCd = new MusicCd();
             tempMusicCd.setTitle(removeCdsTitle);
            // tempMusicCd.setTitle(removeCdsTitle);
            //tempMusicCd.getTitle() = removeCdsTitle;
            ArrayList<MusicCd> removeMusicCdResult = new ArrayList<MusicCd>();
            for(MusicCd currentMusicCd : MusicCdList)
                 if((currentMusicCd.getTitle()).equals(tempMusicCd.getTitle()))
                     // removeMusicCdResult.remove(currentMusicCd);
                         MusicCdList.remove(currentMusicCd);
            removeMusicCdResult.trimToSize();
            return removeMusicCdResult;
       private ArrayList<MusicCd> searchForTitle(String searchString)
            ArrayList<MusicCd> searchResult = new ArrayList<MusicCd>();
            for(MusicCd currentMusicCd : MusicCdList)
                 if((currentMusicCd.getTitle()).indexOf(searchString) != -1)
                      searchResult.add(currentMusicCd);
            searchResult.trimToSize();
            return searchResult;
    import java.util.*;
    public class MusicCdStoreEngine{
         public static void main(String[] args)
              MusicCdStore mcs = new MusicCdStore( );
              mcs.insertCd();
              //display the Cd that you just insert
              mcs.displayAllCd();
              mcs.removeCd();
              mcs.displayAllCd();
              mcs.searchingMusicCd();
    //Acutally result
    //Please enter your CD`s title : ivan
    //Please enter your CD`s year of release : 1992
    //Do you have another Cd ? (Y/N) : y
    //Please enter your CD`s title : hero
    //Please enter your CD`s year of release : 1992
    //Do you have another Cd ? (Y/N) : n
    //Our CD collection is:
    // Music Cd`s Title: ivan     Year of release: 1992
    //Music Cd`s Title: hero     Year of release: 1992     
    //Please enter CD `s title you are going to remove : hero
    //The CD that you just removed  is hero
    //Our CD collection is:
    // Music Cd`s Title: ivan     Year of release: 1992
    //Music Cd`s Title: hero     Year of release: 1992     
    //Enter a CD `s Title you are going to search : hero
    //The search results for hero are:
    //Music Cd`s Title: hero     Year of release: 1992
    //>Exit code: 0
    //Expected result
    //Please enter your CD`s title : ivan
    //Please enter your CD`s year of release : 1992
    //Do you have another Cd ? (Y/N) : y
    //Please enter your CD`s title : hero
    //Please enter your CD`s year of release : 1992
    //Do you have another Cd ? (Y/N) : n
    //Our CD collection is:
    // Music Cd`s Title: ivan     Year of release: 1992
    //Music Cd`s Title: hero     Year of release: 1992     
    //Please enter CD `s title you are going to remove : hero
    //The CD that you just removed  is hero
    //Our CD collection is:
    // Music Cd`s Title: ivan     Year of release: 1992
    //Music Cd`s Title: hero     Year of release: 1992<<-- it is not supposed to display cos i have deleted it from from array     
    //Enter a CD `s Title you are going to search : hero
    //The search results for hero are:
    //Music Cd`s Title: hero     Year of release: 1992<<-- i should have get this reuslt...cos it is already delete from my array
    //>Exit code: 0
    import java.util.*;
    public class readOperation{
         public String readString(String userInstruction)
              String aString = null;
              try
                         Scanner scan = new Scanner(System.in);
                   System.out.print(userInstruction);
                   aString = scan.nextLine();
              catch (NoSuchElementException e)
                   //if no line was found
                   System.out.println("\nNoSuchElementException error occurred (no line was found) " + e);
              catch (IllegalStateException e)
                   // if this scanner is closed
                   System.out.println("\nIllegalStateException error occurred (scanner is closed)" + e);
              return aString;
         public char readTheFirstChar(String userInstruction)
              char aChar = ' ';
              String strSelection = null;
              try
                   //char charSelection;
                         Scanner scan = new Scanner(System.in);
                   System.out.print(userInstruction);
                   strSelection = scan.next();
                   aChar =  strSelection.charAt(0);
              catch (NoSuchElementException e)
                   //if no line was found
                   System.out.println("\nNoSuchElementException error occurred (no line was found) " + e);
              catch (IllegalStateException e)
                   // if this scanner is closed
                   System.out.println("\nIllegalStateException error occurred (scanner is closed)" + e);
              return aChar;
         public int readInt(String userInstruction) {
              int aInt = 0;
              try {
                   Scanner scan = new Scanner(System.in);
                   System.out.print(userInstruction);
                   aInt = scan.nextInt();
              } catch (InputMismatchException e) {
                   System.out.println("\nInputMismatchException error occurred (the next token does not match the Integer regular expression, or is out of range) " + e);
              } catch (NoSuchElementException e) {
                   System.out.println("\nNoSuchElementException error occurred (input is exhausted)" + e);
              } catch (IllegalStateException e) {
                   System.out.println("\nIllegalStateException error occurred (scanner is closed)" + e);
              return aInt;
    }

    //problem occurs hereI'm not sure that the problem does occur within the
    removeCdForTitle() method.
    Your main() method calls removeCd() which obtains the title of
    the CD to be removed (keyword). But remoceCd() never
    calls removeCdForTitle(), so nothing is ever removed.

  • Undable to drop tablespace ORA-01561: failed to remove all objects in the

    hi,
    i am unable to drop table tablespace how can i do that??
    please advise
    DROP TABLESPACE tbs_tp2 INCLUDING CONTENTS AND datafiles
    ERROR at line 1:
    ORA-01561: failed to remove all objects in the tablespace specified
    Thanks in advance
    siva
    chennai

    Have you tried dropping the objects individually? You can see which objects still belong to this tablespace by using the DBA_SEGMENTS view as shown below:
    SELECT OWNER, SEGMENT_NAME, SEGMENT_TYPE, TABLESPACE_NAME
    FROM DBA_SEGMENTS
    WHERE TABLESPACE_NAME=tbs_tp2;HTH!

  • Unable to update this object because the following attributes associated with this object have values that may already be associated with another object in your local directory services

    Getting this error from DirSync
    Unable to update this object because the following attributes associated with this object have values that may already be associated with another object in your local directory services: [UserPrincipalName
    [email protected];].  Correct or remove the duplicate values in your local directory.  Please refer to
    http://support.microsoft.com/kb/2647098 for more information on identifying objects with duplicate attribute values.
    Quick eyeball and couldn't see the cause in the user account so used the script here:
    http://gallery.technet.microsoft.com/office/Fix-Duplicate-User-d92215ef
    And got these outputs:
    PS C:\Windows\System32\WindowsPowerShell\v1.0> Export-OSCADUserPrincipalName -UserPrincipalName "[email protected]" -Path .\outputs.csv
    WARNING: Cannot find objects with specified duplicate user principal name
    [email protected]
    Found 0 user(s) with duplicate user principal name.
    Where to from here?
    Richard P

    Hi,
    Did you talk about the Microsoft Azure Active Directory Sync tool ?
    If yes, this issue occurs if one or more of the following conditions are true:
    An object in the on-premises Active Directory has an SMTP address that's the same as the SMTP address of the object that's reporting the problem.
    An object in the on-premises Active Directory has a mail attribute that's identical to the object that's reporting the problem.
    An object already exists in your organizational account and has the same SMTP address or mail attribute as the object in the on-premises Active Directory
    More detail information, please refer to:
    http://support.microsoft.com/kb/2520976/en-us
    [Troubleshooting] Unable to update this object because the following attributes associated with this object
    http://blogs.technet.com/b/aadsyncsupport/archive/2014/05/20/troubleshooting-unable-to-update-this-object-because-the-following-attributes-associated-with-this-object.aspx
    Regards.
    Vivian Wang

  • Acrobat 6 - Save As - Removing Unused Objects

    When using the "Save As" feature to save from a mapped network drive to the personal drive, documents that are created from a scanned image take a long time to save, and on the progress bar show the message "Removing Unused Objects".  My client is using Acrobat Standard 6, and I am unable to find any type of "PDF Optimizer" as the later versions have.  Is there any way to remove this background processing that Adobe is doing and speed up the network saving?
    Thanks,
    edgetech1

    Is there anyone out there who can offer some insight into this?

  • Invalid Objects Need To Compile.

    Hi,
    Am having R12.1.3 instance, In that am having 61 invalid objects.
    I was try to reduce by utlrp.sql script and also adadmin utility.
    But its not reducing.
    Below i have Mentioned invalid objects details.
    SQL> select object_name,object_type,owner from dba_objects where status like 'INVALID';
    OBJECT_NAME OBJECT_TYPE OWNER
    HR_ENTRY_API PACKAGE BODY APPS
    PAY_DYT_ELEMENT_ENTRY_VAL_PKG PACKAGE APPS
    PAY_DYT_ELEMENT_ENTRY_VAL_PKG PACKAGE BODY APPS
    WWV_FLOW_LIST_OF_VALUES_DATA SYNONYM PUBLIC
    WWV_FLOW_PATCHES SYNONYM PUBLIC
    WWV_FLOW_LISTS_OF_VALUES$ SYNONYM PUBLIC
    WWV_FLOW_TEMP_TABLE SYNONYM PUBLIC
    WWV_FLOW_CUSTOM_AUTH_SSO SYNONYM PUBLIC
    WWV_FLOW_TEMPLATES_UTIL SYNONYM PUBLIC
    HTMLDB_SQL_WORKSHOP SYNONYM PUBLIC
    HTMLDB_DATA_WORKSHOP SYNONYM PUBLIC
    OBJECT_NAME OBJECT_TYPE OWNER
    WWV_FLOW_GENERIC SYNONYM PUBLIC
    WWV_FLOW_DML SYNONYM PUBLIC
    WWV_FLOW_FIELD_TEMPLATES SYNONYM PUBLIC
    APPLICATION_AUTHENTICATION SYNONYM PUBLIC
    WWV_RENDER_CALENDAR2 SYNONYM PUBLIC
    WWV_FLOW_XML_REPORT SYNONYM PUBLIC
    WWV_FLOW_XML_REPORT2 SYNONYM PUBLIC
    DS_SQL_WORKSHOP SYNONYM PUBLIC
    WWV_CREATE_FORUM_DEMO_SCRIPT SYNONYM PUBLIC
    WWV_FLOW_LOOKUP_TABLES SYNONYM PUBLIC
    WWV_FLOW_WEB_SERVICES SYNONYM PUBLIC
    OBJECT_NAME OBJECT_TYPE OWNER
    WWV_SPELING SYNONYM PUBLIC
    WWV_FLOW_HELP SYNONYM PUBLIC
    WWV_FLOW_REWRITE_QUERY SYNONYM PUBLIC
    RE_PROFILER PACKAGE BODY RE
    XXADT_PAY_REIMB_WF_PKG PACKAGE BODY APPS
    WWV_FLOW_LOV_TEMP SYNONYM PUBLIC
    RDT_1 TABLE HERMAN
    MAIN_PROC PROCEDURE XX_CUST
    SERIAL_MAIN_PROC PROCEDURE XX_CUST
    TRO_HEADER_SRL_CONF PROCEDURE XX_CUST
    GETSESSIONCOOKIE FUNCTION XX_CUST
    OBJECT_NAME OBJECT_TYPE OWNER
    PPGPL_POPULATE_TABLE PROCEDURE APPS
    READ_PA_EXP_ITEM PROCEDURE APPS
    TEST_PROC PROCEDURE APPS
    VAR_BUDGET_PKG_1 PACKAGE BODY XX_CUST
    PARENT_DEPARTMENT FUNCTION XX_CUST
    EFFECTIVE_DATE FUNCTION XX_CUST
    DECODE_POSITION FUNCTION XX_CUST
    DECODE_ORGANIZATION FUNCTION XX_CUST
    XLA_00707_AAD_C_000026_PKG PACKAGE BODY APPS
    XLA_20065_AAD_C_000030_PKG PACKAGE BODY APPS
    FSAH_DUPLICATE_PKG PACKAGE BODY APPS
    OBJECT_NAME OBJECT_TYPE OWNER
    XX_INVENTORY_ITEM_PKG PACKAGE BODY APPS
    FN_ADD FUNCTION APPS
    ADD_NEW FUNCTION APPS
    XX_FND_USER_PKG PACKAGE BODY APPS
    XX_ITEM_VALIDATE PROCEDURE APPS
    XLA_00707_AAD_C_000044_PKG PACKAGE BODY APPS
    SPEC PACKAGE APPS
    XXGSC_ITEM_CREATION PACKAGE BODY APPS
    SPECIFICATION PACKAGE APPS
    XXHY_AMS_BUDGET_ORG_PKG PACKAGE BODY APPS
    SAN_GET_SALARY FUNCTION APPS
    OBJECT_NAME OBJECT_TYPE OWNER
    SAN_GET_ELEMENTS_ENTRIES FUNCTION APPS
    XXADT_AST_APP_HIST_V VIEW APPS
    TRG TRIGGER APPS
    MSD_DEM_OBI_DEMANTRA_MV MATERIALIZED VIEW APPS
    F TABLE CA
    G TABLE CA
    61 rows selected.
    If am compiling also it shows error.
    SQL> alter package SPEC compile;
    Warning: Package altered with compilation errors.
    SQL> show error;
    Errors for PACKAGE SPEC:
    LINE/COL ERROR
    1/15 PLS-00103: Encountered the symbol "XX_4I_INV_ITEM_CREATION_PKG"
    when expecting one of the following:
    is authid as compress compiled wrapped
    The symbol "authid" was substituted for
    "XX_4I_INV_ITEM_CREATION_PKG" to continue.
    Please suggest me to reduce the invalid objects.

    Please post the details of the database version and OS.
    Was this application upgraded from 11i?
    For XX% objects, these are custom ones and you need to visit the code and fix it (with the help of your developers).
    For XLA objects, please see the following docs.
    Invalid XLA Packages In Release 12.1.3 [ID 1496529.1]
    Xla Invalids After Upgrade From 11i To Release 12 [ID 1302349.1]
    XLA Package Invalid in 12.1.1 [ID 1093888.1]
    R12: Invalid Xla Objects After Upgrade from 11i To R12 - Unable To Compile [ID 1238973.1]
    Unable To Compile Invalid XLA Objects [ID 1468836.1]
    For the rest of the invalid objects, please see the following docs.
    Troubleshooting Guide - invalid objects in the E-Business Suite Environment 11i and 12 [ID 1325394.1]
    R12.1:Invalid Objects After 11gr2 Db And Ebs 12.1.3 Upgrade [ID 1342701.1]
    Just Upgraded To R12 And Now A Number Of Objects Won't Compile - Views: <PROD>BV_ -> <PROD>BG_ and <PROD>FV_ -> <PROD>FG_ [ID 560185.1]
    R12.1.1 - Invalid Objects After Patching [ID 1093163.1]
    If you still have invalid objects, please compile them manually and post the error here.
    Thanks,
    Hussein

  • Invalid object name 'dbo.uf_GetRateSrcMember'

    Hello Friends,
    We recently applied the  SP3 (CPMBPC03P_1-20002499) for BPC 5.1. We are in Single Server environment. Our BPC 5.1 build was 5.0.486 which was required to install the SP3. After the installation it is 5.0.502
    We are getting the error below when we are trying to change the appliction sets from from the main page.
    Any help to resolve the issue is appreciated
    Server Error in '/OSoft' Application.  Invalid object name 'dbo.uf_GetRateSrcMember'.
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: System.Exception: Invalid object name 'dbo.uf_GetRateSrcMember'.
    Source Error:
    The source code that generated this unhandled exception can only be shown when compiled in debug mode. To enable this, please follow one of the below steps, then request the URL:
    Add a "Debug=true" directive at the top of the file that generated the error. Example:
      <%@ Page Language="C#" Debug="true" %>
    or:
    Add the following section to the configuration file of your application:
    <configuration>
       <system.web>
           <compilation debug="true"/>
       </system.web>
    </configuration>
    Note that this second technique will cause all files within a given application to be compiled in debug mode. The first technique will cause only that particular file to be compiled in debug mode.
    Important: Running applications in debug mode does incur a memory/performance overhead. You should make sure that an application has debugging disabled before deploying into production scenario.
    Stack Trace:
    [Exception: Invalid object name 'dbo.uf_GetRateSrcMember'.]
       Microsoft.VisualBasic.CompilerServices.LateBinding.LateGet(Object o, Type objType, String name, Object[] args, String[] paramnames, Boolean[] CopyBack) +905
       OSoft.Consumers.ZFP.WebBase.PageBase.GetCurrentView() +518
       OSoft.Consumers.ZFP.WebBase.PageBase.get_CurrentView(String strDimension) +43
       ASP.Landing_aspx.__Render__control1(HtmlTextWriter __output, Control parameterContainer) +95
       System.Web.UI.Control.RenderChildren(HtmlTextWriter writer) +27
       System.Web.UI.Control.Render(HtmlTextWriter writer) +7
       System.Web.UI.Control.RenderControl(HtmlTextWriter writer) +243
       System.Web.UI.Page.ProcessRequestMain() +1926
    Really looking forward for answers.
    I would really really really appreciate any help
    Thanks

    Kaji,
    I had the same problem. Here is the solution:
    Dear customer,
    This issue looks similar to a previously reported bug.
    In general there is the possibility that some service/process
    remained in a bad status and this can be fixed by restarting the server
    But could you please also check, whether this description fits
    to your scenario:
    This issue occurred because when there are no secured dimensions
    in an appset,
    The modified application process remove the user function
    which is used for checking secured dimension.
    In case there is no secured dimension in the appset the
    problem occurres.
    This issue looks similar to a previously reported bug.
    In general there is the possibility that some service/process
    remained in a bad status and this can be fixed by restarting the server
    But could you please also check, whether this description fits
    to your scenario:
    This issue occurred because when there are no secured dimensions
    in an appset,
    The modified application process remove the user function
    which is used for checking secured dimension.
    In case there is no secured dimension in the appset the
    problem occurres.
    When modify application is run , the user function has been removed.
    A workaround is this:
    if you make Entity and RateSrc as secured dimension,
    the user function will be made in the appset again.
    Then you can change the user function as other name in database
    by renaming. After finished the rename,
    you can change the dimension as unsecured dimension like current.
    Then, you have to replace the user function name
    as original function name.
    Because the user function name is dependent on dimension name.
    If you can#t connect BPC Admin due to web page error,
    you have to execute the EverestAdmin.exe file
    in "C:\Program Files\BPC"
    Hope it solves the prob...
    Nic

  • Error 25009. Invalid object mms_management-agent hr=0x80230406

    Hi There,
    While upgrading FIM 2010 to 2010 R2 SP1, we have encountered an Error 25009. Invalid object mms_management-agent <hr=0x80230406>. Have tried all the articles but the this is not with permissions. Since I am trying on test environment, we have given
    more than necessary permissions.
    Please help.

    Oh!! This took me 1 full day to figure out.
    Unable to start FIM sync service.
    I was looking through the event viewer and noticed an issue with the incompatible database state. 
    Then I thought, why not re install FIM sync service to have the database upgraded properly.
    It worked like a charm!!
    Now my FIM service is started automatically.

  • ORA-13050: unable to construct spatial object

    Hi
    I'm executing the following query
    select mdsys.sdo_geom.sdo_intersection (geoloc, :1, 20) geoloc, mdsys.sdo_geom.sdo_distance (mdsys.sdo_geom.sdo_intersection (geoloc, :2, 20), :3, 20) distance
    from streets
    where mdsys.sdo_relate (geoloc, :5, 'mask=touch querytype=window') = 'TRUE'
    order by distance
    In some locations the query works perfectly and in some other locations it throws
    ORA-13050: unable to construct spatial object
    Regards,
    Néstor Boscán

    I found the problem
    It seems I have invalid polygons in my data.
    Regards,
    Néstor Boscán

  • Transport user error: invalid object name while starting CMS in CCM

    Hi Experts,
            I'm not able to start the CMS in CCM.It was working fine. Suddenly it went down due to some data base access failure. After that Iu2019m not able to start the CMS.
    Kindly find the event viewer error and information.
    Error: The root server reported an error Initialization Failure.
    Error: Failed to register object..   Reason: Transport user error: invalid object name..
    Information: Central Management Server stopped
          Could you please tell me how to start the CMS in CCM? Since I can able to setup CMS Database and audit database successfully.
    Regards,
    Sridharan

    Hi ,
            Thanks for the response.I have trace the CMS.I found some error in log file.any idea on the following errors,
    trace message: CNSClientManager::VerifyConnection() : search fails(37) - Transport user error: object with the specified name not found.
    trace message: CNSClientManager::VerifyConnection() : Failed to query for APSs.  Empty cluster list returned.
    trace message: TheAPSServer::RegisterApsInNameServer: Fail to register the current APS(Transport user error: invalid object name.)
    trace message: CNSClientManager::ClusterInfo::InvalidateAPS: Removing APS  from m_ActiveMembers and adding to m_InactiveMembers
    trace message: SIServerController:run: Fail to initialize or uninitialize.  Reason is The root server reported an error Initialization Failure.:
    Regards,
    Sridharan

  • 10.2.0.4, Spatial and invalid objects

    We don't use spatial. We have no plans to use spatial. We do use Intermedia, badly.
    When I upgraded a database from 10.2.0.3 to 10.2.0.4, everything went OK, except that one object in the MDSYS schema (I can't remember its name, but it was something like SDO_GEOMETRY) was rendered 'invalid' in dba_objects afterwards.
    I tried to manually re-compile it. It produced errors like 'table doesn't exist'. And I got to thinking that this was a Spatial object that was invalid because none of the other Spatial components was installed. I needed the invalid status to go away because my boss has a query that spots invalid objects and hassles me if any exist, and my attempts to say 'this one doesn't matter' weren't working.
    So I used dbca to add Spatial to the database. (Added a tick to the spatial selector on the database options page). The addition went well, and at the end of it... zero invalid objects.
    Problem solved, sort of. Now I have a new problem: when I ran dbca again to UNinstall Spatial, the tick against the Spatial option is greyed out and it cannot be de-selected and hence removed from my database.
    And so my questions. How do you remove the Spatial stuff? Will removing it break Intermedia? Is there a better way to fix the 'invalid MDSYS object' problem caused by the 10.2.0.4 upgrade in the first place, because I have 8 other database to upgrade in the coming days? And, if the simplest thing to do is to just leave all the Spatial objects in the database, will we be in breach of our license, because we certainly haven't paid to use this feature, but we equally certainly have no use for it?

    I would guess that most questions asked here could have been resolved by 'searching on Metalink first'. According to your standards and rules, then, that makes this place mostly redundant. Perhaps we should just shut the place down?
    No, I'll tell you what: if you find your time being wasted, perhaps you could just not bother replying instead of pronouncing on high how those so much less exalted than yourself should behave and do things. You could have provided a metalink document number without the accompanying attitude, and then you would have my thanks and appreciation. But, for being a pompous a-s-s, you get neither.
    Here's a clue. Classic Metalink. Search for '10.2.0.4 spatial errors after upgrade', All Sources. Your precious document appears only 16th in the resulting list. Yeah, I could wade through 15 irrelevant documents before stumbling over the correct one, but I figure upgrading to 10.2.0.4 can't be that rare; somebody will have encountered the problem before; quickest way to a solution is therefore probably to post here. Not, I would have thought, an entirely unreasonable train of thought, though obviously it is in your particular corner of the universe.
    Besides which, whilst that document tells me how to fix the invalid objects without installing Spatial, which will certainly prove useful for all my other database upgrades, it doesn't tell me (and neither did you) how you uninstall Spatial after having installed it with dbca. That's not asking you to fill in the gaps, by the way: I wouldn't want to waste any more of your precious time.
    I'm just pointing out that your "answer", as well as being pompous and arrogant, also proves itself to be deficient.

Maybe you are looking for