CMS objects that are orphaned in the Input FRS

Post Author: [email protected]
CA Forum: Administration
Is there a tool / way to comb through the CMS objects and clean up CMS objects that do not have a file that exists in the Input FRS?
Not sure how we ended up with these orphaned objects, product of migration i guess.

Post Author: jsanzone
CA Forum: Administration
Jason,
I'm not sure what the case would be if you were to allow these orphans to linger around, as best as I can tell there are no inherent problems.  However, as good administrators we sometimes feel best when things are neat, tidy, and all accounted for.  In answer to your question, I do not know of any tool per se, other than using the artificats that Bus Objects leaves us with to "check things out" and to also use other resources as we see fit.  The best I can imagine in getting to the data you seek is as follows:
-  use the Query Builder tool (/businessobjects/enterprise115/WebTools/websamples/query/query.aspx"&gt;https://<server>/businessobjects/enterprise115/WebTools/websamples/query/query.aspx?
- in the "enter your SQL code here" box, type: select si_files,si_name from ci_infoobjects where si_obtype=260 (then click on "Submit Query")
- you will get a screenful of info back in your browser, and this is where the "tricky" part starts.  If you're working in a unix (or unix-flavored) environment (or have "grep", "cut" and "paste" for windows), you can highlight all the text that is returned, then copy to a text file.  Using grep, you can grep on "SI_FILES SI_PATH" | cut -c24- and output to another text file.  Then you can grep on "SI_FILE1" |cut -c10- and output to another text file.  Then finally, paste -d"/" <file1text> <file2text> (this puts the two parts together with a slash between thus resembling a file name.  The next task is to go the place where your filestore is at (if you've not moved it from the original installation, then most likely at "C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\FileStore").  From here you'll have to obtain a pathname/filename list of all your "*.wid" files (in unix this is easy, however, in Windows/DOS, you might try zipping everything to a PKZip file, then "test" the file and copy/paste the output from it to another text file.  Once you have the two text files in front of you then you can use a variety of tools to "match things up" (i.e. import to Access as two tables and use inner join/outer join techniques, etc, etc).
In my particular case, the query builder is telling me that I have 894 objects, however, doing an Explorer search I get 880 objects, so I have 14 orphans in CMS.  I'm not sure how this happens either and I'm not sure how I'd go about removing these puppies from CMS either, but I guess if I took the above steps, I'd know exactly which IDs in CMS were out of whack.
Good luck.

