Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Info
iconfalse

This page provides information about Approval JQL Functions.

Select an Approval JQL Function from the Approval Menu or type it in the Jira Search Navigator.

pendingForApproval() 

This function returns all issues having at least one approval request in 'Pending' status.

This function doesn't take any arguments.

Code Block
languagejava
themeDJango
issue in pendingForApproval()

Admissible operators include IN and NOT IN.

Info
titleExample

pendingForUserApproval() 

This function returns all issues having at least one approval request in 'Pending' status for the specific user. 

This function expects the argument username.

Code Block
languagejava
themeDJango
issue in pendingForUserApproval(<username>)

Admissible operators include IN and NOT IN.

Info
titleExample

PendingNotifiedApproval() 

This function returns all issues having at least one notified approval request in 'Pending' status.

This function doesn't take any arguments.

Code Block
languagejava
themeDJango
issue in PendingNotifiedApproval()

Admissible operators include IN and NOT IN.

Info
titleExample

PendingUserNotifiedApproval()

This function all issues having at least one notified approval request in 'Pending' status for the specific user.

This function expects the argument username. 

Code Block
languagejava
themeDJango
issue in PendingUserNotifiedApproval(<username>)

Admissible operators include IN and NOT IN.

Info
titleExample

myPendingApproval() 

This function returns all the issues having at least one approval request waiting for logged user approval action.

 This function doesn't take any arguments.

Code Block
languagejava
themeDJango
issue in myPendingApproval()

Admissible operators include IN and NOT IN.


Info
titleExample

myPendingNotifiedApproval() 

This function returns all the issues having at least one notified approval request waiting for logged user approval action.

This function doesn't take any arguments.

Code Block
languagejava
themeDJango
issue in myPendingNotifiedApproval()

Admissible operators include IN and NOT IN.

Info
titleExample

pendingForGroupApproval()

The function returns all issues having at least one approval request in 'Pending' status for the specified Group.

This function expects the argument Group.

Code Block
languagejava
themeDJango
issue in pendingForGroupApproval("<Group>")

The search for issue in pendingForGroupApproval("") returns all issues having at least one notified approval request in 'Pending' status for every Group.

Admissible operators include IN and NOT IN.

Info
titleExample

pendingForGroupNotifiedApproval()

The function returns all issues having at least one notified approval request in 'Pending' status for the specified Group.

This function expects the argument Group.

Code Block
languagejava
themeDJango
issue in pendingForGroupNotifiedApproval("<Group>")

The search for issue in pendingForGroupNotifiedApproval("")returns all issues having at least one notified approval request in 'Pending' status for every Group.

Admissible operators include IN and NOT IN.

Info
iconfalse
titleExample

pendingApprovalDays()

The function returns all issues having at least one pending approval request in 'Pending' status for a number of days greater or equal to the specified Days.

This function expects the argument Days.

The argument Days is required.

Code Block
languagejava
themeDJango
issue in pendingApprovalDays("<Integer>") 

Admissible operators include IN and NOT IN.

rejectedForApprovalStatus()

This function returns all issues having at least one approval request in 'Rejected' status.

This function doesn't take any arguments. 

Code Block
languagejava
themeDJango
issue in rejectedForApprovalStatus()

Admissible operators include IN and NOT IN.

Info
iconfalse
titleExample

myRejectedApproval()

This function returns all issues having at least one approval request that has been 'Rejected' by the logged user.

This function doesn't take any arguments. 

Code Block
languagejava
themeDJango
issue in myRejectedApproval()

Admissible operators include IN and NOT IN.

Info
titleExample

approvedForApprovalStatus()

This function returns  all issues having all approval requests in 'Approved' status.

This function doesn't take any arguments. 

Code Block
languagejava
themeDJango
issue in approvedForApprovalStatus()

Admissible operators include IN and NOT IN.

approvedOrAbstainedStatus() 

This function returns all issues having all approval requests in 'Approved' or 'Abstained' statuses.

This function doesn't take any arguments.

Code Block
languagejava
themeDJango
issue in approvedOrAbstainedStatus() 

Admissible operators include IN and NOT IN.

Info
titleExample

myApprovedApproval() 

This function returns all issues having at least one approval request that has been 'Approved' by the logged user.

This function doesn't take any arguments. 

Code Block
languagejava
themeDJango
issue in myApprovedApproval() 

Admissible operators include IN and NOT IN.

Info
titleExample

myApprovedInHistory()

This function returns all issues having at least one approval request that has been Approved by the logged user and has been kept in Approval History.

This function doesn't take any arguments. 

Code Block
languagejava
themeDJango
issue in myApprovedOrAbstainedStaus()

Admissible operators include IN and NOT IN.

Info
iconfalse

myApprovedOrAbstainedStaus()

This function returns all issues having at least one approval request that has been 'Approved' or 'Abstained' by the logged user.

This function doesn't take any arguments. 

Code Block
languagejava
themeDJango
issue in myApprovedOrAbstainedStaus()

Admissible operators include IN and NOT IN.

Info
titleExample

pendingAutomaticTransitioning() 

This function returns all issues configured to be automatically transitioned on reached approval.

This function doesn't take any arguments. 

Code Block
languagejava
themeDJango
issue in pendingAutomaticTransitioning() 

Admissible operators include IN and NOT IN.

defineApproval()

This function returns all issues configured with specific approvals (not following the overall approval mapping). 

This function doesn't take any arguments.

Code Block
languagejava
themeDJango
issue in defineApproval()

Admissible operators include IN and NOT IN.

failedAutomaticTransitioning()

This function returns all issues not automatically transitioned due to conditions and validators have not been validated.

This function doesn't take any arguments. 

Code Block
languagejava
themeDJango
issue in failedAutomaticTransitioning()

Admissible operators include IN and NOT IN.

Info
titleExample

myPendingForDelegatedApproval()

This function returns all issues pending for my approval due to I'm a delegated approver.

This function doesn't take any arguments. 

Code Block
languagejava
themeDJango
issue in myPendingForDelegatedApproval()

Admissible operators include IN and NOT IN.


Info
titleExample

PendingForDelegatedApproval()

This function returns issues pending for approval due to a delegation from a specific delegator for a specific project and issue type in a given time range.

This function takes the listed arguments: delegator username(mandatory), Project Id (mandatory), IssueType Id (mandatory), Start Date (optional), End Date (optional). 

Code Block
languagejava
themeDJango
issue in pendingForDelegatedApproval('delegator username',10004,'10006','','')

Admissible operators include IN and NOT IN.

Info
titleExample

noApprovalsReceived()

This function returns all issues pending for approval that have no yet received any approbation.

This function doesn't take any arguments. 

Code Block
languagejava
themeDJango
issue in noApprovalsReceived()

Admissible operators include IN and NOT IN.


Info
titleExample

partiallyApproved()

This function returns all issues pending approval having already at least catched one approbation.

This function doesn't take any arguments. 

Code Block
languagejava
themeDJango
issue in partiallyApproved()

Admissible operators include IN and NOT IN.

Info
titleExample


approvedApproval()

This function returns all issues with a number of approbations from an Approval (specified by name) greater than the specified Number.

This function expects the arguments Approval Name and an integer.

All two the arguments are required.

Code Block
languagejava
themeDJango
(issue in approvedApproval("Approval Name", 1)
Info
iconfalse
titleExample
Image Added

In this section

Table of Contents

Still need help?

We would love to help.

Button Hyperlink
titleSubmit a support request
typeprimary
urlhttps://chicago.herzum.com/jira/plugins/servlet/desk/portal/44
targettrue