Relatórios

Os relatórios no Koha são um forma de obter dados do sistema. São normalmente usados para gerar estatísticas, listas de leitores, listas de registos ou qualquer outra listagem de dados na base de dados.

  • Acesso: Mais > Relatórios

Relatórios personalizados

Os dados são guardados numa base de dados MySQL o que significa que os bibliotecário podem gerar qualquer relatório que desejem usando o assistente de relatórios ou escrevendo o próprio SQL.

Adicionar um relatório

Assistente de relatórios guiados

O assistente de relatórios irá guiar-lo durante um processo de seis passos para gerar um relatório.

Passo 1: Escolha o módulo que quer reportar. Isto determina quais as tabelas e campos que estão disponíveis para pesquisa.

“Relatório público” deve ser Não” por omissão na maioria dos casos especialmente se o relatório conter dados dos leitores ou outras informações sensíveis. Um relatório público pode ser acedido usando os serviços JSON de relatórios por qualquer pessoa e sem autenticação.

First step of creating a guided report - choosing which module to work on and whether report is public or not

Nota

Se o memcache foi configurado no servidor pelo administrador do sistema poderá ver mais uma opção para expirar a Cache. Esta cache é relativa ao relatórios públicos. Se os relatórios forem públicos podem estar a ser executados constantemente e a causar uma carga excessiva no sistema. Ao definir esse valor previne essa situação.

Creating a guided report - define the cache expiry time

Passo 2: Escolha o tipo de relatório. Por enquanto apenas a opção Tabular está disponível.

Second step of creating a guided report - choosing type

Passo 3: Escolha os campos que deseja obter no relatório. Pode selecionar múltiplos campos e adicionar todos de uma vez usando CTRL+clique em cada item que deseja adicionar antes de carregar no botão de adição.

Third step of creating a guided report - select columns for display

Passo 4: Escolha os limites que deseja aplicar no relatório (como tipo de documentos ou bibliotecas). Se não deseja aplicar limites, basta carregar em Próximo em vez de marcar uma opção.

Fourth step of creating a guided report - select criteria to limit on

Passo 5: Executar operações matemáticas. Se não deseja fazer nenhum cálculo, carregue em Seguinte.

Fifth step of creating a guided report - pick column to total

Passo 6: Escolha a ordenação dos dados. Se desejar que os dados sejam impressos com a ordenação da base de dados, basta carregar em Terminar.

Sixth step of creating a guided report - Choose how you want the report ordered

When you are finished you will be presented with the SQL generated by the report wizard. From here you can choose to save the report by clicking “Finish” or copy the SQL and make edits to it by hand.

Confirm custom report

Se escolher guardar o relatório será perguntado o nome do relatório, a organização em grupos e subgrupos e poderá inserir qualquer nota sobre o mesmo.

Save custom report

Assim que o relatório estiver guardado aparecerá na página “Relatórios guardados” com todos os outros relatórios guardados.

List of saved reports, "All" tab is selected

Nota

  • You can customize the columns of this table in the “Table settings” section of the Administration module (table id: table_reports).

A partir daqui pode editar, correr relatórios ou agendar a execução de um relatório. Para encontrar o relatório que criou pode ordenar qualquer coluna clicando no cabeçalho da coluna (data de criação é a melhor hipótese para encontrar o relatório que foi adicionado). Pode também filtrar os resultados usando o menu de filtros no lado esquerdo ou usando os separadores de acordo com o seu grupo.

Relatório a partir de SQL

Em adição ao assistente de relatórios, pode também escrever as suas próprias pesquisas usando SQL. Para encontrar relatórios escritos por outros utilizadores do Koha, pode visitar a seguinte página do Koha: http://wiki.koha-community.org/wiki/SQL_Reports_Library. Pode também encontrar a estrutura da base de dados no ficheiro /installer/data/mysql/kohastructure.sql ou na seguinte página: http://schema.koha-community.org.

To add your query, click the link to “Create from SQL” on the main reports module

Reports main page

or the “New report” button at the top of the “Saved reports” page.

New report button is pressed and the options are New guided report and New SQL report

Preencha o formulário apresentado