Similar Messages

  • Security Scopes: All instances of the objects that are related to the assigned security roles greyed out

    So the guy who built our SCCM server is no longer in the company and his AD account no longer exists.  I noticed in SCCM however his account as the "All instances of the objects that are related to the assigned security roles"
    is selected. however the option is greyed out for everyone else.
    This option is the one found under Administration/Security/Administrative Users select the user and open properties then select the Security Scopes tab.
    Is there a way we can provide another user this same level access when we can no longer access through the original build account?
    Already looked into tombstone resurrection of his account thats a no go.
    

    Hi,
    I recommend you rebuild SCCM or open a case with Microsoft.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • To get all the objects that are used inside the class

    Hi All,
    All i wanna know is to get all the objects that are used inside the class.
    Ex :
    Class A{
    Emp e;
    public add(Dept d){
    e.deptid = d.deptId;
    in this class i have two objects, one Emp obj and another Dept object.
    I wanna get the details abt this class Emp and Dept by simply parsing the file and by not loading this class in JVM.
    Could any pls hel me out.??
    thx.

    I wanna get the details abt this class Emp and Dept
    by simply parsing the file and by not loading this
    class in JVM.Your problem statement is vague and the constraint is IMO hypothetical.

  • I am having troubles when I save my Adobe illustrator file as a PDF file. The file contains some objects that are made by the mesh tool. When I save my illustrator file as a pdf, the meshed objects don't show. What should i do????

    I am using Illustrator CS5

    Please show a screenshot of the meshes
    Attribute panel: any overprints set?
    What kind of PDF do you save? Which options?
    Which app do you use for viewing the PDF?

  • If an internal ID is changed for the Work Repository how does it affect objects that are already in it?  Will they continue to run or do you need to cycle the ODI agent?

    I was having trouble migrating the Master and Work repositories from my QA to my Prod environment.  I was getting an error message that the internal id's were alike so I changed the internal id in my Prod Master repository.  Then I tried to migrate the Work repository and was getting a similar error.  I did a search on the internet for the error message and it recommended that I renumber the Work repository so I did.    My concern now is how these changes affect the objects that are already in the repositories?  Will those objects continue to run?  Also do these changes take affect immediately or do you need to cycle the ODI agent?

    Well I cannot completely assure you but so far I have not faced any issues after a renumber. It will affect the exist object only when you have imported the object in synonym_update mode. I believe you have the daily backup of your production repository.
    Bhabani
    http://dwteam.in

  • How do I preview objects that are outside of artboard.

    Hello,
    When I placed an illustrator file in Indesign, I would select command+D > select "Show Import Options" and we have a preview of the image. On some occasions, the preview will include all extraneous objects that are outside of the artboard and other times, it will display only the image within the artboard or bounding box. (Please see attached samples)
    Does anyone know the reason behind this?
    Thanks,
    Sutagami

    The only way I can reproduce what you are experiencing is if I save out as an .eps and am not mindful of the Artboard check box on the save dialog. If you deselect this check box you will get all of the file content, if you select this check box you will only get the designated Artboard bounding area. But you never said what file format your are saving or what version of Illustrator you are using. I have to assume you are in CS4.

  • Is it possible to group 2 objects that are located on 2 different pages in InDesign CS4 JS

    Is it possible to group 2 objects that are located on 2 different pages. Would it be something like that:
            var myArray = new Array;
            //Add the items to the array.
            myArray.push(myLine1);
            myArray.push(myLine2);
            //Group the items.
            var myPages = app.activeDocument.pages;
            myGroup = myPage.groups.add(myArray);
    Thank you very much for your help.
    Yulia

    You can group objects from distinct pages only if they belong to the same spread.
    For instance, if you have a rectangle on page 2 and a rectangle on page 3 in a "facing pages" configuration, this should work:
    var doc = app.activeDocument;
    var r2 = doc.pages[1].rectangles[0]; // rectangle on page 2
    var r3 = doc.pages[2].rectangles[0]; // rectangle on page 3
    // it's better here to handle the parent spread:
    var g = doc.spreads[1].groups.add([r2,r3]);
    // but this may also work:
    // var g = doc.pages[1].groups.add([r2,r3]);
    // var g = doc.pages[2].groups.add([r2,r3]);
    @+
    Marc

  • Check if in Word document (Word 2013) advanced option "Use fonts that are stored on the printer" is set

    Is it possible in a VBA macro to check whether an opened word document has the advanced option "Use fonts that are stored on the Printer" is set.
    I have a word macro that opens and processes thousands of word documents.  The processing needs to be different based on whether this option is set or not.
    Thanks,
    Harry Spier
    Harry Spier

    Hi Harry,
    I'm afraid that we're not able to retrieve this option value. The Advanced Options are actually stored as application level. Some of the options can be accessed with the Word.Application.Options property. But there're also many options that are not
    exposed in the Word Object Model. As you can see in this figure, there's no property corresponding to "Use fonts that are stored on the printer":
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Restrict filter values that are shown in the selection screen

    Hi Experts
    1) Is it possible to restrict the filter values that are shown in the selection screen in BEx web? When a user are asked to enter a material number and uses the selection button in BEx web, he should only see material numbers for one specific plant. How is this done? 
    2) Is it possible to remove the selection button for å characteristic filter in the selection screen in BEx web? The selection button I am talking about is the button to the right of where you enter the filter value (two white papers on top of each other). If there is no solution for question 1 we have to go for question 2 solution.
    We are using BI 04s, SP 09.
    Kind regards
    Erik

    Hi Erik,
    It seems that you would like the user to see value for 1 single plant. If the Plant Value is fixed then you can use this value in the Query and hardcode it.> in the query go to the Plant Chrac and keep a constant value of the Plant.
    How ever if you need this value to be dynamic then use a variable for customer exit and populate this value using ABAP.
    Regards,
    Jasprit

  • There are about 8 songs in a playlist on itunes that are listed in the playlist but cannot be transferred to my ipod because it states: "..the original file could not be found." When I try to locate the song I get a list of the different music librar

    There are about 8 songs on a playlist that are listed in the playlist library but when I try to transfer them to the playlist, it states that they can't be transferred because the original file could not be found. Then it asks, do you want to locate the file but when I try that I get a few libraries but am not sure how to locate the particular songs. Some of the songs were purchased and some were transferred from a CD. I have seen the same question asked on the help page but haven't found an answer.
    Thanks.

    Hi dones49,
    It sounds like your issue here is that iTunes can not find the files for some of the songs you have brought into it. This happens occasionally even if the songs have not been moved from the location that iTunes places them on import or purchase. When you try to use the song, iTunes prompts you to find the file, as you have seen.
    To find the file, use the information in this article to navigate through the iTunes media folders -
    Locate and organize your iTunes files
    If you are still unable to locate the files, you may need to download them from the iTunes store again, or rip them from your CDs. See this article for assistance with downloading your past purchases -
    Download past purchases
    Thanks for using Apple Support Communities.
    Best,
    Brett L 

  • When I go to create a new project in imovie using the iPhone 5, I am not able to see any of my video clips or photos that are saved on the device.

    When I go to create a new project in imovie using the iPhone 5, I am not able to see any of my video clips or photos that are saved on the device.

    When you move or copy the compound clips with their events into an external drive all the events should be there. Not clear on why you want to move them into a single event. You can drag and drop from one event to another.
    Why are you using compound clips? You can simply copy the project from each machine with used media onto the external drive and that should do it.

  • Custom report to identify items that are consigned to the customer directly

    Custom report to identify items that are consigned to the customer directly
    the above requirment related to which module and for this which tables i can use
    pls give some details about this requirment.
    thanx

    Hello,
    I believe you are on the wrong forum. Application Express is a web development tool, and from your questions you probably should look under the E-Business Suite forums (http://forums.oracle.com/forums/category.jspa?categoryID=3).
    Regards,
    Arie.

  • In iTunes on my windows 7 PC, the Edit/Preferences dropdown window,some of the tab windows are not large enough to see all options that are available.  The borders of the window cannot be draged larger.  As a result, I can not uncheck or check some box's.

    In iTunes on my windows 7 PC, in the Edit/Preferences dropdown window,some of the tab windows are not large enough to see all options that are available.  The borders of the window cannot be draged larger.  As a result, I can not uncheck or check some box's on several of the preferences pages.  The Apple people at the store did not help.  I have lownloaded the latest version of iTunes and this is still an issue.  HELP.

    Is there really nobody else with this problem? Really?

  • My mac's launchpad is working but i am not able to use the apps that are provided in the launchpad

    my mac's launchpad is working but i am not able to use the apps that are provided in the launchpad

    Well, everything that you have bought with her Apple ID prior to getting your own Apple ID is forever hers. Apple will not transfer content from one ID to another. But in the case of the Mac, contact iTunes Customer Service and request that they send your issue to the Account Security Team and ask that the Mac be released form your mother's account so you may register it with your account. Then you can accept the iLife apps into your account for any future updates.
    iTunes Support -
    http://www.apple.com/support/itunes/

  • When I copy a CD onto my macbook pro I sometimes get several songs that are "out" of the album.  How do I get them all together in one album?  Any help will be much appreciated!

    When I copy a CD onto my macbook pro I sometimes get several songs that are "out" of the album.  How do I get them all together in one album?  Any help will be much appreciated as I cannot seem to find the solution to this problem in the troubleshooting section of iTunes.

    Generally all you need do is give tracks from the same album a common Album Artist. See Grouping tracks into albums. The images need an update but the basic info. still holds.
    tt2

Maybe you are looking for

  • HT1386 Unable to sync my ipod nano with itunes

    I have added some new music to my itunes, attempted to syn my ipod nano and instead of adding the music it has completely emptied ALL of the music off my ipod! I have made several attempts - doing what I have always done to add music, but to no avail

  • Forte access to AS/400 Databases

    Does anyone have any experiences accessing an AS/400 database from a Forte partition? If so, we would like to know if ODBC or some other technique was used. If ODBC was used, what vendor supplied the ODBC connection? To unsubscribe, email '[email pro

  • Status of ADF BC / JSF Version of Developer Guide?

    Can anyone provide an update on when this will be available (Developer guide based on ADF BC and JSF vs. Toplink)? I'm EAGERLY awaiting - this will be very helpful. I was able to download the SRDemo app based on ADF BC / JSF - this is very helpful to

  • How do I add the Google Verification code to my site being hosted in Business Catalyst?

    Not sure where to put the html google verification code in my Muse site? It's hosted on Bsiness Catalyst. thanks

  • User exit sales realted

    I have a requirement related to user Exit. I have done the changes and moved to Quality. Now the Problem is whatever I wrote code earlier, now they change the requirement same code instered into new Include program with in the User Exit. they sent SA