Help > Sample reports > Capture Statistics

Sample report: Capture Statistics

Question

How many fields were verified in a Verification process step, and how long did that process take?

Data source

V_StepsDocReport

Query

SELECT     Client, Process,

           SUM(CorrectValid) AS FieldCorrect,

           SUM(SuggestionCorrect) AS FieldSuggCorr,

           SUM(SuggestionFaulty) AS FieldSuggWrong,

           SUM(Substitutions) AS FieldSubstitutedCorrect,

           (SELECT COUNT(DISTINCT FieldID) AS Expr1

                    FROM       V_FieldPerDocument AS Sel1

                    WHERE (V_StepsDocReport.ProcessID=ProcessID) AND (FieldEvaluation < 4) AND (DocCreateDateOnly

                    BETWEEN @StartDate AND @EndDate)) AS FieldCount, COUNT(DISTINCT DocID) AS DocCount,

SUM(CASE WHEN BatchID = DocID THEN CurrentSheetCount ELSE 0 END) AS SheetCount,

SUM(CASE WHEN BatchID = DocID THEN CurrentPageCount ELSE 0 END) AS PageCount,

(SELECT SUM(CASE WHEN BatchID = DocID THEN VerificationTimeSum / 3600 ELSE 0 END) AS Expr1 FROM V_VerificationStepsDocReport AS Sel1

         WHERE (V_StepsDocReport.ProcessID = ProcessID)) AS Time,

         FROM V_StepsDocReport

WHERE (Client IN (@strClient)) AND (Process IN (@strProcess)) AND ((CASE WHEN ParentID = 0 THEN (CASE WHEN ReclassifiedDocName IS NULL

         THEN '<not assigned>' WHEN ReclassifiedDocName = '<only sub-document types>' THEN ' ' ELSE ReclassifiedDocName END) END) IN (@RootDocumentType) OR

         (CASE WHEN ParentID <> 0 THEN (CASE WHEN ReclassifiedDocName IS NULL

         THEN '<not assigned>' WHEN ReclassifiedDocName = '<only sub-document types>' THEN ' ' ELSE ReclassifiedDocName END) END) IN (@SubDocumentType))

         AND (DocCreateDateOnly BETWEEN @StartDate AND @EndDate)

GROUP BY Client, ProcessID, Process

Selections / sub-queries

Good to know

Field label in the report

Field in the Select statement

Processed Time (Hours)

Time

Avg. Time per Document (Hours)

Time/DocCount

Root & Sub-documents

DocCount

Fields Captured (Total)

FieldCount

Fields Correct (Total)

FieldCorr

Fields Correct (%)

FieldCorr/FieldCount

Fields Suggested Correctly (Total)

FieldSuggCorr

Fields Suggested Correctly (%)

FieldSuggCorr/FieldCount

Fields Suggested Incorrectly (Total)

FieldSuggWrong

Fields Suggested Incorrectly (%)

FieldSuggWrong/FieldCount

Fields Substituted (Total)

FieldSubstituted

Fields Substituted (%)

FieldSubstituted/FieldCount

Sample report: Detailed Capture Statistics

Sample report: Processing Report

Sample report: Production Summary Report

Sample report: Sheet Page Image Per Process Step

Creating custom reports