New report from SQL form

  • Report name: the name is what will appear on the “Saved reports” page to help you identify the report later. It will also be searchable using the filters found on the left of the “Saved reports” page.

  • Report group: you can use the “Report group” to organize your reports in tabs on the “Saved reports” page. You can choose from the list of existing groups, or create one on the fly by choosing the “or create” radio button.

    New report from SQL form, the group drop-down menu is open

    Report groups are set in the REPORT_GROUP authorized value category.

    Aviso

    If you’re adding a report group on the fly, the code should not include special characters or spaces.

  • Report subgroup: if you chose a report group, this field will appear to further organize your reports. Choose a subgroup from the list, or create one on the fly by choosing the “or create” radio button.

    Report subgroups are set in the REPORT_SUBGROUP authorized value category.

    Nota

    Report subgroups need to have unique values in “Authorized value” and “Description”. The “Description (OPAC)” field needs to contain the authorized value for the report group that the subgroup falls under.

    Aviso

    If you’re adding a report subgroup on the fly, the code should not include special characters or spaces.

  • Report is public: this should be left to the default of “No” in most cases, especially if the report contains patron or other sensitive information. A public report can be accessed using the JSON reports services by anyone and without authentication.

  • Cache expiry: this field will only appear if your system administrator has set up memcache on your server. This is related to public reports. If you make the report public, it’s constantly running and will cause a large load on your system. Setting this value prevents that.

  • Notes: notes will appear on the “Saved reports” page, and can be used to provide more details about the report or tips on how to enter values when it runs.

  • SQL: type or paste the SQL for the report (see report writing tips below).

Once everything is entered click the “Save report” button and you’ll be presented with options to run it. From here, you can also edit it, duplicate it, or schedule it to be run later.

Once a report is saved, you do not have to recreate it, it will appear on the “Saved reports” page with all other saved reports.

List of saved reports, "All" tab is selected

Nota

You can customize the columns of this table in the “Table settings” section of the Administration module (table id: table_reports).

From the “Saved reports” page, you can make edits, run the report, or schedule a time to run the report later. To find the report you created, you can sort by any of the columns by clicking on the column header (creation date is the best to find the report you just added). You can also filter your results using the filter menu on the left or use the tabs to find reports based on your custom groups.

SQL Report writing tips

Autocomplete

When you start typing in the SQL field, autocomplete options will be displayed.

SQL field when creating a report from SQL, in the box, SEL is typed and a suggestion for SELECT is displayed

Use the arrows on your keyboard to choose the correct option and press “Enter” or “Tab” to insert it into your report, or simply click on the option to insert it.

Autocomplete options include:

  • SQL keywords such as SELECT, FROM, WHERE, etc.

  • table names

  • column names

    Nota

    To have suggestions for column names, you must type the table name first, followed by a period, then start typing the column name.

    For example, to have the suggestion for cardnumber, you must type borrowers.ca.

    SQL field when creating a report from SQL, in the box, SELECT borrowers.ca is typed and suggestions for borrowers.cardnumber and borrowers.categorycode are displayed

Runtime parameters

Se achar que o relatório consome demasiados recursos talvez seja melhor considerar usar parâmetros de execução para a sua consulta. Parâmetros de tempo de execução, basicamente, fazem um filtro aparecer antes do relatório ser executados para salvar os recursos do sistema.

Click the button “Insert runtime parameter” and choose which parameter to add.

The Insert runtime parameter button is pressed and the different options are shown

  • Authorized value: will display a drop down menu of the value descriptions from the chosen authorized value category. The authorized value code will be inserted in the report when it is run.

  • Bibliographic framework: will display a drop down menu of MARC bibliographic frameworks. The framework code will be inserted in the report when it is run.

  • Classification sources: will display a drop down menu of classification sources. The classification code will be inserted in the report when it is run.

  • Date: will display a calendar to pick a date. The date in YYYY-MM-DD format will be inserted in the report when it is run.

  • Item types: will display a drop down menu of item types. The item type code will be inserted in the report when it is run.

  • Libraries: will display a drop down menu of libraries. The library code (branchcode) will be inserted in the report when it is run.

  • List: will display a large text box in which the user can enter many values, one per line. Those values will be inserted in the report, separated by commas, when it is run.

    Aviso

    In the case of the list parameter, users must write one value per line.

  • Patron categories: will display a drop down menu of patron categories. The category code will be inserted in the report when it is run.

  • Cash registers: will display a drop down menu of cash registers. The cash register’s internal id will be inserted in the report when it is run.

  • Debit types: will display a drop down menu of debit types. The debit type code will be inserted in the report when it is run.

  • Credit types: will display a drop down menu of credit types. The credit type code will be inserted in the report when it is run.

  • Text field: will display an empty text field in which the user can enter any text.

    Nota

    You have to put «%» in a text box to “leave it blank”. Otherwise, it literally looks for «» (empty string) as the value for the field.

    For example entering nothing for: «title=<<Enter title>>» will display results with title=”” (no title).

    If you want to have to have something not mandatory, use «title like <<Enter title>>» and enter a % at run time instead of nothing.

