Orphan objects in Central Repository

Hi guys
I need to identify the orphan workflows and dataflows that exist in the Central Repository but are not linked and used anywhere. They were used to be referenced but as not anymore and I want to idenify and delete them from Central Repo.
Have you any idea how to do that?
Thank you.

Hi,
Go to the top level object as per the hierarchy in the Central Repository (Project / Job / Work Flow etc.), right click the object and choose checkout with filtering / get latest version with filtering (based on the permission full / read) on your object.
This will show a window with all the dependents of the object which you have chosen. If the window shows destination status of only one object (the object which you have already chosen), then you can confirm that there are no dependent objects for this in the Central Repository. If you have full permission on this object, you can right click and delete the same from Central Repository.
Regards,
Suneer

Similar Messages

  • Central Repository issue

    Hi,
    I am trying to add jobs to central repository and it gives below error. I am using BODS 4.2. SP3
    Version control operation failed.Error message: Repository <xxx> does not contain object <max> for type <function>. Cannot continue with current operation. (BODI-1260123)
    Any idea what this error is?

    Hi Swati
    Please refer the below KBA
    2104228 - Error: Check and fix the syntax of the expression embedded in the string and retry. (BODI-1260123) when checking in object to Central Repository - SAP Data Services 4.x
    https://service.sap.com/sap/support/notes/2104228
    2021303 - Error message:Repository <Reponame> does not contain object <sy> for type <Function>. - Data Services 4.2
    https://service.sap.com/sap/support/notes/2021303
    Thanks,
    Daya

  • Central Repository

    We have about 300 users with new iPhones.
    We want to send out a periodic reminder to our users to sync their phones so they are backed up and get the latest software.
    Our concern is everyone downloading updates off the internet at the same time and causing congestion.
    We have approx 100 Macs and 200 PC's.
    Is there a way to have them get their updates from an internal resource as opposed to everyone downloading from the internet?

    Hi Swati
    Please refer the below KBA
    2104228 - Error: Check and fix the syntax of the expression embedded in the string and retry. (BODI-1260123) when checking in object to Central Repository - SAP Data Services 4.x
    https://service.sap.com/sap/support/notes/2104228
    2021303 - Error message:Repository <Reponame> does not contain object <sy> for type <Function>. - Data Services 4.2
    https://service.sap.com/sap/support/notes/2021303
    Thanks,
    Daya

  • An error occurred during creation of the central repository. (BODI-300020)

    I am trying to create a central repository for Data Service, the following error appear
    Creating repository... (BODI-300026)
    Reading SQL file <C:\BO\DataServices_12\admin\repo\MSSQL\ms.sql>. (BODI-20001)
    Executing SQL file <C:\BO\DataServices_12\admin\repo\MSSQL\ms.sql>. (BODI-20002)
    Reading SQL file <C:\BO\DataServices_12\admin\repo\MSSQL\ms_content.sql>. (BODI-20001)
    Executing SQL file <C:\BO\DataServices_12\admin\repo\MSSQL\ms_content.sql>. (BODI-20002)
    Reading SQL file <C:\BO\DataServices_12\Admin\repo\options.sql>. (BODI-20001)
    Executing SQL file <C:\BO\DataServices_12\Admin\repo\options.sql>. (BODI-20002)
    Verifying repository... (BODI-300077)
    Importing objects... (BODI-300036)
    Adding Data Quality new substitution configuration... (BODI-300133)
    An error occurred during creation of the central repository. (BODI-300020)
    It's a sql DBMS, and the default user language is spanish, during the installation was the same issue.
    The first installation user language was english and everything was ok, then the default user anguage was set to spanish and the jobs crashed because an english format was sent to the al_history table. I tried to recreate the repository and an error ocurrer during the creation.
    has someone faced the same problem?

    what is the version of Data Services ? if its 12.2, then there was a bug that is fixed in 12.2 SP1 (12.2.1.0), apply the SP1 or it would be better if you apply the latest fix pack for 12.2 i.e 12.2.1.2
    the problem was with date format used in insert was different than the user's default date format.

  • Upgrade to 4.2 SP4 corrupted custom functions in central repository

    I recently upgraded a repository from 4.2 SP1 to 4.2 SP4 and all the custom functions in the central repository (after being upgraded with repository manager) are no longer able to be check-out, can't get latest version, can't even export them...  nothing.  Each time I interact with anything dependent on these functions I get the following error:
    I've logged out completely, refreshed multiple times and nothing is solving the issue.  The functions correctly show up, but cannot be edited in any way.  Please help.
    both local and central repos are on MS SQL Server 2008 R2.

    Hi Matthew,
    Did the upgrade process from 4.2 SP1 to 4.2 SP4 complete successfully when you upgraded using Repository Manager.
    If you have a backup of 4.2 SP1 repository version can you please upgrade the repository to 4.2 SP4 and check the Latest version after upgrade is finished successfully.
    It seems that you are directly doing a Check in of dependent objects first.
    Try the below steps:
    1) First add only the object without dependents
    2) Add only the custom function to the central repository see if that works
    Please note the following points
    You can add a single object to the central repository, or you can add an object with all of its dependents to the central repository. When you add a single object, such as a data flow, you add only that object. No dependent objects are added.
    The error message suggests that dependent objects is missing.
    Please refer to Advanced DS reference Guide
    Refer to section
    To add an object and its dependent objects to the central repository
    https://help.sap.com/businessobject/product_guides/boexir32SP2/en/xi321_ds_adv_dev_en.pdf
    Regards
    Arun Sasi

  • Manipulating Central repository

    Hi,
    I have a question over the Central repository in Data Services. Let's say, user2 (a local repository user) checked out a job say job_1 from the central repository. Then say , we deleted the user2 local repository( i.e deleted user2 from the database). Now, how do we change the checkout status of the job job_1(checked out to user2) in the central repository so that other users (other local repositories) can check out. We encountered a similar situation today, i would really appreciate if anybody can provide a solution for the above problem. thanks In advance.

    If you have deleted the local repository that have locked these objects out, possibly the only option to get them released is using the UPDATE script on the Central Repository database. It has happened to us as well and running the script below fixed the issue.
    1. Run the query below on your Central Repository database. You should see the list of checked out obejcts in the result:
    SELECT * FROM ALVW_OBJ_CINOUT
    WHERE STATE <> 0
    2. Identify those that you intend to released (only those which belong to the deleted Local Repository) and run a UPDATE script like below to update the State column value to 0.
    For example:
    UPDATE [Table Name]
    SET State = 0
    WHERE Name = xxxxx
    Based on the object type the Table Name is different. Below is the list of table names:
    AL_LANG (This table contains the info about Job obejcts, such as Job, WF, DF)
    AL_FUNCINFO (This table contains the info about custom functions)
    AL_PROJECTS (This table contains the info about Projects)
    AL_SCHEMA (This table contains the info about db schemas such as tables)
    Therefore based on the type of the checked it object type, you should run the UPDATE statement on one of more of the above tables. For example the script below unlock the dataflow called MyTest_DF:
    UPDATE AL_LANG
    SET State = 0,
            CheckOut_DT = NULL,
            CheckOut_Repo = NULL
    WHERE Name = 'MyTest_DF'    --- The name of the checked out object that we want to release.
    Note- Please MAKE SURE you have a back up from your Central Repository before doing the update, just in case if you needed to revert the changes back. It should be seen as the last resort to unlock the objects, next time you might be more careful to delete a local repositiry, ensure no obejct is checked out by it
    Tootia

  • Central Repository Performance

    We have recently upgraded to data Services 4.2, sp1, patch 4.  We have been seeing very slow performance when checking things in and out of our development secured central repository.  The performance seems worse than it was in our 4.0 environment.
    I know that we have a large volume of objects in our central repository (84 projects, 419 jobs, etc.) and we have about 7o local development repositories hooked to it.  I am sure these may all be contributing factors to performance but are there other things I can be on the lookout for or settings that could help improve performance.

    As a follow up here is some of the performance degradation we are seeing.  This includes logging in to our 4.2 repositorys as well as get latest on various size projects.  The 4.0 test was done with a designer on a virtual server, the first 4.2 test was also a designer on a virtual machine, and the last was with designer on the data services job server.

  • How to delete object in Integration Repository SAP PI 7.0

    how to delete object in Integration Repository SAP PI 7.0

    Hi Rashmi,
    Right click on the object, you would find the option to delete--> select it. Goto Changelist Tab and activate the changes.
    Ref: /people/siva.maranani/blog/2005/05/22/how-to-delete-software-component-from-integration-builder
    Re: How to delete/remove the software component from integration repository
    Thanks,

  • How to UnLock the object in Integration Repository of XI.

    Hi Experts, when i try to edit the object in IR, i am getting following message.
    Object Message Mapping EmpResponce_MM | urn:pas.com/neh currently being edited by user 9SGRANDHI.
    Note: it is saying my ID itself, i logged off and logged in, still its showing same mesage, how to unlock the object in Integration Repository of XI.
    please help me out.
    thanks
    siva

    Hi,
    Go to Home page of XI,there u will have Administrator,select it and click on localobjects.There u will have IR and ID in that select lockoverview and remove ur lock.
    this authorization will be given to basis guys check u have it or not.
    Regards,
    Phani
    Reward points if helpful

  • Problem in getting the function template object from the repository.

    Hi all,
    I have created a par file. I have a JCO connection in that. I am facing problems in getting the function template object from the repository. This thing is running successfully when i try to deploy it in Tomcat. But i am facing problems when i try to deploy it in SAP EP 6.0.
    Below is statement which is giving error after being deployed to SAP EP6.
    This is executing fine when executed in Tomcat Server.
    // getting the object of function template
    IFunctionTemplate functionTemplate =
    aRepository.getFunctionTemplate("YADDNEWUSER");
    Note : YADDNEWUSER is the name of the RFC which I am calling from my JAVA Code.
    Thanks in advance,
    Divija

    This sounds like a bug in the smart upload code. I have used this stuff before, but it's probably an older version, so maybe they broke something. Enumerations aren't usually guaranteed to keep things in any particular order. I would say for now, make a method to take the enumeration and a param name to find the value. And write to the JSPSmart people.

  • Does the object in BO repository the same in different BO version?

    Hi Guys,
    Does the object in BO repository the same in different BO version or in different type of Database?
    One of my customer said that the objects(index, procedure, table ,view, etc..) are different between their TEST and PRO environments.
    Your help is appriciated.
    Thanks.
    Regards,
    Daniel

    Hello Daniel,
      The BO repository or CMS database has a different database structure between versions of the CMS database.  So if you have BO XIR2 versus XIR3, then they  have different database structures.  If the customers has a one version of XIR2 in TEST and it is a  different version like XIR3.1 in PRO environment then that would make sense. Each version of the XIR1, XIR2, XIR3 has a different database structures for the CMS database.   I hope this answers your question.
    Regards,
    Jorge

  • Invalid objects found in Repository

    I am installing grid control 11.1 to redhat 5.2, with repository database of 11.2 locate on the same host. At step 7 of 13 connect to database, I provided the host, port, service and sys password and clicked Next, and I got a simple error messageInvalid objects found in Repository. Re-compile the objects using:
    $ORACLE_HOME/sysman/admin/emdrep/sql/core/latest/admin/admin_recompile_invalid.sql
    <EM_REPOS_USER>.Ther is no other clues given. I checked the script admin_recompile_invalid.sql, it is pretty simple, just goes though all_objects and dba_synonyms for any invalide obejct for the <EM_REPOS_USER> user. If find, recompile. I am not sure what user is <EM_REPOS_USER> but the two queries returns nothing in my database for any/all users. The script should just pass and doing nothing.
    What could be wrong?
    Where I can find more info?

    Did you try recompiling invalid objects using utlrp.sql
    Also check invalid objects using :
    select count(*) from dba_objects where status<>'VALID';
    Regards
    Rajesh

  • Move OEM central repository to a new database

    Hi,
    We want to move the OEM central repository to a different machine, we would like to migrate the data from original database to the new database. What's the best way to do that and how to re-configure OMS to use the new database? Thanks!

    Hi,
    Please follow the document below:
    Grid Control Repository: Steps for Cross Platform Migration of the 10g Grid Control Repository (Doc ID 388090.1)
    Best Regards,
    Venkat

  • Create new objects on the repository

    Hi
    I would like to know how to create or modify objects in the repository and whether by doing that they would be created or modified in the database or I have to do it on the database first.
    thanks

    Hi,
    then you need to look into the code you are doing. thats a custom application which we have no knowledge about.
    ingo

  • BlazeDS in Maven central repository

    I'm trying to use Maven 2 for building a Flex-BlazeDS-Spring project but I can't find BlazeDS libraries in any public repository. That would be great if BlazeDS libraries were uploaded.
    See http://maven.apache.org/guides/mini/guide-central-repository-upload.html

    The thing is that BlazeDS is built using Ant so I guess it's not easy for them to extract maven artifacts and their POMs.
    But if this 1.0.0-beta1 is in fact a 3.0.0.x, I'll try with that.
    2008/3/3, Tom Jordahl <
    [email protected]>:
    A new message was posted by Tom Jordahl in
    General Discussion --
      BlazeDS in Maven central repository
    And the version there is labeled beta 1.
    Tom
    View/reply at <
    http://www.adobeforums.com/webx?13@@.3c06495b/2>
    Replies by email are OK.
    Use the unsubscribe form at <
    http://www.adobeforums.com/webx?280@@.3c06495b!folder=.3c061a83> to cancel your email subscription.
    Sébastien Arbogast
    http://sebastien-arbogast.com

