I'm looking for a way to search for all electronic documents modified after a certain date. Is there an Advanced Search criteria that can do this?
Thanks,
Kyle
I'm looking for a way to search for all electronic documents modified after a certain date. Is there an Advanced Search criteria that can do this?
Thanks,
Kyle
There is no search criteria for the edoc last modified time, we will look into adding it for a future version.
Are you asking about searching on the Laserfiche Last Modified property or the Last Modified property of the actual electronic document?
For searching using the Laserfiche property:
{LF:Modified>="8/23/2015"} & {LF:Ext="*"}
The above searches for electronic documents that were modified since 8/23/2015. Note that the "Modified" is a Laserfiche property, so it is referring to modified within the Repository. Also, When you create an object in the repository, it also lists that as modified, so if you want to track actual changes, you need to use version control.
{LF:Ext="*"} & {LFVER:modified>="8/23/2015"} & {LFVER:Version>1}
Is there a SDK script or workflow script that could do a search by the Electronic Document Last Modified Date?
The LF server currently doesn't support searching on the edoc last modified (it will in the next major release), so you would need to crawl the folder tree in an SDK script to search on it. If you are willing to compile code, I can whip up a quick script to do this (let me know which version of the SDK you use).