To learn more about Tempo products, please visit our Help Center. For support, see our Support Portal.

Tempo JQL functions for Cloud

This page explains JQL functions that make it possible to include Tempo data in the JIRA advanced search.

Internal Issues

This function returns all internal issues that the user has JIRA permissions to browse.

 It doesn't take any arguments, simply returns all issues that fall under the category of being internal.

issue.internal = 'true'


Tempo Teams

Team

The Team function allows you to search for issues that have a specific Tempo Team set in the Tempo Team custom field by team name

"Tempo Team" = "Team Name"

Team id

The Team.id function allows you to search for issues that have a specific Tempo Team set in the Tempo Team custom field by team id

"Tempo Team.id" = team_id

Team Projects

The project.teamName function allows you to search for issues in projects that are linked to a specific team


Program 

Team Program

The Team.program function allows you to search for issues that have a specific Tempo Team, which is part of a selected Program, set in the Tempo Team custom field.

"Tempo Team.program" = "Program_name"

Program projects

The project.teamProgramName function allows you to search for issues in projects that are linked to Teams that are grouped in a specific Program

project.teamProgramName = "Program_name"


Accounts

Account 

This returns all JIRA issues that have been set to the account that matches the key used.

Account = "Account_name"


Accounts by Customer

Account.customer returns all JIRA issues set to accounts for a specific customer. With this function you can find all  issues for a specific customer or create a custom filter based on a customer that can be used to generate custom reports. It is possible to use the name, id or key to query for this information

Account.customer = "Name of Customer"

Account.customer.id = account_id

Account.customer.key = account_key


Accounts by Category

Account.category  returns all issues that have an Account in customfield that has an assigned Category. Like wise, it enables you to group JIRA issues on account categories, that exist for your accounts. Examples are: DevelopmentInternal Cost or Billable. It is possible to use the name or key to query for this information

Account.category = "Category_name"

Account.category.key = category_key


Accounts by Category Type

Account.category.type enables you to group JIRA issues on account category types. The account category types are: Billable, Capitalize, Internal and Operational. This returns all issues with Accounts belonging to the Category Type selected

Account.category.type = "Billable"


Accounts by Status

Account.status enables you to group JIRA issues on account status. Account can have one of three statuses: Open, Closed and Archived. 
The value input to the function, is the name  for the status. 

Account.status = "OPEN"


Global Accounts

The last JQL function for accounts, is for the global accounts. Global accounts, are accounts that are not related to specific projects and can be associated with any issue in JIRA. If set to "true". this function returns a list of issues set to global account(s).

Account.global = 'true'