Maybe you are looking for

  • Error in Sm21

    Dear All, We are using ecc5 with oracle 9i and windows 2003. I am getting Getting error in sm21 . I have seen the dev trace in this there is sugesst agject DNS setting i am unable to solve the proble please suggest how to solve the problem. Time    

  • Dynamic tuple expression in *REC statement

    Hi there, I think I know the answer to this already, but here goes... I need to use a tuple expression in a *REC statement (in place of the old-fashioned GET) but I want it to be dynamic, so at least one of the tuple members changes at runtime. To us

  • How can I setup without an ethernet cable?

    Hey guys, I just got my Time Capsule... I have a wireless modem existing for internet - ethernet cable from the wall to the modem. I'm wondering how I can go about setting up my Time Capsule without an ethernet cable?? I don't have an extra one.  :S

  • Error Correction doesn't work

    Using WIn Vista, AMD AM2 6000+ This is a fresh install (actually tried twice incase it was a problem with the Vista install). I can't load ANY cd with error correction on and with it off, I get skipps in the files. iTunes version 7.3.1.3 It works gre

  • SWFLoader Bugs?!!!!!!!!!!!!!

    I am trying to do the communication betwen Flex with Flash (SWF) loaded by SWFLoader. However, I always encounter the problem that sometimes the program do run properly, but sometime it doesn't even start up. Here is my Flex code: <?xml version="1.0"