Skip to main content
ExLibris

Knowledge Assistant

BETA
 
  • Subscribe by RSS
  • Back
    Voyager

     

    Ex Libris Knowledge Center
    1. Search site
      Go back to previous article
      1. Sign in
        • Sign in
        • Forgot password
    1. Home
    2. Voyager
    3. Knowledge Articles
    4. PPR: Error in Circulation Transactions by Dewey Decimal Classification

    PPR: Error in Circulation Transactions by Dewey Decimal Classification

    1. Last updated
    2. Save as PDF
    3. Share
      1. Share
      2. Tweet
      3. Share
    1. Symptoms
    2. Defect Status
    3. Replication Steps
    4. Workaround
    • Product: Voyager
    • Product Version: 7.0.4

    Symptoms

    • Circulation Transactions by Dewey Decimal Classification report returns abnormally high number
    • Due to the way MFHD_ITEM table is included, for each item charged, query counts number of items attached to item's MFHD, instead of counting 1

    Defect Status

    Issue 16384-98 is currently in Development.

    Replication Steps

    Query as delivered in reports.mdb

    SELECT DEWEYCLASS_VW.CLASS AS Expr1, [start date] AS StartDate, [end date] AS EndDate, Count(CIRCCHARGES_VW.CHARGE_DATE_ONLY) AS CountOfCHARGE_DATE_ONLY
    FROM DEWEYCLASS_VW, MFHD_ITEM, CIRCCHARGES_VW
    WHERE ((([CIRCCHARGES_VW].[CHARGE_DATE_ONLY]) Between [start date] And [end date]))
    GROUP BY DEWEYCLASS_VW.CLASS, [start date], [end date];
    

    Workaround

    Use this query instead

    SELECT DEWEYCLASS_VW.CLASS, [start date] AS StartDate, [end date] AS EndDate,
    Count(CIRCCHARGES_VW.CHARGE_DATE_ONLY) AS CountOfCHARGE_DATE_ONLY
    FROM CIRCCHARGES_VW INNER JOIN DEWEYCLASS_VW ON CIRCCHARGES_VW.MFHD_ID = DEWEYCLASS_VW.MFHD_ID
    WHERE (((CIRCCHARGES_VW.CHARGE_DATE_ONLY) Between [start date] And [end date]))
    GROUP BY DEWEYCLASS_VW.CLASS, [start date], [end date];
    

    • Article last edited: 08-Oct-2013
    View article in the Exlibris Knowledge Center
    1. Back to top
      • PPR: BIB_ID data type inconsistent
      • PPR: EVENT.EVENT_XML gives error when called
    • Was this article helpful?

    Recommended articles

    1. Article type
      Topic
      Language
      English
      Product
      Voyager
    2. Tags
      1. voy-unresolved
    1. © Copyright 2025 Ex Libris Knowledge Center
    2. Powered by CXone Expert ®
    • Term of Use
    • Privacy Policy
    • Contact Us
    2025 Ex Libris. All rights reserved