After you choose the type of runtime parameter, it will ask you for the parameter label. This is what the user will see as the label for the choice they have to make or text they have to enter.

The syntax inserted into the report is <<Label|authorized_value>>.

  • The << and >> are just delimiters to indicate the start and end of the runtime parameter.

  • The label will be displayed on the left of the choice or value to enter.

  • The authorized_value can be omitted if not applicable. If it is absent, a free text field will be displayed. If it contains an authorized code (see table below), a drop down of the values will be displayed.

Nota

You can write those in manually as well, you don’t have to go through the “Insert runtime parameter” button. As long as the syntax is correct, Koha will interpret it as a runtime parameter.

Lista de parâmetros que pode ser usados em tempo de execução

Parâmetro

O que o utilizador vê

O que é inserido na consulta

date

date picker

validly formatted date

branches

drop down of branch names

branch code

itemtypes

drop down of item type names

item type

categorycode

drop down of patron category descriptions

borrower category code

biblio_framework

drop down of MARC bibliographic frameworks

framework code

list

large text box

comma separated values

(auth-value-category)

drop down of auth-value descriptions in category

authorized value

(nothing)

text box

entered text

Nota

You can have more than one runtime parameter in a given SQL query.

Example 1

SELECT surname,
       firstname
FROM borrowers
WHERE branchcode = <<Enter patrons library|branches>>
    AND surname LIKE <<Enter filter for patron surname (% if none)>>

When running the report, the user is asked to choose a library from a drop-down menu and enter a surname in an input text field

Example 2

SELECT *
FROM items
WHERE homebranch = <<Pick your branch|branches>>
    AND barcode LIKE <<Partial barcode value here>>

When running the report, the user is asked to choose a library from a drop-down menu and enter a barcode in an input text field

Example 3

SELECT title,
       author
FROM biblio
WHERE frameworkcode = <<Enter the frameworkcode|biblio_framework>>

When running the report, the user is asked to choose a bibliographic framework from a drop-down menu

Example 4

SELECT cardnumber,
       surname,
       firstname
FROM borrowers
WHERE dateexpiry <= <<Expiry date|date>>

When running the report, the user is asked to pick a date in the calendar (date picker)

Example 5

SELECT *
FROM items
WHERE itemnumber IN <<List of itemnumbers (one per line)|list>>

When running the report, the user is asked to enter a list of values

Aviso

In the case of the list parameter, users must write one value per line.

Column names

You can use an SQL alias to rename columns.

Example

SELECT surname AS "Last Name"
FROM borrowers

For reports whose results you wish to send to batch modification tools or generate automatic hyperlinks to use [[batch field|Column Name]] to rename the itemnumber, biblionumber or borrowernumber columns. For example, [[itemnumber|Item Number]] will format the itemnumber column as «Item Number», while allowing those results to be sent to the batch item modification tool.

Example

SELECT [[borrowernumber|Borrower Number]], firstname AS "First Name", surname AS "Last Name"
FROM borrowers

Relatório SQL a partir do Mana

Na opção «Criar relatório SQL», pode pesquisar a base de dados Mana por relatórios pré-existentes clicando em «Novo relatório» e escolhendo «Novo relatório do Mana».

image1428

Nota

Esta opção apenas aparece caso tenha configurado a base de dados Mana no módulo de administração.

Será pedido para inserir as palavras-chaves a pesquisa na base de dados.

image1429

