Search Tokens for Report Schedules
You can use the search tokens available in the Schedules tab and refine your search results. Click each token to learn more about it.
Use a boolean query to express your query using AND logic.
Example
Find the report scheules with last run status as COMPLETE and for Scan Report schedule
scheduleReport.lastRunStatus:"COMPLETE" AND scheduleReport.type:SCAN REPORT
Use a boolean query to express your query using NOT logic.
Example
Find the schedule reports that do not have last run status as COMPLETE
NOT scheduleReport.lastRunStatus:"COMPLETE"
Use a boolean query to express your query using OR logic.
Example
Find the schedule report with COMPLETE last run status OR Scan Report type
scheduleReport.lastRunStatus:"COMPLETE" OR scheduleReport.type:SCAN REPORT
Schedule Report Tokens
Use these search tokens to find the report schedules.
scheduleReport.idscheduleReport.id
Use an integer value to find the report schedule with the specified ID.
Example
Find report schedule with the given ID
scheduleReport.id:9725
scheduleReport.namescheduleReport.name
Use values within quotes or backticks to find report schedule with the specified name.
Example
Find a report schedule that contains part of the given name
scheduleReport.name: "schedule Report name"
scheduleReport.createdscheduleReport.created
Use a date range or specific date to find report schedules that were created on the given date or date range.
Example
Find report schedules that were created in the past 6 months.
scheduleReport.created: [now-6M .. now]
Find report schedules that were created on a specified date.
scheduleReport.created:"2020-03-20"
Find report schedules that were created after a specified date.
scheduleReport.created >"2020-03-20"
Find report schedules created between March 2020 to Dec 2020.
scheduleReport.created: [2020-03-01 .. 2020-12-31]
scheduleReport.createdBy.firstNamescheduleReport.createdBy.firstName
Use values within quotes or backticks to find the report schedules created by the specified user’s first name.
Example
Find a report schedules that are created by a user whose first name is Chandler
scheduleReport.created:"Chandler"
scheduleReport.createdBy.lastNamescheduleReport.createdBy.lastName
Use values within quotes or backticks to find the report schedules created by the specified user’s last name.
Example
Find report schedules that are created by a user whose last name is Bing
scheduleReport.createdBy.lastName: "Bing"
scheduleReport.createdBy.usernamescheduleReport.createdBy.username
Use values within quotes or backticks to find the report schedules created by the specified user’s user name.
Example
Find report schedules that are created by a user whose user name is quays_pp
scheduleReport.createdBy.username: "quays_pp"
scheduleReport.updatedscheduleReport.updated
Use a date range or specific date to find report schedules that were updated on a specific date or date range.
Example
Show report schedules that were updated in the past 6 months.
scheduleReport.updated: [now-6M .. now]
Show report schedules that were updated on the specified date.
scheduleReport.updated:"2020-03-20"
Show report schedules that were updated after a specified date.
scheduleReport.updated >"2020-03-20"
Show report schedules updated between March 2020 to Dec 2020.
scheduleReport.updated: [2020-03-01 .. 2020-12-31]
scheduleReport.updatedBy.firstNamescheduleReport.updatedBy.firstName
Use values within quotes or backticks to find the report schedules updated by the specified user’s first name.
Example
Find report schedules that are updated by a user whose first name is Chandler
scheduleReport.updatedBy.firstName: "Chandler"
scheduleReport.updatedBy.lastNamescheduleReport.updatedBy.lastName
Use values within quotes or backticks to find the report schedules updated by the specified user’s last name.
Example
Find report schedules that are updated by a user whose last name is Bing
scheduleReport.updatedBy.lastName: "Bing"
scheduleReport.updatedBy.usernamescheduleReport.updatedBy.username
Use values within quotes or backticks to find the report schedules updated by specified username.
Example
Find report schedules that are updated by a user whose user name is quays_pp
scheduleReport.updatedBy.username: "quays_pp"
scheduleReport.owner.firstNamescheduleReport.owner.firstName
Use values within quotes or backticks to find the report schedules with the owner's first name.
Example
Find the report schedules with the owner's first name as Chandler
scheduleReport.owner.firstName: "Chandler"
scheduleReport.owner.lastNamescheduleReport.owner.lastName
Use values within quotes or backticks to find the report schedules with the owner's last name.
Example
Find report schedules with the owner's last name as Bing
scheduleReport.owner.lastName: "Bing"
scheduleReport.owner.usernamescheduleReport.owner.username
Use values within quotes or backticks to find the report schedules with the owner's username.
Example
Find the report schedules with the owner's username as quays_pp
scheduleReport.owner.username: "quays_pp"
scheduleReport.typescheduleReport.type
Select the type of report to find report schedules with the selected report type: WEB APPLICATION REPORT, SCAN REPORT, SCORECARD REPORT, CATALOG REPORT.
Example
Find report schedules for scan report
scheduleReport.type:SCAN REPORT
scheduleReport.statusscheduleReport.status
Select schedule status to find report schedules that are active or inactive.
Examples
Find report schedules that are active
scheduleReport.status:"ACTIVE"
Find report schedules that are inactive
scheduleReport.status:"INACTIVE"
scheduleReport.formatscheduleReport.format
Select the report format to find report schedules with the selected format: HTML_BASE64, HTML_ZIPPED, PDF, PDF_ENCRYPTED, EXCEL, WORD, POWERPOINT, XML, CSV, CSV_V2
Example
Find schedule where the report format is selected as PDF
scheduleReport.format:PDF
scheduleReport.lastRunStatusscheduleReport.lastRunStatus
Select the status to find the report schedules with the selected last run status: COMPLETE, RUNNING, ERROR
Examples
Find report schedules with last run status as COMPLETE
scheduleReport.lastRunStatus:"COMPLETE"
Find report schedules with last run status as RUNNING
scheduleReport.lastRunStatus:"RUNNING"
scheduleReport.lastRunDatescheduleReport.lastRunDate
Use a date range or specific date to find report schedules that were used to generate reports.
Examples
Find report schedules that were used to generate reports in the past 6 months
scheduleReport.lastRunDate: [now-6M .. now]
Find report schedules that were used to generate reports on a specified date
scheduleReport.lastRunDate:"2020-03-20"
Find report schedules that were used to generate reports after a specified date
scheduleReport.lastRunDate:"2020-03-20"
Find report schedules that were used to generate reports between March 2020 to Dec 2020
scheduleReport.lastRunDate: [2020-03-01 .. 2020-12-31]
scheduleReport.nextRunDatescheduleReport.nextRunDate
Use a date range or specific date to find report schedules that are scheduled to run on the given date or date range.
Examples
Find report schedules which will run on a specified date
schedulereport.nextRunDate:"2023-03-20"
Find report schedules that will run after a specified date
scheduleReport.nextRunDate "2023-03-20"
Find report schedules will run between March 2023 to December 2023
scheduleReport.nextRunDate: [2023-03-01 .. 2023-12-31]