How to get rid of documents in DSTATUS = GENWWW

Hi,
Somebody did mess in our test UCM and I have couple of documents there in REVISIONS table which are in DSTATUS = 'GENWWW' and DRELEASESTATE = 'N' and DPROCESSINGSTATE = 'C'
These documents are not searchable in GUI - I tried search by DDOCNAME or DDOCTITLE, but nothing is finded. I want to delete these files from UCM and filesystem correctly.
Any ideas how could it be done?

Hi
Just go to Repository Manager and On the left side of the Repo Manager you can set filters. Type the Content id for those contents that you know or better put the Indexer status as GenWWW. This will show up all the contents with the status as GenWWW. Just select all of them and delete them. This will be a Hard Delete means that it will deleted from the CS altogether.
Hope this helps
Thanks
Srinath

Similar Messages

  • How to get rid of white space in EPS embedded in Word for letterhead template?

    Does anyone know how to get rid of the white band in the bottom of this letterhead?
    I embedded the EPS image (done via Illustrator) as a watermark in the header section of MS-Word.
    It looks fine in the Word version, but as soon as I try to print the document - either via Word or via a PDF - that white
    band on either side of the footer and underneath it keeps showing up. I can't get rid of it. I tried this on a PC and a Mac
    and those white bands won't go away.
    If anyone could let me know how to resolve this problem, I would be eternally grateful!
    Thank you.
    NZB

    If you want this to bleed, then you will have to print on oversize paper and trim or find a printer that will print borderless.

  • How to get rid of the main text box in the back of the page AND move things

    I usually work in Adobe Illustrator, Photoshop, and InDesign, but am creating two newsletter templates in Pages for a colleague, since it will be easier for her. But, for the life of me, I can't figure out how to get rid of the main text box in the back of the page that is driving me crazy. I just want a nice blank page that I can do whatever I want with. AND, I can't figure out how to select things so that I can move them, like shapes and text boxes. Some things seem to move fine, then other things just sit there. I am at the end of my rope!!!

    Hi, Dylan. Welcome to Discussions.
    If you're referring to the area where you just start typing when you open a new blank document, you can't get rid of it. But you also don't have to use it. You can insert text boxes and size and position them as you desire. Just be sure they're defined as Fixed on Page. When one is full and you want to continue it to another page (or to the side), click in the blank blue box on the lower right side of the text box. That will create another box and your overflow text will flow into it. Then position it where needed.
    Also, you can create a text box the width of the page and then set it for 2 or more columns.
    When you want to send something to the back and you may want to access it again later, just use the send backward command. If you send it all the way to the back, it will be behind the main text layer (where it will be safe from acvcidental movement) but you will have to click outside the work area and then drag the pointer to the object to select it.
    Hope this helps to get you started.
    Walt

  • How to get rid of Adobe Reader on my OSX 10.9.5

    I have a Mac mini, using OSX 10.9.5 and was forced to download Adobe Reader by Public Works, government of Canada, in order to print their document.  For starters this is SO wrong.
    When I completed the download, Adobe Reader wanted me to approve it replacing my Preview, which I didn't want to do, so I answered NO. 
    Now I can't get into the damnable Adobe Reader to get rid of it. 
    Can you please let me know how to get rid of ALL of Adobe Reader from the download?
    Thanks in advance for your anticipated help.

    Macintosh HD > Library > Internet Plug-ins
    Look for these two files.
    AdobePDFViewerNPAPI.plugin
    AdobePDFViewer.plugin
    Right click on those and select “Move To Trash”.
    Restart the computer.

  • How to get rid of file name that pops up with mouseover?

    When a user is on my website and mouses over a link to another page, the name of that page comes up - for example, if I mouse over the link to the Mums Night Out page (while on the home page) the file name pops up (mumsnightout.html)
    Any idea on how to get rid of that annoying issue?
    Thanks,
    roxpat

    Is this question now solved?
    Excuse me if it is, but I am really freaking out about this and don't know what to do.
    I don't want to launch my website before everything is perfect and I really want the yellow-pop-up-box-bstrd to go away.
    I am using this code which works fine in ff and safari but not in ie:
    <script type='text/javascript'>
    function clearTooltip() {
    _links = parent.document.links;
    for (i=0; i<_links.length; i++) {
    _links.setAttribute('title', '');
    chkFooter = setInterval('checkFooter()', 100);
    function checkFooter() {
    if (parent.document.getElementById('footer_layer') != null) {
    clearTooltip();
    clearInterval(chkFooter);
    </script>
    Should I modify it in some way? Any ideas?

  • How to get rid of missing link dialog?

    Hello All,
    Here is the description of the problem I am facing..
    From the indesign document I am exporting some incopy files.I close the indesign document and then I relocate the incopy files to some other location.
    Now I again reopen the indesign file, while opening, the missing link dialog pops up which asks for either not to fix the links or fixing the links automatically.
    How can I do the same thing programatically so that the Missing dialog will never pops up.
    So here are my two requirements.
    1) How to relink the files programatcally
    2) How to get rid of the missing link dialog.(also what is the widgetID of this dialog.?)
    I posted this question before also but couldn't get the solution.
    I tried every possible way available in sdk
    i.e using
    IUpdateLink
    kRestoreLinkCmdBoss
    IInCopyDocUtils
    etc.
    But I was unable to relink the files as well as supressing the missing link dialog.
    Any help in this matter will be highly appreciated.
    Regards,
    Yopangjo

    Hi Emanuele,<br /><br />Here is the code..I put this code in Respond function.<br />Please also refere the   FileActionsOpenDocResponder.I also tried using the functions CheckLinkedStories and others.<br /><br />//code start////<br />InterfacePtr<IDocumentSignalData> documentSignalData(signalMgr, UseDefaultIID());<br />ASSERT(documentSignalData != nil);<br />if (documentSignalData == nil) {<br />break;<br />}<br />InterfacePtr<IDocument> doc(documentSignalData->GetDocument(), UseDefaultIID());<br />if (!doc) {<br />break;<br />}<br /><br />IDataBase * db = GetDataBase(doc);<br />InterfacePtr<ILinksManager> linksManager(doc,UseDefaultIID());<br />if(linksManager == nil)<br />{<br />return;<br />}<br />for(int32 linkIndex = 0;linkIndex < linksManager->GetLinkCount();linkIndex++)<br />{<br />UIDRef linkUIDRef = linksManager->GetNthLinkUID(linkIndex);<br />InterfacePtr<IDataLink> dataLnk(linkUIDRef,UseDefaultIID());<br />if(dataLnk == nil)<br />{<br />continue;<br />}<br /><br />UIDList linkUIDList(linkUIDRef.GetDataBase());<br />linkUIDList.Append(linkUIDRef);<br /><br />NameInfo ni;<br />PMString formatName;<br />uint32 fileType;<br /><br />dataLnk->GetNameInfo(&ni,&formatName,&fileType);<br /><br />uint64 size,time;<br /><br />IDataLink::StateType stTp = dataLnk->GetStoredState(&size,&time);<br />switch(stTp)<br />{<br /><br />case IDataLink::kLinkNormal:<br />break;<br /><br />case IDataLink::kLinkMissing : <br />case IDataLink::kLinkOutOfDate :<br />{<br /><br />//code for relinking.<br />InterfacePtr<ICommand> relinkCmd(CmdUtils::CreateCommand(kRestoreLinkCmdBoss)); <br />if(relinkCmd == nil)<br />{<br />continue;<br />}<br />InterfacePtr<IRestoreLinkCmdData> relinkCmdData(relinkCmd, IID_IRESTORELINKCMDDATA); <br />if(relinkCmdData == nil)<br />{<br />continue;<br />}<br /><br />//Here you can hardcode the file name in place of dataLnk->GetFullName()<br />relinkCmdData->Set(db, linkUIDRef.GetUID(),&ni, &formatName, fileType, IDataLink::kLinkNormal,(dataLnk->GetFullName())); <br />CmdUtils::ProcessCommand(relinkCmd); <br /><br />//update the link<br />InterfacePtr<IDataLinkHelper> dataLinkHelper(static_cast<IDataLinkHelper*><br />(CreateObject2<IDataLinkHelper>(kDataLinkHelperBoss)));<br />if(dataLinkHelper == nil)<br />{<br />return;<br />}<br />InterfacePtr<IUpdateLink> updateLink(dataLinkHelper, UseDefaultIID()); <br />UID newLinkUID; <br />updateLink->DoUpdateLink(dataLnk, &newLinkUID );//kFullUI);<br /><br />//The program crashes here<br />InterfacePtr<ICommand> command(CmdUtils::CreateCommand(kRefreshCmdBoss));<br />InterfacePtr<IRefreshCmdData> data(command, IID_IREFRESHCMDDATA);<br />data->Set(GetDataBase(dataLnk), newLinkUID, IDataLink::kLinkNormal);<br />CmdUtils::ExecuteCommand(command);<br /><br />}          <br /><br />//code end.<br />(please check for any missing brackets.)<br /><br />Thanks and Regards,<br />Yopangjo

  • How to get Folder or document service permissions  by using  KM API's

    Hi,
    Any help how to get Folder or document service permissions  by using  KM API's  
    Any help or hint is greatly appreciated.
    Thanks,
    Costa.

    Hi,
    I have tested it here and it works for me (this code lists the service permissions settings for folder /documents/temp/):
        RID rid = RID.getRID("/documents/temp");
        try {
          IUser user = (IUser) request.getUser().getUser();
          IResourceContext context = new ResourceContext(user);
          IResource res = ResourceFactory.getInstance().getResource(rid, context);
          IResourceFactory resourceFactory = ResourceFactory.getInstance();
          IRepositoryServiceFactory serviceFactory = resourceFactory.getServiceFactory();
          IAclService aclService = (IAclService) serviceFactory.getRepositoryService(res, IWcmConst.ACL_SERVICE);
          IResourceAclManager aclResourceManager = aclService.getAclManager();
          IResourceAcl resourceAcl = aclResourceManager.getAcl(res);
          boolean inheritedAcl = false;
          if (resourceAcl == null) {
            resourceAcl = aclResourceManager.getInheritedAcl(res);
            inheritedAcl = true;
          response.write("<strong>SERVICE PERMISSION OWNERS</strong><br>");
          IUMPrincipalList ownerList = resourceAcl.getOwners();
          IUMPrincipalListIterator ownerListIt = ownerList.iterator();
          while (ownerListIt.hasNext()) {
            IUMPrincipal ownerPrincipal = ownerListIt.next();
            String strPrincipal = ownerPrincipal.getId();
            response.write(strPrincipal + "<br/>");
          response.write("<br><strong>SERVICE PERMISSIONS</strong><br>");
          IResourceAclEntryList el = resourceAcl.getEntries();
          IResourceAclEntryListIterator it = el.iterator();
          while (it.hasNext()) {
            IResourceAclEntry entry = it.next();
            String strEntryPerm = entry.getPermission().getDescription();
            String strPrincipal = entry.getPrincipal().getId();
            response.write("<strong>" + strEntryPerm + "</strong> - principal: " + strPrincipal + "<br/>");
            IAclPermissionList plList = entry.getPermission().getMembers();
            IAclPermissionListIterator plListIterator = plList.iterator();
            while (plListIterator.hasNext()) {
              IAclPermission perm = plListIterator.next();
              response.write(perm.getDescription() + "<br/>");
        } catch (Exception e) {
          response.write(LogWriter.extractCallStack(e));
          LogWriter.traceSevere(LogWrapper.trace, e, LogWriter.extractCallStack(e), true);
    Romano

  • Sophos detected 3 threats on my iMac but clean up failed. Any idea how i get rid of them please? 1 is Malware the other 2 Trojans. Thanks

    Sophos detected 3 threats on my iMac (Maverick OSX 10.9.5) but clean up failed. Any idea how i get rid of them please? 1 is Malware the other 2 Trojans. Thanks

    Thanks for your interest CSound & sorry I couldn't get back sooner. These are the full details from Quarantine Manager:
    Date                    Threat                    Filename                                   Action Available
    2 Feb 2015      Troj/Zbot-Goy           notification - the_royal_ban          Clean up failed
    2 Feb 2015     Troj/Agent -AIRO     sale 2014-12-08_8704...                Clean up failed
    2 Feb 2015     Mal/Phish-A               e document..html                          Clean up failed
    I did have a look at a 'manual' for sophos but couldn't make sense of how to go about trying to rid something if the automatic detection / clean up process didn't work.
    Any ideas?
    Thanks

  • How can get rid of indent in pages?

    it's been hours I am trying to figure out how to get rid of the indents that i am getting automatically while using pages. I am not pressing any Tab. I am used to of using MS Office, and now this is annoying how I have to waste my time figuring this out! HELP NEEDED!

    Greetings Harde sean,
    Welcome to the Apple Support Communities!
    It sounds to me like you have have tab stops in the document you are working on in Pages causing an indent. To move or set these tab stops, please use the information located in the attached link. 
    Set tab stops - Pages Help
    Cheers,
    Joe

  • How eo get rid of the annoying pop-up box just below the search box on the mozilla home page when I open mozilla?

    how eo get rid of the annoying pop-up box just below the search box on the mozilla home page when I open mozilla?

    That is the snippet container.
    You can hide that container or set the <b>browser.aboutHomeSnippets.updateUrl</b> pref to an empty String on the <b>about:config</b> to make Firefox use some default snippets.
    *http://kb.mozillazine.org/about:config
    You can hide the box that shows the snippets with code in userContent.css
    *http://kb.mozillazine.org/Editing_configuration
    You can use the ChromEdit Plus or Stylish extension to have easier access to the customization files.
    *ChromEdit Plus: http://webdesigns.ms11.net/chromeditp.html
    <pre><nowiki>@-moz-document url(about:home){
    /* hide snippet container on the about:home page */
    #snippetContainer { display: none !important; }
    }</nowiki></pre>
    Can you attach a screenshot if you mean something else?
    *http://en.wikipedia.org/wiki/Screenshot
    Use a compressed image type like PNG or JPG to save the screenshot and make sure that you do not exceed the maximum file size (1 MB).

  • How I get rid of the Firefox 'Be a web hero etc' & other like windows appearing? It's irritating!

    How I get rid of the Firefox 'Be a web hero etc' & other like windows on starting Firefox. It's very very irritating.

    You can add this code to userContent.css to hide the snippets container on the about:home page.
    * http://kb.mozillazine.org/userContent.css
    * http://kb.mozillazine.org/Editing_configuration
    You can use the ChromEdit Plus extension to have easier access to the customization files.
    * ChromEdit Plus: http://webdesigns.ms11.net/chromeditp.html
    <pre><nowiki>@-moz-document url(about:home){
    /* hide snippet container on the about:home page */
    #snippetContainer { display: none !important; }
    </nowiki></pre>

  • I cant update nor download any applications. My password was always invalid. And other username is prompted richardca0521@yahoo.ca which is not my account. How to get rid of this apple id and use my account for download? I have registered this to itunes.

    I can't update nor download any apps in itunes. Prompted invalid password, upon checking the apple id was not mine. The id was [email protected] whic is not mine. Pls. Help how to get rid of this. Thank you.

    try and delete the apps and re-add them

  • I have a new iPhone 5S.  While trying to learn about it, I accidentally recorded a voice memo with no content.  I cannot now figure out how to get rid of it.  There is a banner across the top of my phone with this memo which I don't want.  Help!

    I have a new iPhone 5S.  While trying to learn about it, I accidentally recorded a voice memo with no content.  I cannot now figure out how to get rid of it.  There is a banner across the top of my phone with this memo which I don't want.  I have deleted it from iTunes but cannot get it off the phone.  Help!

    The banner usually indicates that the memo is "Paused." If you go back into voice memos, touch the word "Done" beside the big red pause button, give it a name, then it will show in a list. Touch the memo in the list then touch the trash can icon that should appear.

  • How to get rid of Safari !!!!!

    I must have missed the message to install Safari during one of the many iTunes updates and now I'm stuck with it on my computer taking up 60GB of space! I've tried removing it through Control Panel -> Uninstall Programs, but get the message that I don't have administrator privilages - which I do. Thinking I may have had this installed while I was logged in under my main administrator name, I logged off and logged back in under my only other user name and tried again - same message. So I went to the Safari folder and changed all security privilages to full access for both accounts and it still won't uninstall. How can this program claim I don't have administrator privilages when I used the only two user accounts on my computer?? So in a fit of defiance and desperation, I deleted the Safari folder and then ran the name "safari" in Vista's search box under the Start menu (I even included the wildcard .* to catch all examples). Guess what? Rather than find all traces of safari on my computer so I could delete them manually, Safari started running again!! I cancelled the program before it finished loading and went to recheck the Program Files folder and Safari was back there with a full 60GB of files again! I CAN'T GET RID OF IT!!
    Safari is a malicious software program as bad as any Malware or Adware I have ever seen! How can I get rid of it??
    (and no, I really do not want Safari - I don't care if you think its the greatest thing since sliced bread - I make the choices on my computer, not some software engineer or marketing division and I DON'T WANT SAFARI!!)
    Any suggestions on how to get rid of it? Did I miss something?
    Thanks all,
    LH

    The Safari update is not clear what it is and provided no explanation of what it was - it simply states "Safari". For all I know it could have been an indexing file for iTunes. There was no explanation as to what is was and the install checkbox was already checked so the unsuspecting may quickly and accidentaly hit install along with the iTunes update, thinking it was a required part of iTunes. Regardless of how it got there, I'm trying to get rid of it and it won't uninstall.
    Now you may fancy yourself as some kind of wunderkind software expert, but you apparently do not know Vista because it really does take up 60 GB and every time I delete it, it tries to reinstall itself. These are not multiple installations and I am the only user on this computer. You haven't offered me any help - only insults. If you aren't willing or able to offer help or assistance in the most sincerest form this request was intended, than stay out of this thread. Your actions and insults reinforce the prevailing belief that Apple users are unkind, rude, self-important snobs.

  • HT5622 how to get rid of an old apple ID on my iphone 5 . the ID belongs to a store where I bought my phone ,and it's in a different country ??

    How to get rid of an old Apple ID on my iphone 5 ? The ID belongs to a store I bought my iphone from ,and it's in another country.

    You can't.  That's the new security feature of iOS7 that users (and others) requested to prevent stolen devices from being restored by theives and reused.  Contact the "store" you purchased your phone from and see what they say.

Maybe you are looking for

  • How do I change my icloud account ID on my 4s to my current appleid?

    How do I change my icloud account ID on my 4s using iOS6.1.3 when the old id email address is no longer valid.

  • Embedded Java And BPEL

    Hi All I need some very urgent help. I had been working on TIBCO and XI till now and in a project currently using Oracle Fusion. I need to query a data from an LDAP service and post a collection of employees into a JMS Queue as an XML. Now I tried us

  • Installation of a 2nd version of FCP X

    how do I download a second version of FCP X to MacBook? I bought and downloaded a version to a MacBook Pro 3 months ago, and need it on a small computer

  • Macbook Pro will not let me log on.

    I have been having problems with my Macbook Pro. It is only 6 months old and it will not let me log onto my account. I would type in my password and it would freeze and go back to the log in page several times. How can I fix this? Also, it has been r

  • Word 2008 crashes in Snow Leopard - HP printer to blame?

    I've been struggling with Word 2008 under Snow Leopard for almost two months, with lots of crashes. I've tried all kinds of things, including setting up a new user account, validating fonts, full reinstalls of SL and MS Office, cleaning caches with O