---
sourceDocument: Australia Platform Analytics
sourceDocumentLink: https://servicenow-prod.fluidtopics.net/r/de-DE/now-intelligence

 Release :

    - australia

ft:locale :

    - de-DE

ft:publication_title :

    - Australia Platform Analytics

ft:clusterId :

    - par

bundleId :

    - par

workflow :

    - Platform


---

# Pass global filters to the dashboard page template

# Pass global filters to the dashboard page template {#ariaid-title1}

* Freigeben Version: Australia
* 
* Aktualisiert 12. März 2026
* 
* ![](https://www.servicenow.com/docs/portal-asset/ico-clock) 1 Minute Lesedauer

Global filters are sent to the dashboard to serve as filters for the visualizations within the dashboard. These filters are merged with existing filters in the dashboard.

## Warum und wann dieser Vorgang ausgeführt wird

Global filters are filters that apply to visualizations on the target dashboard. These filters apply to all relevant data visualizations. The format of the value passed to globalFilter is the stringified form of {encodedQueries: 'encoded-queries-string', filters: 'PAR-Filter'}. Both encodedQueries and filters are transformed into Platform Analytics filters internally and merged with the existing filters on the dashboard.  
Either `encodedQueries`, `filters`, or both can be specified. In the following example, equivalent `encodedQueries` and `filters` values both filter visualizations that show records from the Incident \[incident\] table based on a State field value of 1 or 2:

    JSON.stringify({
        encodedQueries: {incident: 'stateIN1,2'},
        parFilters: [{ order: 0, apply_to: ['incident.state'], values: ['1', '2'] }]
    })

Configure links to dashboards on UI Builder pages to open dashboards that are already filtered.

## Vorbereitungen

Role required: admin

## Prozedur

1. Navigate to the UI Builder page that you want to add a global filter to.
2. Configure the behavior of the hyperlink or button (or something else) on the page to point to the dashboard with the specified sys_ID.  
   In this example, the sys_ID is 1238.

   The showInfoMessage parameter, if true, shows the configured infoMessage on the linked dashboard when filters are passed.

       api.emit('NAV_ITEM_SELECTED', {
               route: 'dashboards',
               params: {
                   sysId: '1238',
                   unifiedFilters: JSON.stringify({
                       showInfoMessage: true, // default false
                       infoMessage: 'custom info message', // if not passed and if showInfoMessage is true then the default message is displayed
                       encodedQueries: {
                           incident: 'priority=1'
                       },
                   })
               }
           });

**Zugehörige Konzepte**   

* [Create a Platform Analytics workspace from App Engine Studio](https://servicenow-prod.fluidtopics.net/bVCpcrM4QfcwNu~nzQYi8A "The App Engine Studio includes a prebuilt workspace that you can add to an application. This workspace includes an Analytics Center page, along with the pages that the Analytics Center links to.")  
**Zugehörige Tasks**   

* [Add Platform Analytics pages to a configurable workspace](https://servicenow-prod.fluidtopics.net/34coTPUfnWvw9QT3~WXKJQ#add-analytics-center-to-experience "Add an Analytics Overview and its related pages to your own workspace/experience through page templates.")
* [Add a dashboard to a Dashboards page](https://servicenow-prod.fluidtopics.net/ohXW8~ORtTZOg5Yo8i8fxg "You can add either a technical dashboard or one made in the inline editor to a page you built from the Dashboards page template. Configure the dashboard component on that page.")
* [Configure custom redirection from a dashboard component](https://servicenow-prod.fluidtopics.net/XInjhna2jWqFnDSvIGey~w "If you have created a page in your workspace from the Dashboard page template, you can customize the on-click redirection from the dashboard component on that page. The inline dashboard that this component displays will follow the custom redirection.")
* [Configure dashboard data broker](https://servicenow-prod.fluidtopics.net/qBlUTZLSoxbv4lNWjlu_iQ "Activate the Dashboard data broker preset and configure the data broker to potentially speed the loading of dashboards by prefetching some data.")

