Began section for 'Send itemnumbers to batch modification'
[kohadocs.git] / source / reports.rst
1 .. include:: images.rst
2
3 Reports
4 =======
5
6 Reports in Koha are a way to gather data. Reports are used to generate
7 statistics, member lists, shelving lists, or any list of data in your
8 database.
9
10 -  *Get there:* More > Reports
11
12 .. _custom-reports-label:
13
14 Custom Reports
15 -----------------------------------
16
17 Koha's data is stored in a MySQL database which means that librarians
18 can generate nearly any report they would like by either using the
19 :ref:`Guided Reports Wizard <guided-report-wizard-label>` or writing their own
20 :ref:`SQL query <report-from-sql-label>`.
21
22 .. _add-custom-report-label:
23
24 Add Custom Report
25 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
26
27 .. _guided-report-wizard-label:
28
29 Guided Report Wizard
30 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
31
32 The guided report wizard will walk you through a six step process to
33 generate a report.
34
35 Step 1: Choose the module you want to report on. This will determine
36 what tables and fields are available for you to query.
37
38 'Report is public' should be left to the default of 'No' in most cases 
39 especially if the report contains patron or other sensitive information.
40 A public report can be accessed using the :ref:`JSON reports services 
41 <json-reports-services-label>` by anyone and without authentication.
42
43 |image881|
44
45     **Note**
46
47     If your system administrator has set up memcache on your server you
48     might see one more option for the Cache expiry. This is related to
49     your public reports. If you make the report public then it's
50     constantly running and will cause a large load on your system.
51     Setting this value prevents that.
52
53     |image1292|
54
55 Step 2: Choose a report type. For now, Tabular is the only option
56 available.
57
58 |image882|
59
60 Step 3: Choose the fields you want in your report. You can select
61 multiple fields and add them all at once by using CTRL+Click on each
62 item you want to add before clicking the Add button.
63
64 |image883|
65
66 Step 4: Choose any limits you might want to apply to your report (such
67 as item types or branches). If you don't want to apply any limits,
68 simply click Next instead of making an option.
69
70 |image884|
71
72 Step 5: Perform math functions. If you don't want to do any
73 calculations, simply click Next instead of making an option.
74
75 |image885|
76
77 Step 6: Choose data order. If you want the data to print out in the
78 order it's found in the database, simply click Finish.
79
80 |image886|
81
82 When you are finished you will be presented with the SQL generated by
83 the report wizard. From here you can choose to save the report by
84 clicking 'Save' or copy the SQL and make edits to it by hand.
85
86 |image887|
87
88 If you choose to save the report you will be asked to name your report,
89 sort it in to groups and subgroups and enter any notes regarding it.
90
91 |image888|
92
93 Once your report is saved it will appear on the 'Use Saved' page with
94 all other saved reports.
95
96 |image889|
97
98 From here you can make edits, run the report, or schedule a time to have
99 the report run. To find the report you created you can sort by any of
100 the columns by clicking the on the column header (creation date is the
101 best bet for finding the report you just added). You can also filter
102 your results using the filter menu on the left or use the tabs to find
103 reports based on your custom groups.
104
105 .. _report-from-sql-label:
106
107 Report from SQL
108 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
109
110 In addition to the report wizard, you have the option to write your own
111 queries using SQL. To find reports written by other Koha users, visit
112 the Koha Wiki: http://wiki.koha-community.org/wiki/SQL_Reports_Library.
113 You can also find your database structure in
114 /installer/data/mysql/kohastructure.sql or online at:
115 `http://schema.koha-community.org <http://schema.koha-community.org/>`__.
116
117 To add your query, click the link to 'Create from SQL' on the main
118 reports module or the 'New report' button at the top of the 'Saved
119 reports' page.
120
121 |image890|
122
123 Fill in the form presented
124
125 |image891|
126
127 -  The 'Name' is what will appear on the Saved Reports page to help you
128    identify the report later. It will also be searchable using the
129    filters found the left of the Saved Reports page.
130
131 -  You can use the 'Report group' to organize your reports so that you
132    can easily filter reports by groups. Report groups are set in the
133    `REPORT\_GROUP <#reportgroup>`__ authorized value category or can be
134    added on the fly when creating the report by choosing the 'or create'
135    radio button.
136
137    |image1293|
138
139    Report groups set up in the authorised value category
140    need to have unique authorised values and descriptions.
141
142    -  **Note**
143
144           If you're adding a report group on the fly, remember that you
145           code should be fewer than 10 characters and should not include
146           special characters or spaces.
147
148 -  You can use 'Report subgroup' to further organize your reports so
149    that you can easily filter reports by groups and subgroups. Report
150    subgroups are set in the `REPORT\_SUBGROUP <#reportsubgroup>`__
151    authorized value category or can be added on the fly when creating
152    the report by choosing the 'or create' radio button.  Report Subgroups
153    are set up with unique values in Authorised Value, and Description. 
154    The Description (OPAC) field needs to contain the authorised value for 
155    the Report Group that the Subgroup falls under.
156
157    |image892|
158
159    -  **Note**
160
161           If you're adding a report subgroup on the fly, remember that
162           you code should be fewer than 10 characters and should not
163           include special characters or spaces.
164
165 -  'Report is public' should be left to the default of 'No' in most cases 
166     especially if the report contains patron or other sensitive information.
167     A public report can be accessed using the :ref:`JSON reports services 
168     <json-reports-services-label>` by anyone and without authentication.
169
170 -  'Notes' will also appear on the Saved Reports page, this can be used
171    to provide more details about the report or tips on how to enter
172    values when it runs
173
174 -  The type should always be 'Tabular' at this time since the other
175    formats have not been implemented
176
177 -  In the 'SQL' box you will type or paste the SQL for the report
178
179 -  If you feel that your report might be too resource intensive you
180    might want to consider using runtime parameters to your query.
181    Runtime parameters basically make a filter appear before the report
182    is run to save your system resources.
183
184    There is a specific syntax that Koha will understand as 'ask for
185    values when running the report'. The syntax is <<Question to
186    ask\|authorized\_value>>.
187
188    -  The << and >> are just delimiters. You must put << at the
189       beginning and >> at the end of your parameter
190
191    -  The 'Question to ask' will be displayed on the left of the string
192       to enter.
193
194    -  The authorized\_value can be omitted if not applicable. If it
195       contains an authorized value category, or branches or itemtype or
196       categorycode or biblio\_framework, a list with the Koha authorized
197       values will be displayed instead of a free field Note that you can
198       have more than one parameter in a given SQL Note that entering
199       nothing at run time won't probably work as you expect. It will be
200       considered as "value empty" not as "ignore this parameter". For
201       example entering nothing for : "title=<<Enter title>>" will
202       display results with title='' (no title). If you want to have to
203       have something not mandatory, use "title like <<Enter title>>" and
204       enter a % at run time instead of nothing
205
206    Examples:
207
208    -  SELECT surname,firstname FROM borrowers WHERE branchcode=<<Enter
209       patrons library\|branches>> AND surname like <<Enter filter for
210       patron surname (% if none)>>
211
212    -  SELECT \* FROM items WHERE homebranch = <<Pick your
213       branch\|branches>> and barcode like <<Partial barcode value here>>
214
215    -  SELECT title , author FROM biblio WHERE frameworkcode=<<Enter the
216       frameworkcode\|biblio\_framework>>
217
218        **Note**
219
220        To generate a date picker calendar to the right of the field when
221        running a report you can use the 'date' keyword like this:
222        <<Enter Date\|date>>
223
224        |image893|
225
226        **Note**
227
228        You have to put "%" in a text box to 'leave it blank'. Otherwise,
229        it literally looks for "" (empty string) as the value for the
230        field.
231
232        **Important**
233
234        In addition to using any authorized value code to generate a
235        dropdown, you can use the following values as well: Framework
236        codes (biblio\_framework), Branches (branches), Item Types
237        (itemtypes) and Patron Categories (categorycode). For example a
238        branch pull down would be generated like this
239        <<Branch\|branches>>
240
241        |image894|
242
243     **Note**
244
245     There is a limit of 10,000 records put on SQL statements entered in
246     Koha. To get around this you want to add 'LIMIT 100000' to the end
247     of your SQL statement (or any other number above 10,000).
248
249     **Note**
250
251     If your system administrator has set up memcache on your server you
252     might see one more option for the Cache expiry. This is related to
253     your public reports. If you make the report public then it's
254     constantly running and will cause a large load on your system.
255     Setting this value prevents that.
256
257     |image1294|
258
259 Once everything is entered click the 'Save Report' button and you'll be
260 presented with options to run it. Once a report is saved you do not have
261 to recreate it you can simply find it on the Saved Reports page and
262 :ref:`run <running-custom-reports-label>` or :ref:`edit <edit-custom-reports-label>` it.
263
264 .. _duplicate-report-label:
265
266 Duplicate Report
267 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
268
269 Reports can also be added by duplicating an existing report. Visit the
270 'Saved reports' page to see all of the reports listed on your system
271 already.
272
273 |image895|
274
275 To the right of every report there is an 'Actions' pull down. Clicking
276 that and choose 'Duplicate' to use an existing report as the basis for
277 your new report. That will populate the new report form with the
278 existing SQL for easy editing and resaving.
279
280 .. _edit-custom-reports-label:
281
282 Edit Custom Reports
283 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
284
285 Every report can be edited from the reports lists. To see the list of
286 reports already stored in Koha, click 'Use Saved.'
287
288 |image896|
289
290 To find the report you'd like to edit you can sort by any of the columns
291 by clicking the on the column header. You can also filter your results
292 using the filter menu on the left or use the tabs to find reports based
293 on your custom groups.
294
295 From this list you can edit any custom report by clicking 'Actions' to
296 the right of the report and choosing 'Edit' from the menu that appears.
297
298 |image897|
299
300 The form to edit the report will appear.
301
302 |image898|
303
304 .. _running-custom-reports-label:
305
306 Running Custom Reports
307 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
308
309 Once custom reports are saved to Koha, you can run them by going to the
310 Saved Reports page and clicking the 'Actions' button to the right of the
311 report and choosing 'Run'.
312
313 |image899|
314
315 When you report runs you will either be asked for some values
316
317 |image900|
318
319 or you will see the results right away
320
321 |image901|
322
323 From the results you can choose to rerun the report by clicking 'Run
324 report' at the top, edit the report by clicking the 'Edit' button or
325 starting over and creating a new report by using the 'New' button. You
326 can also download your results by choosing a file type at the bottom of
327 the results next to the 'Download the report' label and clicking
328 'Download.'
329
330     **Note**
331
332     A Comma Separated Text file is a CSV file and it can be opened by
333     any spreadsheet application.
334
335 .. _send-itemnumbers-to-batch-item-modification-label:
336
337 Send itemnumbers to batch item modification
338 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
339
340 |image1343|
341
342 .. _statistics-reports-label:
343
344 Statistics Reports
345 --------------------------------------
346
347 Statistic reports will show you counts and sums. These reports are all
348 about numbers and statistics, for reports that return more detailed
349 data, use the :ref:`Guided Report Wizard`. These
350 reports are limited in what data they can look at, so it's often
351 recommended to use :ref:`custom reports <custom-reports-label>` for official end
352 of the year statistics.
353
354 .. _acquisitions-statistics-label:
355
356 Acquisitions Statistics
357 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
358
359     **Note**
360
361     These reports are limited in what data they can look at, so it's
362     often recommended to use :ref:`custom reports <custom-reports-label>` for
363     official end of the year statistics.
364
365 Using the form provided, choose which value you would like to appear in
366 the Column and which will appear in the Row.
367
368 |image902|
369
370 If you choose to output to the browser your results will print to the
371 screen.
372
373 |image903|
374
375 You can also choose to export to a file that you can manipulate to your
376 needs.
377
378 When generating your report, note that you get to choose between
379 counting or summing the values.
380
381 |image904|
382
383 Choosing amount will change your results to appear as the sum of the
384 amounts spent.
385
386 |image905|
387
388 .. _patron-statistics-label:
389
390 Patron Statistics
391 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
392
393     **Note**
394
395     These reports are limited in what data they can look at, so it's
396     often recommended to use :ref:`custom reports <custom-reports-label>` for
397     official end of the year statistics.
398
399 Using the form provided, choose which value you would like to appear in
400 the Column and which will appear in the Row.
401
402 |image906|
403
404 If you choose to output to the browser your results will print to the
405 screen.
406
407 |image907|
408
409 Based on your selections, you may see some query information above your
410 results table. You can also choose to export to a file that you can
411 manipulate to your needs.
412
413 .. _catalog-statistics-label:
414
415 Catalog Statistics
416 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
417
418     **Note**
419
420     These reports are limited in what data they can look at, so it's
421     often recommended to use :ref:`custom reports <custom-reports-label>` for
422     official end of the year statistics.
423
424 Using the form provided, choose which value you would like to appear in
425 the Column and which will appear in the Row.
426
427 |image908|
428
429 If you choose to output to the browser your results will print to the
430 screen.
431
432 |image909|
433
434 You can also choose to export to a file that you can manipulate to your
435 needs.
436
437 .. _circulation-statistics-label:
438
439 Circulation Statistics
440 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
441
442     **Note**
443
444     These reports are limited in what data they can look at, so it's
445     often recommended to use :ref:`custom reports <custom-reports-label>` for
446     official end of the year statistics.
447
448 Using the form provided, choose which value you would like to appear in
449 the Column and which will appear in the Row.
450
451 |image910|
452
453 If you choose to output to the browser your results will print to the
454 screen.
455
456 |image911|
457
458 You can also choose to export to a file that you can manipulate to your
459 needs.
460
461     **Note**
462
463     To get a complete picture of your monthly or daily circulation, you
464     can run the report twice, once for 'Type' of 'Checkout' and again
465     for 'Renewal.'
466
467     This report uses 'Period,' or date, filtering that allows you to
468     limit to a month by simply selecting the first day of the first
469     month through the first day of the next month. For example, 10/1 to
470     11/1 to find statistics for the month of October.
471
472     -  To find daily statistics, set your date range.</br> Example: "I
473        want circulation data starting with date XXX up to, but not
474        including, date XXX."
475
476     -  For a whole month, an example range would be: 11/01/2009 to
477        12/01/2009
478
479     -  For a whole year, an example range would be: 01/01/2009 to
480        01/01/2010
481
482     -  For a single day, an example would be: 11/15/2009 to 11/16/2009
483        to find what circulated on the 15th
484
485 .. _tracking-in-house-use-label:
486
487 Tracking in house use
488 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
489
490 Using the Circulation statistics reporting wizard you can run reports on
491 in house usage of items simply by choosing 'Local Use' from the 'Type'
492 pull down:
493
494 |image912|
495
496 .. _serials-statistics-label:
497
498 Serials Statistics
499 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
500
501     **Note**
502
503     These reports are limited in what data they can look at, so it's
504     often recommended to use :ref:`custom reports <custom-reports-label>` for
505     official end of the year statistics.
506
507 Using the form provided, choose how you would like to list the serials
508 in your system.
509
510 |image913|
511
512 If you choose to output to the browser your results will print to the
513 screen.
514
515 |image914|
516
517 You can also choose to export to a file that you can manipulate to your
518 needs.
519
520 .. _holds-statistics-label:
521
522 Holds Statistics
523 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
524
525     **Note**
526
527     These reports are limited in what data they can look at, so it's
528     often recommended to use :ref:`custom reports <custom-reports-label>` for
529     official end of the year statistics.
530
531 Using the form provided you can see statistics for holds placed, filled,
532 cancelled and more at your library. From the form choose what value you
533 want to display in the column and what value to show in the row. You can
534 also choose from the filters on the far right of the form.
535
536 |image915|
537
538 If you choose to output to the browser your results will print to the
539 screen.
540
541 |image916|
542
543 You can also choose to export to a file that you can manipulate to your
544 needs.
545
546 .. _patrons-with-the-most-checkouts-label:
547
548 Patrons with the most checkouts
549 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
550
551 This report will simply list the patrons who have the most checkouts.
552
553 |image917|
554
555 If you choose to output to the browser your results will print to the
556 screen.
557
558 |image918|
559
560 You can also choose to export to a file that you can manipulate to your
561 needs.
562
563 .. _most-circulated-items-label:
564
565 Most Circulated Items
566 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
567
568 This report will simply list the items that have the been checked out
569 the most.
570
571 |image919|
572
573 If you choose to output to the browser your results will print to the
574 screen.
575
576 |image920|
577
578 You can also choose to export to a file that you can manipulate to your
579 needs.
580
581 .. _patrons-with-no-checkouts-label:
582
583 Patrons with no checkouts
584 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
585
586 This report will list for you the patrons in your system who haven't
587 checked any items out.
588
589 |image921|
590
591 If you choose to output to the browser your results will print to the
592 screen.
593
594 |image922|
595
596 You can also choose to export to a file that you can manipulate to your
597 needs.
598
599 .. _items-with-no-checkouts-label:
600
601 Items with no checkouts
602 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
603
604 This report will list items in your collection that have never been
605 checked out.
606
607 |image923|
608
609 If you choose to output to the browser your results will print to the
610 screen.
611
612 |image924|
613
614 You can also choose to export to a file that you can manipulate to your
615 needs.
616
617 .. _catalog-by-item-type-label:
618
619 Catalog by Item Type
620 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
621
622 This report will list the total number of items of each item type per
623 branch.
624
625 |image925|
626
627 If you choose to output to the browser your results will print to the
628 screen.
629
630 |image926|
631
632 You can also choose to export to a file that you can manipulate to your
633 needs.
634
635 .. _lost-items-label:
636
637 Lost Items
638 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
639
640 This report will allow you to generate a list of items that have been
641 marked as Lost within the system
642
643 |image927|
644
645 .. _average-loan-time-label:
646
647 Average Loan Time
648 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
649
650 This report will list the average time items are out on loan based on
651 the criteria you enter:
652
653 |image928|
654
655 If you choose to output to the browser your results will print to the
656 screen.
657
658 |image929|
659
660 You can also choose to export to a file that you can manipulate to your
661 needs.
662
663 .. _report-dictionary-label:
664
665 Report Dictionary
666 ----------------------------------
667
668 The report dictionary is a way to pre-define common filters you'd like
669 to apply to your reports. This is a good way to add in filters that the
670 report wizard doesn't include by default. To add a new definition, or
671 filter, click 'New Definition' on the Reports Dictionary page and follow
672 the 4 step process.
673
674 Step 1: Name the definition and provide a description if necessary
675
676 |image930|
677
678 Step 2: Choose the module that the will be queried.
679
680 |image931|
681
682 Step 3: Choose columns to query from the tables presented.
683
684 |image932|
685
686 Step 4: Choose the value(s) from the field(s). These will be
687 automatically populated with options available in your database.
688
689 |image933|
690
691 Confirm your selections to save the definition.
692
693 |image934|
694
695 Your definitions will all appear on the Reports Dictionary page
696
697 |image935|
698
699 Then when generating reports on the module you created the value for you
700 will see an option to limit by the definition at the bottom of the usual
701 filters.
702
703 |image936|