Remove a content automatically

Hi for All,
I'd like to store some specific types of documents in a folder in WebCenter Content. However, I need these documents being stored for 10 days from the date of check-in. After this period the documents should be excluded from the UCM. This exclusion should be automatic. In UCM there´s an option 'Schedule', but not sure if this approach would be interesting.
If anyone has an example or can help me with the best way to do this,
Regards,

Hi ,
Removing a content refers to the content being deleted completely from UCM server or those contents should be not shown up in search results ?
If the first option is what needs to be done then you can put in Record Management feature on top of UCM and then create Retention Category + Disposition which based on the rule (after 10 days of check in) can do a host of actions on the content item .
If second option is to be checked then use Expiration date during checkin of content items which would then will not show the items in search results after the date . It will still be in the system though . To remove them just create a Export archive and use "Delete after export " option to remove them completely from the system .
Hope this helps .
Thanks
Srinath

Similar Messages

  • Is Acrobat Pro right for us. We have an Employee Handbook that needs editing. Some is current pdf, some from an older version. Want to get all into one handbook, have the table of contents automatically adjust and link to specific pages from the ToC.

    Is Acrobat Pro right for us. We have an Employee Handbook that needs editing. Some is current pdf, some from an older version. Want to get all into one handbook, have the table of contents automatically adjust and link to specific pages from the ToC.

    You can download the trial version (http://helpx.adobe.com/acrobat/kb/acrobat-downloads.html) to convert the PDF back to WORD if you do not have the original. The conversion may not be perfect, but it is typically better than starting from scratch. You may be lucky and get a good result. You might check the settings (in the save screen) to try retain format versus retain text flow. The format version can be a pain to edit since it creates a bunch of text boxes. The flow version may require you to reformat in WORD, but you likely would want to do that anyway.

  • Error in sharepoint 2010 designer while saving:"Content in the embedded form may be changed by the the server to remove unsafe content.Do you want to reload your page to see the results of the save? "

    Hi, 
    I am doing development  in sharepoint 2010 and facing this very weird problem.
    If I create a site page with the sharepoint look and feel for that site and try to save the site page,i am getting this error:**"Content in the embedded form may be changed by the the server to remove unsafe content.Do you want to reload your page to see
    the results of the save? "** and when i say reload,the server removes some parts of my page, e.g onclick event of html,asp buttons.
    This error just comes for any sharepoint site page,e.g i took a copy of 'How To Read Library' page just edited the text part of taht page,and when i try to save this error again comes up.
    However,if i create a simple aspx page with only htmltags like head body,then thr is no problem ,everything works great. But sharepoint look and feel pages are giving troubles while saving.
    has anybody seen this earlier,what could be the reason for this?
    Thanks

    I think the excerpt and link below is the why, but the page talks about server code and not javascript.  I guessing that this is why blank pages work, but not wiki pages.  Can anyone verify this?
    The following are general rules for using server-side code on a site page.
    If the page is uncustomized, server-side code is supported on the page.
    If the page is customized, server-side code does not run, and the page does not render. This includes the code-behind for the page itself.
    http://msdn.microsoft.com/en-us/library/office/aa979592(v=office.14).aspx

  • If I add another profile, will that person's content automatically be saved to my Time Machine hard drive or do I need to take further action to ensure that this is saved?

    If I add another profile, will that person's content automatically be saved to my Time Machine hard drive or do I need to take further action to ensure that this content is saved? Thanks for any and all help with this.
    Dave N.
    Holliston, MA

    Time Machine creates a back up of the entire Hard Drive, with the exception of Boot Camp or exceptions you have created. So in other words after you create the profile run Time Machine, and a backup of the other user profile will be added to your Time Machine backups.

  • Remove the contents of the table container in workflow

    hi,
    i want remove the contents of the table container in a method in workflow.
      how can i doit. anyone pls send me the syntax.
    after removing the old contents then i want to insert new values to that table.
    Thanks
    Sankar

    hi,
    i want to refresh the container in workflow.
    anyone pls tell me.
    Thanksin advance.
    sankar.

  • How can I remove all content between two tags using Find/Replace regular expressions?

    This one is driving me bonkers...  I'm relatively new to regular expressions, but I'm trying to get Dreamweaver to remove all content between two tags in an XML document.  For example, let's say I have the following XML:
    <custom>
    <![CDATA[<p>Some text</p>
    <p>Some more text</p>]]>
    </custom>
    I'd like to do a Find/Replace that produces:
    <custom>
    </custom>
    In essence, I'd like to strip all of the content between two tags.  Ideally, I'd like to know how to strip the CDATA content as well, to return the following:
    <custom>
    <![CDATA[]]>
    </custom>
    I'd much appreciate any suggestions on accomplishing this.
    Many thanks!

    Thanks much for your response.  I found David's article to be a little thin with respect to examples using quantifiers in coordination with the wildcard metacharacters; however, I was able to cobble together a working expression through trial and error using the information he presented.  For posterity, here’s the solution:
    Find:
    <custom>[\d\D]*?</custom>
    Replace:
    <custom>
    <![CDATA[]]>
    </custom>
    I believe this literally translates to:
    [] = find anything in this range/character class
    \d = find any digit character (i.e. any number)
    \D = find any non-digit character (i.e. anything except numbers)
    *? = match zero or more times, but as few times as possible (i.e. match multiple characters per instance, but only match one instance at a time, or none at all)
    I’m still not sure how to effectively utilize the . wildcard.  For example, the following expression will not find content that ends with a number:
    <custom>.*?[\D]*?</ custom >
    I'm presuming this is because numbers aren't included in the \D metacharacter; however, shouldn't numbers be picked up by the .*? expression?

  • Remove Tag Contents In Dreamweaver?

    I have a XML file that has about 40 lines of code. Some of the tags have content inside and some are empty. I want to create a XML template out of this file for future use where I can easily insert the desired text into the empty fields.
    I need a command in Dreamweaver that I can use line by line to remove the content inside each set of tags, but leaving the tags themselves intact (so I can insert text into in the future).
    What command in Dreamweaver CS4 will easily clear these fields while preserving the tags themselves?

    rotoscopels wrote:
    Is the information your requesting not in the above post? You can clearly see the text in the tags I need removed is 5.0, 121 and 1. Is that not what your asking for?
    No, it's not. As I've said before, Dreamweaver cannot search and replace by line number.
    What it can do is search for patterns. If you want to remove the values from the  <version>, <duration>, and <titleNum> elements, you can do so with the following regular expression in the Find and Replace dialog box:
    Search: Source Code
    Find: (<(version|duration|titleNum)>)[^<]*(<\/\2>)
    Replace with: $1$3
    Make sure the "Use regular expression" check box is selected, and click Replace All.
    That will leave the tags, but remove the text from between them.
    If you want to remove the tags as well, just leave the "Replace with" field blank.
    However, and this is where it becomes difficult to provide the answer you need, the regular expression I have created won't remove the value from <movieReleaseYear>.
    Are you looking to remove all values or just some?
    Since it's XML, and you can predict the line numbers, you must be able to predict the names of the elements you want to clear. Or are the element names going to be different?

  • SharePoint 2007 - the best practice to detached/remove a content database from a web app without any Farm impact

    Best
    practice to remove content databases from SharePoint 2007 without any Farm
    impact <o:p></o:p>

    Hi  ,
    For removing a content database from a Web application, you can take steps as below:
    1.On the Manage Content Databases page, click the content database that you want to remove.
    2.On the Manage Content Database Settings page, in the Remove Content Database section, select the Remove content database check box.
    If any sites are currently using this database, a message box appears. Click OK to indicate that you want to proceed with the removal.
    3.Click OK.
    Reference:
    http://technet.microsoft.com/en-us/library/cc262440(v=office.12).aspx
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • I carelessly remove the contents of /var/sadm/pkg

    I carelessly remove the contents of /var/sadm/pkg. I do not have any backup of the folder. What can I do ? Thanks a lot.

    Backup anything you care about.
    Reinstall the server from scratch.
    Restore your backups..

  • Starting iTunes removes most content on AppleTV

    I had this problem periodically with Tiger, and seemed pretty lucky with Leopard, but since installing Snow Leopard it seems to be back with a vengeance. I was hoping to see the problem here, it may be here, but I can't find it.
    When I start iTunes, AppleTV is connected and starts to sync. I have about 4200 music and music video titles in my iTunes library and have them all copied on my AppleTV, because I don't want to wake up my laptop all the time. 99% of my music has been imported from my CDs in AIF format. I certainly don't have a problem playing anything on my AppleTV.
    When AppleTV finishes syncing, it removes 3187 music titles from my AppleTV giving me the error that the format type is not supported by AppleTV. When I look on AppleTV, most of the albums are still there, but with only one or two songs. The next time I start iTunes it will go ahead and start re-syncing the 3187 songs which takes about 24 hours. When it finishes, all will be well, as now when I am listening to some music. The last three cycles of starting iTunes went like this... so I am afraid to start iTunes again!
    Interestingly though, the most recent albums I imported retained all their songs when iTunes removed the content off of the AppleTV.
    I sent feedback to Apple about this... but I don't expect anything to come of that. Has anybody else experienced anything like this? I know most people stream their content, so I am not expecting much understanding here!
    Mark

    I appreciate this last comment quite a bit because it looks (to me) like you want to gather additional information to see if the problem can be identified, rather than just assuming it has to be user error.
    iTunes for the most part organizes my music library, with a little help from me.
    I have my iTunes library on a separate volume labeled "Music".
    Importing CDs is easy, because there is little changes that I have to do, with the possible exceptions of changing an artist name to remove with [other artist] or featuring... to keep the album as a whole under the artist name. I also don't like things falling under the Compilations folder, so I always change compilations to "No".
    When I import music videos after preparing them for AppleTV type in Handbreak, I drag them over to iTunes which puts them into the Movies folder. I then go in and change the properties with "Get Info" by adding the Artist Name, and for Album I use "Videos" to keep them in one place for the Artist. I also change the type to Music Video to put them in my Music folder under the Artist name. So in a sense, iTunes is managing my music and music videos by placing them where I want them.
    I checked the other folders within iTunes to see if they could have been relocated, as well as searching around my "Music" volume. I can't find them.
    What happened in the short period of time between my last AppleTV sync and rebuilding the iTunes library remains a mystery to me. I don't have any reason to believe that could have gone in and accidentally deleted the Videos directory under all the artists that have music videos (and only the videos that I imported) as the iTunes store obtained videos remain.
    Right now I can only assess that there was something different about those videos than the iTunes store videos, maybe its just the file format. Is it even possible that the iTunes software itself did something to those videos when processing them? You seemed to have ruled out this as a possibility, and if so, I would like to know why.. because I am trying to troubleshoot this problem, and willing to accept any real help. I tend to lean toward an iTunes problem which needs to be addressed if it is the culprit.
    When I first started creating my iTunes library by importing my CDs, I imported them in as WAV files. Later when I desired to have cover art for all my music, I changed to importing those with out cover art and everything thereafter as AIF. One day when I started transferring my iTunes library over to my new laptop, I noticed that my iTunes library organization was changed to something completely unusable (at least for AppleTV) All the music in WAV format, and only the WAV files were moved from its original location to "Unknown Artist"/"Unknown Album". We are talking about 1700 songs. How/when/why this happened is still a mystery to me, but the result was that I had to reimport all the affected albums into iTunes.
    I don't believe I have any 3rd party software installed that should be affecting my iTunes library. I very rarely have a need to go into my Music volume, so "I" have ruled out my deleting by mistake any of those videos. "I" also believe that I am capable of following the simple instructions of rebuilding my iTunes libary, so when those are the only potential problems offered up without any additional information, I do feel a little offended.
    I know this issue is a little more complex than most of the day-to-day post that are seen here... I guess I was only hoping that if someone else had a similar experience I might be able to benefit through an exhange of information of some sort. I also know that most people stream their music, so my pool of available helpers will be small. But this has really gone beyond the AppleTV problem, and is now an iTunes issue, so maybe I will post this subsequent problem there and hope for the best.

  • How to remove reserved content on adobe acrobat pro 8

    how can i remove reserved content on adobe acrobat pro 8

    If the camera burns in the date/time stamp, then there is not much that can be done.
    If you need to eliminate that, then the best would be to apply the Effect>Motion>Scale, to enlarge the footage, until the date/time stamp is effectively cropped off by the Frame Size. You might want to look into Effect>Motion>Position, to "move" the date/time stamp closer to an edge.
    The other method is tedious, and requires ideally Adobe AfterEffects. There, you could use the Clone Tool, to "paint out" the date/time stamp, if there is enough clean background to do so.
    A variation on that method would be to Export/Share as a Filmstrip and Import that into Photoshop (if one had Photoshop Extended, there are other formats, that would work too), and then Frame by Frame, use the Clone Tool to remove that image.
    Though not a way to remove it, you can also replace it with a Title, that occupies the area of the date/time stamp, and just cover it up.
    If the camera allows you to turn that "feature" OFF, you would want to do so for newer footage.
    Good luck, and sorry for the bad news.
    Hunt

  • Dreamweaver cs3 removing file content

    Hi,
    We changed over to CS3 at work and are working a new project,
    3 of us all with CS3 on XP working off a central server,
    when we use the check in check out it's randomly removing the
    content of the file, so the actual file is there but it's empty, on
    both the local file and the server version.
    File type doesn't seem to matter, it's happened with css, asp
    and js include files.
    has anyone else found this and / or knows a fix / workaround
    for it, please let me know berfoe i lose all my hair.
    Cheers
    Marvin.

    /HardDrive/Users/username/Library/Application
    Support/Adobe/Common/9/Sites/Site Prefs
    Alan
    Adobe Community Expert, dreamweaver
    http://www.adobe.com/communities/experts/

  • Remove Site Contents link

    Hi..
    How to remove Site Contents link only for read users.
    Ravindranath

    Hi Ravindranath,
    You will have to update the master page and update the permissionString to hide it for users who just have read permissions
     <SharePoint:MenuItemTemplate runat="server" id="MenuItem_ViewAllSiteContents"
             Text="<%$Resources:wss,quiklnch_allcontent_15%>"
             Description="<%$Resources:wss,siteactions_allcontentdescription%>"
             ImageUrl="/_layouts/15/images/allcontent32.png?rev=38"
             MenuGroupId="200"
             Sequence="240"
             UseShortId="true"
             ClientOnClickNavigateUrl="~siteLayouts/viewlsts.aspx"
             PermissionsString="ViewFormPages"
             PermissionMode="Any" />
    Regards, Partha Avepoint Please mark the response as "Answer" if it answers your response If this response takes you closer to your solution mark it as a "helpful post"

  • I am selling my ipad1..how do I remove my content

    I want to replace my iPad 1 with a 2...I am going to pass along myoriginal.  How do I prep the old device to remove my content and make it ready for a new user.

    Log out of your iTunes account (assuming that you're logged in on it) on it by tapping on the id on the right-hand side of Settings > Store
    To remove all your content Settings > General > Reset > Erase All Content And Settings

  • How do I share new purchased itunes content automatically between multiple user accounts on the same computer?

    I have 3 different user accounts set up on the same computer. Whenever one of us buys or downloads anything, how can I get that to be automatically available for each of the other users? The main itunes library is stored at users/shared/itunes, but this doesn't seem to help much. As far as I can gather, Home Sharing only works between computers, not between users on the same computer......

    camillafromchichester wrote:
    The main itunes library is stored at users/shared/itunes
    is that the iTunes folder or just the iTunes media (or music) folder ?
    what should work is if the entire iTunes folder were in the shared folder and iTunes on each user account would access the same library file
    launch iTunes on each user account (one at a time) while holding the option (⌥) key, click on choose library when prompted, and select the iTunes folder you copied to the shared folder.
    if user A adds content, this will be available to the others immediately when they access the library, however, only one iTunes at a time can use the library. if you're using fast user switching, user A must quit iTunes before user B can fire it up.

Maybe you are looking for

  • How to compare content of two text file using StreamTokenizer

    hi.... i have two text files...containg field like(name,number,scheme) and(number,date,value)... i want to create a third file containg field like (name,number,date,scheme,value) by using these two table. how to create

  • Shot in the Dark (AU)

    MAde a transfer from one comouter to the next (GB and all plug ins). All is fine except for ONE plug in that is not giving out any sound. Its Global volume is on, It Opens up fine in the Sound Generator It is receiving midi signal as per GB The slide

  • Can't import .m4r file into iTunes 10.0.6.40

    Hi. I have a new iPhone 4S with AT&T (first iPhone ever!) and I'd like to create a custom ringtone. I have an .m4r file that is 29 sec long. I'd like to use it as my ringtone. Should be easy enough, right? I've tried dragging and dropping my file int

  • Why are Folio pages initially blurry and take a few seconds to render?

    Hi. My Folio pages all take a moment to render when viewed on the ipad with adobe viewer, which means they are blurry for a few seconds then they become crisp when they are fully rendered. It really kills the whole feel of my work, making it feel che

  • Difference between these 2 Laptops: X201 / T410 : Links

    Hello I dont see any difference between these 2 :/. ( Power/Display...) http://cgi.ebay.fr/LENOVO-THINKPAD-T410-i7-620M-2-66Ghz-4GB-320GB-7-2K-/190456687118?pt=Laptops_Nov0... http://cgi.ebay.fr/LENOVO-THINKPAD-X201-i7-620M-2-66GHZ-4GB-RAM-500GB-7-2K