Back to Home

Daily Production Report

Table of Contents

Overview

Daily Production Report allows Quality Managers to monitor daily production at the auditor, plan, and field level compared to the counts in Daily Production Level. Drop downs can specify audits by Inspection Type, QR Team, Team Member, Month, and Platforms.

Audit must be closed (DateClosed = 1).

DailyProduction.png

Auditor and Errors

The quality manager can click on an individual auditor to see report data only for that auditor.

DailyProduction_Auditor.png

The data in "Errors" tab only shows the count for Business Types (ie. New, Renewal, Cancellation) data. Can be specified with drop downs.

DailyProduction_Errors.png

Calculations

Tables

Stored Procedure

Additional Information

Samples

Plan Count Field is controlled by a Report Plan Count dropdownlist. See Image below

DailyProduction_Errors.png

SQL Stored Procedures

the IIF statement will display calculate by Case Details Count if ReportPlanNo = 2, otherwise calculate as Plan Count

iif(ReportPlanCountNo = 2, SUM(b.Plan1Count), SUM(a.PlanCount)) as PlanCount