Aleph 500 Circulation In-House use Yoel Kortick yoel.kortick@exlibrisgroup.com
Introduction “In-House use” circulation is used to measure how often items are used but not necessarily circulated. The usage is based on how often the items are removed from the regular shelves Each time an item is found on a table, cart, or anywhere which is not the regular shelf it is recorded as having been used. Later, statistics may be gathered for how many times each item was “used”
Methodology For example items may be cleared from the tables by staff at the end of the day. Before returning the items to the sheves they are brought to the circulation desk to record that they have been used “in house”. There are two ways to do this: Return the items as if they were on loan Record the tem via the menu “circulation > in house use” The following slide describes this in detail.
Methodology Items are returned in circulation module even though they are not on loan. This will happen: an "82" z35 event is created as defined in the tab_events.lng table a “29” record for z309 circulation log is created Items are recorded by using the menu "circulation > in house use" and then entering the barcode. This will happen: an "80" z35 event is created as defined in the tab_events.lng table a “30” record for z309 circulation log is created
Methodology The statistics may be gathered by running the service “Circulation Logger Report (cir-21)” In the report the user will specify "In-house use" as the Action (for the z309 type '30's) and/or "Not On Loan Return" (for the z309 type '29's). A library could also of course do one of the of the following: Write personal SQL scripts or Run ARC reports which would read these.
Example using return option Let’s say that at the end of the day the following barcodes are left on the tables and carts We assume therefore that someone took them off the shelf and used them 1871336-10 66096-10 187337-10 Y1871338-10 65929-10 62511-40 77578-10 67351-10 67055-10 67055-20
Example using return option In this case we return the items even though they were not on loan
Example using return option Here are the Z35 events created for the returned items which were not on loan: usm50@ALEPH201> select Z35_EVENT_TYPE from Z35 where Z35_EVENT_DATE = '20110427'; 72 61 82 61 82 82 51 82 82 82 82 82 82 82 82 15 rows selected. usm50@ALEPH201>
Example using return option Here are the Z309 events created for the items: usm50@ALEPH201> select Z309_ACTION from Z309 where substr(Z309_DATE_X,1,8) = '20110427'; 51 6 29 51 6 29 29 1 51 29 29 29 29 29 29 29 29 17 rows selected. usm50@ALEPH201>
Example using in-house menu option Now we have ten more items left on the tables and carts at the end of the day We assume therefore that someone took them off the shelf and used them 52505-10 52503-10 52498-10 52459-10 52441-10 51302-30 51268-10 51253-10 50986-10 50985-10 50934-60 50835-10
Example using in-house menu option Now we return them using menu “circulation > in house use”
Example using in-house menu option Here are the Z35 events created for the returned items using menu “circulation > in house use”: usm50@ALEPH201> select Z35_EVENT_TYPE from Z35 2 where Z35_EVENT_DATE = '20110427‘ 3 and Z35_EVENT_TYPE = '80'; 80 80 80 80 80 80 80 80 80 80 80 80 12 rows selected. usm50@ALEPH201>
Example using in-house menu option Here are the Z309 events created for the returned items using menu “circulation > in house use”: usm50@ALEPH201> select Z309_ACTION from Z309 where substr(Z309_DATE_X,1,8) = '20110427' and Z309_ACTION = '30'; 30 30 30 30 30 30 30 30 30 30 30 30 12 rows selected. usm50@ALEPH201>
Gathering the statistics Now we can see the statistics of the “in-house use” by running the service “Circulation Logger Report (cir-21)”. We have chosen actions “Not on Loan Return” and “In House Use”
Gathering the statistics Here is our report (partial)
Gathering the statistics Here is a way to make the reports via SQL The following SQL will give a count of in-house "loans" by month: s+ xxx50 SQL> select substr (z35_event_date,1,6), count(*) from z35 where (z35_event_type = '80‘ or z35_event_type = '82') group by substr(z35_event_date,1,6);
Gathering the statistics The following SQL will give a report of “in hoiuse use” by sub library for a particular year/month: s+ xxx50 SQL> select z35_sub_library, count(*) from z35 where (z35_event_type = '80' or z35_event_type = '82') and z35_event_date like 'yyyymm%' group by z35_sub_library order by z35_sub_library;
Gathering the statistics For example: YLK50@ALEPH20> select substr (z35_event_date,1,6), count(*) 2 from z35 3 where (z35_event_type = '80‘ 4 or 5 z35_event_type = '82') 6 group by substr(z35_event_date,1,6); **** Hit return to continue **** SUBSTR(Z35_EVENT_D COUNT(*) ------------------ ---------- 200509 31465 200510 24256 200511 46903 200512 39897 200601 43540 200602 31542 200603 42583 200604 33946 200605 38939 200606 39711
Yoel Kortick