Versions Compared
Version | Old Version 19 | New Version 20 |
---|---|---|
Changes made by | ||
Saved on |
Key
- This line was added.
- This line was removed.
- Formatting was changed.
\uD83D\uDCD8 JQL functions
requestsImportedToLevel (levelName, filter, isImported)
Description
Searches for imported requests at a specific TM level.
Parameters
levelName (mandatory): The name of TM level
filter (optional):jql function to filter the results
isImported (optional): flag if search is for imported requests
Example of JQL
Code Block |
---|
issue in requestsImportedToLevel("Quality", "project = TIF", "true") |
requestsImportedToSystem(system, filter, isImported)
Description
Filters imported requests to a specific SAP system.
Parameters
system (mandatory): The name of SAP system
filter (optional): jql function to filter the results
isImported (optional): flag if search is for imported requests into the system
Example of JQL
Code Block |
---|
issue in requestsImportedToSystem("MT3", "project = TIF", "true") |
requestsOutsideOfDEVSystems(systems, filter, startAt, maxResults)
Description
Searches for requests outside specified development systems
Parameters:
systems (mandatory): The name of SAP development systems
filter (optional, recommended by Jira): jql function to filter the results
startAt and maxResults: For the jql to not run into timeout, these parameters will be used to loop through the list of issues
startAt: default start index is 0
maxResults: number of issues to fetch and query, default is 50.
Examples:
Development Systems are MT1, MT4 and NT1.
For a filter (“project = PJ1“) all issues are in total of 241, then loop through the the list
Code Block |
---|
issue in requestsOutsideOfDEVSystems("MT1, MT4, NT1", "project = PJ1", 0) issue in requestsOutsideOfDEVSystems("MT1, MT4, NT1", "project = PJ1", 50) issue in requestsOutsideOfDEVSystems("MT1, MT4, NT1", "project = PJ1", 100) issue in requestsOutsideOfDEVSystems("MT1, MT4, NT1", "project = PJ1", 150) issue in requestsOutsideOfDEVSystems("MT1, MT4, NT1", "project = PJ1", 200) |
Alternative run a single query
Code Block |
---|
issue in requestsOutsideOfDEVSystems("MT1, MT4, NT1", "project = PJ1", 0) and issue in requestsOutsideOfDEVSystems("MT1, MT4, NT1", "project = PJ1", 50)… |
\uD83D\uDCD8 Searchable issue properties
tmFilter_CREATION
value example: {content: ‘true’}
Code Block |
---|
issue.property[tmFilter_CREATION].content ~ 'true' |
tmDestination
value example: {content: ‘Destination1,Destination2,Destination3’}
Code Block |
---|
issue.property[tmDestination].content ~ 'Destination3' |
tmProjects
value example: {content: ‘Project1,Project2,Project3’}
Code Block |
---|
search example: issue.property[tmProject].content ~ 'Project2' |
levelName
value example: {content: ‘Quality0,Quality1,Production0’}
Code Block |
---|
(issues not imported into ‘Quality’ level) : issue.property[levelName].content ~ 'Quality0' (issues imported into ‘Quality’ level) : issue.property[levelName].content ~ 'Quality1' and issue.property[levelName].content !~ 'Quality0' |
tmSystem
value example: {content: ‘SYD1, SYQ0, SYP0’}
Code Block |
---|
(issues not imported into ‘SYQ0’ system): issue.property[tmSystem].content ~ 'SYP0' (issues imported into ‘SYQ0’ system): issue.property[tmSystem].content ~ 'SYD1' and issue.property[tmSystem].content !~ 'SYD0' |
tmRC
value example: {content: ‘0,8,13’}
Code Block |
---|
issue.property[tmRC].content ~ '13' |
tmTransports
value example: {content: ‘SYD0009001,SYD0009002,SYD0009003’}
Code Block |
---|
issue.property[tmTransports].content ~ 'SYD0009001' |
tmEnabled
value example: {content: ‘true’}
Code Block |
---|
issue.property[tmEnabled].content ~ 'true' |
transportUpdated (UTC time zone)
value example: {updated: ‘Fri, 27 Jan 2023 08:33:33 GMT’}
Code Block | ||
---|---|---|
| ||
issue.property[transportUpdated].updated~ 'Fri, 27 Jan 2023 08:33:33 GMT' |
Info | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
Useful examples of JQLs
|
On this page
Table of Contents | ||||||||
---|---|---|---|---|---|---|---|---|
|