I wanted to move items from a custom list in SharePoint 2013 with content type "item" to another list after a specific period (retention expiration). But the transfer to another location involving drop off library supports document libraries only. Please suggest any alternatives to implement this. Thanks
Can i move items from a custom list to another list after a specific retention?
1.4k Views Asked by TheCoder At
2
There are 2 best solutions below
Related Questions in SHAREPOINT
- Upload a document to a SharePoint document library (can be via Rest Api/other) using C# & also retrieve the unique id of the document
- Sharepoint alers email deletion from alerts
- SharePoint/CSS3 Gradients/IE9
- Sharepoint 2007 / Jquery - Replace all text on body or render HTML
- share point excel service
- MS Access Run-time error 3999
- Maintain Sharepoint Server Url with subfolders in document list
- How can I integrate a SharePoint document folder in a separate ASP.NET web site?
- why I don't get list subfolders despite using RecursiveAll option
- Modal Extender Ajax Control Toolkit (ASP 2.0) will not pop-up on server side trigger
- Configure SharePoint 2010 UPS with PowerShell
- How can I get Internet explorer to display this image correctly
- Developing Syntax app SharePoint Online PrismJS
- SharePoint 2013 Custom list field iterator not saving values for MultiLine or person columns
- SharePoint Links with Ampersands
Related Questions in SHAREPOINT-2013
- Limit items on external list using BCS Filter
- share point excel service
- MS Access Run-time error 3999
- SharePoint 2013 Custom list field iterator not saving values for MultiLine or person columns
- SharePoint Links with Ampersands
- Sharepoint 2013 health and usage data
- <body onresize="jsUpdateSize()"> not firing
- CSOM Equivalent of allusers
- Access data from SharePoint-hosted app
- sql server saves only null values for some columns
- Upload properly encoded (base64?) image to SharePoint with AngularJS
- SharePoint 2013 - Programmatically access the file in directory from the path present in database table
- Communication betwen sharepoint apps on different pages
- The data source provider for data sources of type 'ADOMD.NET' is not registered
- Access Form : import picture from SharePoint
Related Questions in POLICY
- Can i move items from a custom list to another list after a specific retention?
- weblogic Ws-security policy vs oasis policy
- Your implementation of PreferenceActivity is vulnerable to fragment injection
- Granting Lync Polcies Via AD Group Member using PowerShell
- Amazon AWS S3 IAM Policy based on namespace or tag
- Reset quota is not working as expected in apigee
- Pundit Policy Scope for Has Many Through Relationship
- invalid according to policy policy condition failed starts-with $content-type ""
- What does S3 Policy Version mean?
- Facebook Log Out required for Unity apps?
- Importing SAP WSDL with VS17 - Custom tool warning: The following Policy Assertions were not imported/was not handled
- Restricting access to AWS S3 bucket based on referer
- Certificate enrollment via webserver
- Create Azure Resource Policy to enforce user?
- Can I pass JSON policy file as parameter value to s3bucket policy
Related Questions in RETENTION
- Can i move items from a custom list to another list after a specific retention?
- how to implement database retention in MongoDB
- How to assign a retention tag to a mail item in Outlook VBA?
- Parse retention analytics download or save?
- Kafka state stores forget old data?
- Azure Policy Storage Accounts retention policy not flagging the resource
- Lifecycle management policy not working on Azure Data Lake Gen 2
- Why is helm chart not working- loki retention log?
- Automate partition removal on QuestDB
- Bigquery query to find 2-week retention
- Facebook Data Retention Policy and Message Deletion
- Google bigquery (GBQ) churn / retention rate from previous month
- Weekly cohorts of subscribers retention
- Set lease for build with Azure DevOps API in C#
- Veeam Backup To Tape Scenario
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I would either recommend a workflow which is kicked off when the item is added to the list and as Max said have a delayed action, or some sort of wait until the retention date before processing the move. Things to be careful of is the retention date needs to be set in the future otherwise the move will process almost immediately, how you deal with the retention date changing.
Alternatively you could write a custom timer job which would go through all the items and check the retention date and if it is in the past move the file programmatically. The problem with this version is there is going to be a delay depending on how often you run the timer job.
Cheers
Truez