Bug 20565: Clearer documentation of date, branches, itemtypes, and categorycode param...
[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 choosing 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 choosing 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     **Note**
180
181     If your system administrator has set up memcache on your server you
182     might see one more option for the Cache expiry. This is related to
183     your public reports. If you make the report public then it's
184     constantly running and will cause a large load on your system.
185     Setting this value prevents that.
186
187     |image1294|
188
189 Once everything is entered click the 'Save report' button and you'll be
190 presented with options to run it. Once a report is saved you do not have
191 to recreate it you can simply find it on the Saved Reports page and
192 :ref:`run <running-custom-reports-label>` or :ref:`edit <edit-custom-reports-label>` it.
193
194 .. _report-writing-tips-label:
195
196 Report writing tips
197 '''''''''''''''''''''''''''''''''''''
198
199 **Runtime parameters**
200
201
202 If you feel that your report might be too resource intensive you
203 might want to consider using runtime parameters to your query.
204 Runtime parameters basically make a filter appear before the report
205 is run to save your system resources.
206
207 There is a specific syntax that Koha will understand as 'ask for
208 values when running the report'. The syntax is <<Question to
209 ask\|authorized\_value>>.
210
211 -  The << and >> are just delimiters. You must put << at the
212    beginning and >> at the end of your parameter
213
214 -  The 'Question to ask' will be displayed on the left of the string
215    to enter.
216
217 -  The authorized\_value can be omitted if not applicable. If it
218    contains an authorized value category, 'branches', 'itemtype', 
219    'categorycode', 'biblio\_framework', a list with the Koha authorized
220    values will be displayed instead of a free field.
221
222        **Note**
223
224        You can have more than one parameter in a given SQL query.
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        For example entering nothing for: "title=<<Enter title>>" will 
232        display results with title='' (no title).
233        If you want to have to have something not mandatory, use 
234        "title like <<Enter title>>" and enter a % at run time instead 
235        of nothing.
236
237        **Note**
238
239        To generate a date picker calendar to the right of the field when
240        running a report you can use the 'date' keyword like this:
241        <<Enter Date\|date>>
242
243        |image893|
244
245 List of parameters that can be used in runtime parameters
246
247 +-------------------------+---------------------------------------------------+------------------------------+
248 | Parameter               | What the user sees                                | What gets inserted in query  |
249 +-------------------------+---------------------------------------------------+------------------------------+
250 | date                    | date picker                                       | validly formatted date       |
251 | branches                | drop down of branch names                         | branch code                  |            
252 | itemtypes               | drop down of item type names                      | item type                    |
253 | categorycode            | drop down of patron category descriptions         | borrower category code       | 
254 | biblio\_framework       | drop down of MARC bibliographic frameworks        | framework code               |
255 | (auth-value-category)   | drop down of auth-value descriptions in category  | authorized value             |
256 | (nothing)               | text box                                          | entered text                 |
257 +-------------------------+---------------------------------------------------+------------------------------+
258
259 Examples:
260
261    -  SELECT surname, firstname FROM borrowers WHERE branchcode=<<Enter
262       patron's library\|branches>> AND surname like <<Enter filter for
263       patron surname (% if none)>>
264
265    -  SELECT \* FROM items WHERE homebranch = <<Pick your
266       branch\|branches>> and barcode like <<Partial barcode value here>>
267
268    -  SELECT title, author FROM biblio WHERE frameworkcode=<<Enter the
269       frameworkcode\|biblio\_framework>>
270
271 .. _duplicate-report-label:
272
273 Duplicate report
274 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
275
276 Reports can also be added by duplicating an existing report. Visit the
277 'Saved reports' page to see all of the reports listed on your system
278 already.
279
280 |image895|
281
282 To the right of every report there is an 'Actions' pull down. Clicking
283 that and choose 'Duplicate' to use an existing report as the basis for
284 your new report. That will populate the new report form with the
285 existing SQL for easy editing and resaving.
286
287 .. _edit-custom-reports-label:
288
289 Edit custom reports
290 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
291
292 Every report can be edited from the reports lists. To see the list of
293 reports already stored in Koha, click 'Use saved.'
294
295 |image896|
296
297 To find the report you'd like to edit you can sort by any of the columns
298 by clicking the on the column header. You can also filter your results
299 using the filter menu on the left or use the tabs to find reports based
300 on your custom groups.
301
302 From this list you can edit any custom report by clicking 'Actions' to
303 the right of the report and choosing 'Edit' from the menu that appears.
304
305 |image897|
306
307 The form to edit the report will appear.
308
309 |image898|
310
311 .. _running-custom-reports-label:
312
313 Running custom reports
314 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
315
316 Once custom reports are saved to Koha, you can run them by going to the
317 Saved Reports page and clicking the 'Actions' button to the right of the
318 report and choosing 'Run'.
319
320 |image899|
321
322 When you report runs you will either be asked for some values
323
324 |image900|
325
326 or you will see the results right away
327
328 |image901|
329
330 From the results you can choose to rerun the report by clicking 'Run
331 report' at the top, edit the report by clicking the 'Edit' button or
332 starting over and creating a new report by using the 'New' button. You
333 can also download your results by choosing a file type at the bottom of
334 the results next to the 'Download the report' label and clicking
335 'Download.'
336
337     **Note**
338
339     A comma separated text file is a CSV file and it can be opened by
340     any spreadsheet application.
341
342 .. _send-itemnumbers-to-batch-item-modification-label:
343
344 Send itemnumbers to batch item modification
345 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
346
347 After running a report that contains itemnumbers the list of numbers can be imported
348 directly into :ref:`Batch item modification` by clicking the batch modify button
349 in the report results.
350
351 |image1343|
352
353 .. _statistics-reports-label:
354
355 Statistics reports
356 --------------------------------------
357
358 Statistic reports will show you counts and sums. These reports are all
359 about numbers and statistics, for reports that return more detailed
360 data, use the :ref:`guided report wizard`. These
361 reports are limited in what data they can look at, so it's often
362 recommended to use :ref:`custom reports <custom-reports-label>` for official end
363 of the year statistics.
364
365 .. _acquisitions-statistics-label:
366
367 Acquisitions statistics
368 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
369
370     **Note**
371
372     These reports are limited in what data they can look at, so it's
373     often recommended to use :ref:`custom reports <custom-reports-label>` for
374     official end of the year statistics.
375
376 Using the form provided, choose which value you would like to appear in
377 the column and which will appear in the row.
378
379 |image902|
380
381 If you choose to output to the browser your results will print to the
382 screen.
383
384 |image903|
385
386 You can also choose to export to a file that you can manipulate to your
387 needs.
388
389 When generating your report, note that you get to choose between
390 counting or summing the values.
391
392 |image904|
393
394 Choosing amount will change your results to appear as the sum of the
395 amounts spent.
396
397 |image905|
398
399 .. _patron-statistics-label:
400
401 Patron statistics
402 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
403
404     **Note**
405
406     These reports are limited in what data they can look at, so it's
407     often recommended to use :ref:`custom reports <custom-reports-label>` for
408     official end of the year statistics.
409
410 Using the form provided, choose which value you would like to appear in
411 the column and which will appear in the row.
412
413 |image906|
414
415 If you choose to output to the browser your results will print to the
416 screen.
417
418 |image907|
419
420 Based on your selections, you may see some query information above your
421 results table. You can also choose to export to a file that you can
422 manipulate to your needs.
423
424 .. _catalog-statistics-label:
425
426 Catalog statistics
427 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
428
429     **Note**
430
431     These reports are limited in what data they can look at, so it's
432     often recommended to use :ref:`custom reports <custom-reports-label>` for
433     official end of the year statistics.
434
435 Using the form provided, choose which value you would like to appear in
436 the column and which will appear in the row.
437
438 |image908|
439
440 If you choose to output to the browser your results will print to the
441 screen.
442
443 |image909|
444
445 You can also choose to export to a file that you can manipulate to your
446 needs.
447
448 .. _circulation-statistics-label:
449
450 Circulation statistics
451 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
452
453     **Note**
454
455     These reports are limited in what data they can look at, so it's
456     often recommended to use :ref:`custom reports <custom-reports-label>` for
457     official end of the year statistics.
458
459 Using the form provided, choose which value you would like to appear in
460 the column and which will appear in the row.
461
462 |image910|
463
464 If you choose to output to the browser your results will print to the
465 screen.
466
467 |image911|
468
469 You can also choose to export to a file that you can manipulate to your
470 needs.
471
472     **Note**
473
474     To get a complete picture of your monthly or daily circulation, you
475     can run the report twice, once for 'Type' of 'Checkout' and again
476     for 'Renewal.'
477
478     This report uses 'Period,' or date, filtering that allows you to
479     limit to a month by simply selecting the first day of the first
480     month through the first day of the next month. For example, 10/1 to
481     11/1 to find statistics for the month of October.
482
483     -  To find daily statistics, set your date range.</br> Example: "I
484        want circulation data starting with date XXX up to, but not
485        including, date XXX."
486
487     -  For a whole month, an example range would be: 11/01/2009 to
488        12/01/2009
489
490     -  For a whole year, an example range would be: 01/01/2009 to
491        01/01/2010
492
493     -  For a single day, an example would be: 11/15/2009 to 11/16/2009
494        to find what circulated on the 15th
495
496 .. _tracking-in-house-use-label:
497
498 Tracking in house use
499 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
500
501 Using the Circulation statistics reporting wizard you can run reports on
502 in house usage of items simply by choosing 'Local use' from the 'Type'
503 pull down:
504
505 |image912|
506
507 .. _serials-statistics-label:
508
509 Serials statistics
510 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
511
512     **Note**
513
514     These reports are limited in what data they can look at, so it's
515     often recommended to use :ref:`custom reports <custom-reports-label>` for
516     official end of the year statistics.
517
518 Using the form provided, choose how you would like to list the serials
519 in your system.
520
521 |image913|
522
523 If you choose to output to the browser your results will print to the
524 screen.
525
526 |image914|
527
528 You can also choose to export to a file that you can manipulate to your
529 needs.
530
531 .. _holds-statistics-label:
532
533 Holds statistics
534 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
535
536     **Note**
537
538     These reports are limited in what data they can look at, so it's
539     often recommended to use :ref:`custom reports <custom-reports-label>` for
540     official end of the year statistics.
541
542 Using the form provided you can see statistics for holds placed, filled,
543 cancelled and more at your library. From the form choose what value you
544 want to display in the column and what value to show in the row. You can
545 also choose from the filters on the far right of the form.
546
547 |image915|
548
549 If you choose to output to the browser your results will print to the
550 screen.
551
552 |image916|
553
554 You can also choose to export to a file that you can manipulate to your
555 needs.
556
557 .. _patrons-with-the-most-checkouts-label:
558
559 Patrons with the most checkouts
560 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
561
562 This report will simply list the patrons who have the most checkouts.
563
564 |image917|
565
566 If you choose to output to the browser your results will print to the
567 screen.
568
569 |image918|
570
571 You can also choose to export to a file that you can manipulate to your
572 needs.
573
574 .. _most-circulated-items-label:
575
576 Most circulated items
577 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
578
579 This report will simply list the items that have the been checked out
580 the most.
581
582 |image919|
583
584 If you choose to output to the browser your results will print to the
585 screen.
586
587 |image920|
588
589 You can also choose to export to a file that you can manipulate to your
590 needs.
591
592 .. _patrons-with-no-checkouts-label:
593
594 Patrons with no checkouts
595 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
596
597 This report will list for you the patrons in your system who haven't
598 checked any items out.
599
600 |image921|
601
602 If you choose to output to the browser your results will print to the
603 screen.
604
605 |image922|
606
607 You can also choose to export to a file that you can manipulate to your
608 needs.
609
610 .. _items-with-no-checkouts-label:
611
612 Items with no checkouts
613 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
614
615 This report will list items in your collection that have never been
616 checked out.
617
618 |image923|
619
620 If you choose to output to the browser your results will print to the
621 screen.
622
623 |image924|
624
625 You can also choose to export to a file that you can manipulate to your
626 needs.
627
628 .. _catalog-by-item-type-label:
629
630 Catalog by item type
631 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
632
633 This report will list the total number of items of each item type per
634 branch.
635
636 |image925|
637
638 If you choose to output to the browser your results will print to the
639 screen.
640
641 |image926|
642
643 You can also choose to export to a file that you can manipulate to your
644 needs.
645
646 .. _lost-items-label:
647
648 Lost items
649 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
650
651 This report will allow you to generate a list of items that have been
652 marked as Lost within the system
653
654 |image927|
655
656 .. _average-loan-time-label:
657
658 Average loan time
659 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
660
661 This report will list the average time items are out on loan based on
662 the criteria you enter:
663
664 |image928|
665
666 If you choose to output to the browser your results will print to the
667 screen.
668
669 |image929|
670
671 You can also choose to export to a file that you can manipulate to your
672 needs.
673
674 .. _report-dictionary-label:
675
676 Report dictionary
677 ----------------------------------
678
679 The report dictionary is a way to pre-define common filters you'd like
680 to apply to your reports. This is a good way to add in filters that the
681 report wizard doesn't include by default. To add a new definition, or
682 filter, click 'New definition' on the reports dictionary page and follow
683 the 4 step process.
684
685 Step 1: Name the definition and provide a description if necessary
686
687 |image930|
688
689 Step 2: Choose the module that the will be queried.
690
691 |image931|
692
693 Step 3: Choose columns to query from the tables presented.
694
695 |image932|
696
697 Step 4: Choose the value(s) from the field(s). These will be
698 automatically populated with options available in your database.
699
700 |image933|
701
702 Confirm your selections to save the definition.
703
704 |image934|
705
706 Your definitions will all appear on the Reports Dictionary page
707
708 |image935|
709
710 Then when generating reports on the module you created the value for you
711 will see an option to limit by the definition at the bottom of the usual
712 filters.
713
714 |image936|