Versions Compared

Key

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

Jira Search can also be used to find issue signatures in various states.

Advanced Searches

Example: Signatures Started but not yet Finalized

Code Block
project = "DEMO" and "Signature Count" > 0 and "Signatures Finalized" is empty

Example: Signatures Finalized since the beginning of the month

Code Block
project = "DEMO" and "Signatures Finalized" >= startOfMonth()

JQL Search

Users can utilize JQL search keywords to search for pending signatures (by User or Count). This will allow administrators to configuring scheduled Jira filters to find issues with pending signatures and send periodic reminders to the Invited users.

Code Block
# Example 1: Find issues where the current user has incomplete signatures
Status != 'Closed' and eSignPendingUsers = currentUser()

# Example 2: Find open issues with pending signatures
Status = 'Open' and eSignPendingCount > 0

...