Hi all,
I know I can manually see the total document count in properties of the root folder as an admin:
ie:
Child folders: 14,212
Child documents: 51,740
I also know I can retrieve a total content count using the search syntax:
{LF:LOOKIN="ReposRoot\"}
That returns: 65,953
Which evidently includes all the folders and child documents (and the root folder itself) (14,212+51,740=65,952)
Furthermore I know I can return a total count of OCRable documents (ie those with images/pages >0) with:
{LF:pagecount > 0} & {LF:LOOKIN="ReposRoot\"}
That returns: 31,140
Demonstrating that only about half the repository is imaged entries amenable to OCRing.
What I want to be able to do is run workflow that produces some simple metrics:
Total Content Count (excluding folders; ie Child Documents in the context menu properties sense)
??
Total OCRable Documents:
{LF:pagecount > 0} & {LF:LOOKIN="ReposRoot\"}
Total OCR=ALL, OCR=Some and OCR=None counts:
{LF:AssociatedPages="Y"} & {LF:OCR=all/some/none})&{LF:pagecount > 0} & {LF:LOOKIN="ReposRoot\"}
After putting all those in tokens I can do the math and send an email.
So...
How to automate the calculation of the "Child Documents" figure with workflow?
Best,
Will