No resultados de pesquisa, poderá ver

  • os detalhes do relatório (nome, notes e tipo)

  • quantas pessoas já usaram a entrada (# de utilizadores)

  • quando foi usado pela última vez (última importação)

  • comentários adicionas de outros utilizadores do Koha (comentários)

image1430

Clique em «Importar» para importar uma cópia do relatório para os seus relatórios guardados.

A partir desse momento pode editar, duplicar, eliminar ou executar o relatório como qualquer outro relatório.

Duplicar relatório

Os relatórios também podem ser adicionados duplicando já existentes. Visite a página “Relatórios guardados” para ver todos os relatórios já no sistema.

image895

À direita de cada relatório existe uma ligação “Ações”. Ao clicar nessa ligação e posteriormente em “Duplicar” o relatório ser usado como base para o novo relatório. O novo relatório terá o mesmo SQL para que seja mais fácil editar e guardar.

Editar relatórios personalizados

Cada relatório pode ser editado a partir da lista de relatórios. Para ver a lista de relatórios já guardados, clique em “Relatórios guardados”.

List of saved reports, "All" tab is selected

Nota

  • You can customize the columns of this table in the “Table settings” section of the Administration module (table id: table_reports).

Para encontrar o relatório que deseja editar pode ordenar qualquer das colunas clicando no cabeçalho da coluna. Pode também filtrar os relatórios usando o menu de filtro à esquerda ou os separadores para encontrar os relatórios por grupo.

A partir desta lista pode editar qualquer relatório clicando em “Ações” à direita do relatório e escolha “Editar” no menu que aparece.

"Edit" option of the report action button

The form to edit the report will appear. Use the «update button» to save your modifications or click on «update and run SQL» to save and display the report results.

The edit report form with the 'update' button and 'save and run sql' button

Executar relatórios personalizados

Once custom reports are saved to Koha, you can run them by going to the Saved Reports page and clicking the “Run” button to the right of the report.

List of saved reports, "All" tab is selected

When your report runs, you will either be asked for some values,

When running the report, the user is asked to choose a library from a drop-down menu and enter a surname in an input text field

or you will see the results right away.

Page showing results from a report called New patrons. Buttons at the top are: New report, Edit, Run report, Schedule, Download, Show SQL code, Create chart, Fetch all data for chart. The report ID (4) is displayed next to the report name (New patrons). There is a note saying "Note: Will ask for month and year". Total number of results: 6. Columns are branchcode, categorycode, and COUNT(*). There are various values in the table.

From the results you can do various actions with the button bar at the top of the page.

  • New report: create a brand new report.

  • Edit:

  • Run report: rerun the report

  • Run with template: this button only appears if you have notice templates in the notices and slips tool that are for reports.

    Dica

    To view the results in a format other than the traditional table, you can create a template in the notices and slips tool.

    For example, to view patron information in “card” form,

    • Go to Tools > Notices and slips.

    • Click “New notice”, and choose “Reports”.

    • Fill out the code and name for the slip. The name will be what appears in the “Run with template” menu.

    • In the “Print” template section, paste the code:

      [% FOREACH b IN data %]
      <div class="panel panel-default">
        <div class="panel-heading">[% b.surname %], [% b.firstname %]</div>
        <div class="panel-body">Expiration: [% b.dateexpiry %]</div>
        <div class="panel-footer">ID: [% b.borrowernumber %]</div>
      </div>
      [% END %]
      
    • Click “Save”.

    • In a report with patron information, for example,

      SELECT * FROM borrowers LIMIT 50
      

      Click “Run with template” and choose the template.

    Instead of a table, the results will appear in “card” form.

    Report results where patrons are displayed one after the other in separate 'cards' with the surname, name, expiration date and ID (borrowernumber).

  • Schedule: schedule the report to be run at a later time with the task scheduler tool

  • Download: download the results

    • Comma separated text (.csv): a comma separated text file is a CSV file and it can be opened by any spreadsheet application or a text editor

    • Tab separated text: a tab separated text can also be opened by any spreadsheet or a text editor

    • Open Document Spreadsheet: ODS is an open-source spreadsheet file that can be opened in most spreadsheet applications

  • Show SQL code: show the SQL query used to get those results

  • Create chart: create a pie chart or a line/bar chart with the visible results

  • Fetch all data for chart: make all the data visible to make a chart with all the data

Send report output to batch modification tools

After running a report that contains itemnumbers, biblionumbers and/or patron cardnumbers the list of numbers can be imported directly into the relevant batch modification tool by clicking the “Batch operations with X visible records” button in the report results. The X depends on the number of records you have chosen to display on screen (up to 1000).

Results of a report called 'Batch edit report', the button 'Batch operations with 20 visible records' is open and the options are: for patron records batch patron modification and patron card creator, for bibliographic records batch record modification, batch record deletion, and add to list, and for item records batch item modification and batch item deletion.

Relatórios estatísticos

Statistic reports will show you counts and sums. These reports are all about numbers and statistics, for reports that return more detailed data, use the guided report wizard. These reports are limited in what data they can look at, so it’s often recommended to use custom reports for official end of the year statistics.

Estatísticas das aquisições

Nota

Estes relatórios estão limitados em relação aos dados que podem consultar, portanto é recomendado usar relatórios personalizados para as estatísticas necessárias de final de ano.

Usando o formulário fornecido, escolha qual o valor para aparecer na coluna e o valor para aparecer na linha.

Usando o formulário fornecido, escolha qual o valor para aparecer na coluna e o valor para aparecer na linha.

Se escolher mostrar no browser, os resultados aparecerão no ecrã.

image903

Pode escolher para exportar para um ficheiro que pode manipular de acordo com as suas preferências.

Quando gerar um relatório, note que tem de escolher entre contagens ou somatórios dos valores.

image904

Escolher o montante irá alterar os resultados para aparecer como soma de todos os montantes gastos.

image905

Estatísticas dos leitores

Nota

Estes relatórios estão limitados em relação aos dados que podem consultar, portanto é recomendado usar relatórios personalizados para as estatísticas necessárias de final de ano.

Usando o formulário fornecido, escolha qual o valor para aparecer na coluna e o valor para aparecer na linha.

View of patron form for patron statistics

Se escolher mostrar no browser, os resultados aparecerão no ecrã.

image907

Segundo as suas opções, pode ver mais informações abaixo da tabela de resultados. Pode também exportar para um ficheiro que poderá manipular de acordo com as suas necessidades.

Estatísticas do catálogo

Nota

Estes relatórios estão limitados em relação aos dados que podem consultar, portanto é recomendado usar relatórios personalizados para as estatísticas necessárias de final de ano.

Usando o formulário fornecido, escolha qual o valor para aparecer na coluna e o valor para aparecer na linha.

image908

Se escolher mostrar no browser, os resultados aparecerão no ecrã.

image909

Pode escolher para exportar para um ficheiro que pode manipular de acordo com as suas preferências.

Estatísticas de circulação

Nota

Estes relatórios estão limitados em relação aos dados que podem consultar, portanto é recomendado usar relatórios personalizados para as estatísticas necessárias de final de ano.

Usando o formulário fornecido, escolha qual o valor para aparecer na coluna e o valor para aparecer na linha.

Circulation statistics reporting wizard, with options to select the report parameters

Se escolher mostrar no browser, os resultados aparecerão no ecrã.

image911

Pode escolher para exportar para um ficheiro que pode manipular de acordo com as suas preferências.

Nota

Para obter um quadro completo da circulação mensal ou diária, pode executar o relatório duas vezes, uma para o tipo “Empréstimo” e, novamente, para “Renovação”.

Este relatório usa o “Período”, ou data, filtragem que permite limitar a um mês, seleccionando o primeiro dia do primeiro mês até ao primeiro dia do mês seguinte. Por exemplo, 01/1 a 01/11 para encontrar as estatísticas do mês de Outubro.

  • Para encontrar estatísticas diárias definia o intervalo de tempo.</br> Exemplo: «Eu quero os dados que circularam desde a data XXX até à data XXX, não incluída.»

  • Durante um mês inteiro, os limites seriam por exemplo: 11/01/2009 para 2009/12/01

  • Durante um ano inteiro, seria uma gama por exemplo: 01/01/2009 a 2010/01/01

  • Para um único dia, seria um exemplo: 2009/11/15 a 2009/11/16 para encontrar o que circulou no dia 15

Uso local

Usando as estatísticas de circulação pode executar relatórios para o uso local dos exemplares selecionando “Uso local” na lista do “Tipo”:

Circulation statistics reporting wizard with Type drop-down menu open and "Local use" highlighted.

Estatísticas de periódicos

Nota

Estes relatórios estão limitados em relação aos dados que podem consultar, portanto é recomendado usar relatórios personalizados para as estatísticas necessárias de final de ano.

Usando o formulário fornecido, escolha como deseja listar os periódicos no sistema.

In the reports module, the form to launch statistics in the serials

Se escolher mostrar no browser, os resultados aparecerão no ecrã.

image914

Pode escolher para exportar para um ficheiro que pode manipular de acordo com as suas preferências.

Estatísticas de reservas

Nota

Estes relatórios estão limitados em relação aos dados que podem consultar, portanto é recomendado usar relatórios personalizados para as estatísticas necessárias de final de ano.

Usando o formulário fornecido pode ver as estatísticas para as reservas feitas, satisfeitas, canceladas e mais informações na biblioteca. Do formulário escolha o valor que quer mostrar na coluna e o valor para a linha. Pode também escolher filtros à direita do formulário.

Form for holds statistics

Se escolher mostrar no browser, os resultados aparecerão no ecrã.

image916

Pode escolher para exportar para um ficheiro que pode manipular de acordo com as suas preferências.

Leitores com mais empréstimos

Este relatório irá listar os leitores com mais empréstimos.

Form to select parameters to run Top checkouts report

Se escolher mostrar no browser, os resultados aparecerão no ecrã.

image918

Pode escolher para exportar para um ficheiro que pode manipular de acordo com as suas preferências.

Documentos mais emprestados

Este relatório irá listar os exemplares que tiveram mais empréstimos.

image919

Se escolher mostrar no browser, os resultados aparecerão no ecrã.

image920

Pode escolher para exportar para um ficheiro que pode manipular de acordo com as suas preferências.

Leitores sem empréstimos

Este relatório lista todos os leitores no sistema que nunca requisitaram um exemplar.

Report form for creating a report of patrons who have never checked out items

Se escolher mostrar no browser, os resultados aparecerão no ecrã.

image922

Pode escolher para exportar para um ficheiro que pode manipular de acordo com as suas preferências.

Exemplares nunca emprestados

Este relatório irá listar todos os exemplares que nunca foram emprestados.

Form for the report of items with no checkouts

Se escolher mostrar no browser, os resultados aparecerão no ecrã.

image924

Pode escolher para exportar para um ficheiro que pode manipular de acordo com as suas preferências.

Catálogo por tipo de documento

Este relatório irá listar o número total de exemplares de cada tipo de documento por biblioteca.

Catálogo por tipo de documento

Se escolher mostrar no browser, os resultados aparecerão no ecrã.

Catalog by item type results

Pode escolher para exportar para um ficheiro que pode manipular de acordo com as suas preferências.

Exemplares perdidos

Este relatório irá listar os exemplares que foram marcados como perdidos no sistema

Input for lost item report

Once you have chosen parameters, you will see the corresponding list of items.

Results of lost item report

Nota

  • You can customize the columns of this table in the “Table settings” section of the Administration module (table id: lostitems-table).

Orders by fund

If you use the Acquisitions module, you will be able to see all the items that were ordered in each fund.

image1499

Once you choose the fund you wish to view, you can export the results or view them in the browser. If you choose to view them directly, you will be shown the list of orders.

Example of a report result of Orders by fund

Nota

  • You can customize the columns of this table in the “Table settings” section of the Administration module (table id: funds-table).

Duração média do empréstimo

Este relatório lista o tempo médio de empréstimo baseado no critério que inseriu:

Wizard to generate report for average loan time, with options to select the report parameters (checkout date, patron category, item type...)

Se escolher mostrar no browser, os resultados aparecerão no ecrã.

image929

Pode escolher para exportar para um ficheiro que pode manipular de acordo com as suas preferências.

Dicionário dos relatórios

O dicionário dos relatórios é uma forma de pré-definir filtros comuns a aplicar aos relatórios. É uma boa forma de adicionar filtros que o assistente de relatório não inclui por omissão. Para adicionar uma nova definição, ou filtro, clique em “Nova definição” na página do dicionário de relatórios e siga os 4 passos.

Passo 1: Nomeie a definição e providencia uma descrição se necessário

image930

Passo 2: Escolher o módulo que será consultado.

image931

Passo 3: Escolher as colunas a consultar das tabelas apresentadas.

image932

Passo 4: Escolha os valores dos campos. Estes serão automaticamente populados com as opções disponíveis na base de dados.

image933

Confirmar as suas selecções para guardar a definição.

image934

As suas definições vão aparecer na página de dicionário de relatórios

image935

Assim quando gerar relatórios no módulo onde criou o valor irá ver uma opção para limitar pela definição no fim dos filtros usuais.

image936

Report plugins

Some plugins that are available can be used to make or enhance reports.

  • Get there: More > Reports > Report plugins > Report plugins

From this page, you will see only report-type plugins.

See the managing plugins section of this manual to learn how to manage your report-type plugins.