evergreen-reports:item_reports
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
evergreen-reports:item_reports [2010/06/08 13:45] – terlaga | evergreen-reports:item_reports [2011/03/08 21:59] (current) – removed bshum | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== ITEM REPORTS ====== | ||
- | |||
- | ===== Item List Reports ===== | ||
- | |||
- | ==== Sample Item Barcode from each Circulation Modifier ==== | ||
- | |||
- | |||
- | **Submission Notes:** | ||
- | This report was submitted on 5/24/10 by Amy Terlaga of Bibliomation, | ||
- | |||
- | **Version**: | ||
- | **Data Sources Used**: | ||
- | **Running Tips/ | ||
- | |||
- | You do not need to change anything in this report to run it. | ||
- | -------------------------------------------------------------- | ||
- | |||
- | SELECT aou.shortname, | ||
- | FROM asset.copy ac | ||
- | INNER JOIN actor.org_unit aou ON ac.circ_lib = aou.id | ||
- | WHERE ac.deleted IS FALSE | ||
- | GROUP BY aou.shortname, | ||
- | ORDER BY aou.shortname, | ||
- | |||
- | |||
- | |||
- | ===== Item Statistical Reports ===== | ||
- | |||
- | ==== Monthly Items Added by Shelving Location - COUNT ==== | ||
- | |||
- | **Submission Notes:** | ||
- | This report was submitted on 6/8/10 by Amy Terlaga of Bibliomation, | ||
- | |||
- | **Version**: | ||
- | **Data Sources Used**: | ||
- | **Running Tips/ | ||
- | |||
- | You must change ORG to the correct shortname for your organizational unit to run this report. | ||
- | -------------------------------------------------------------- | ||
- | | ||
- | FROM actor.org_unit aou | ||
- | JOIN asset.call_number acn ON acn.owning_lib = aou.id | ||
- | JOIN asset.copy ac ON ac.call_number = acn.id | ||
- | JOIN asset.copy_location acl ON ac.location = acl.id | ||
- | WHERE aou.shortname = **' | ||
- | GROUP BY aou.name, acl.name | ||
- | |||
- | |||
- | UNION | ||
- | |||
- | | ||
- | FROM actor.org_unit aou | ||
- | JOIN asset.call_number acn ON acn.owning_lib = aou.id | ||
- | JOIN asset.copy ac ON ac.call_number = acn.id | ||
- | JOIN asset.copy_location acl ON ac.location = acl.id | ||
- | WHERE aou.shortname = **' | ||
- | |||
- | ORDER BY 1, 2, 3; | ||
- | |||
- | --------------------------------------- | ||
- | |||
- | |||
- | Back to [[evergreen-reports: | ||
- | |||
evergreen-reports/item_reports.1276019125.txt.gz · Last modified: 2022/02/10 13:33 (external edit)