Versions Compared

Key

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

...

Info

Useful examples of JQLs

  1. Get list of issues with the SmartChange panel active:

    • issue.property[tmEnabled].content ~ 'true'

  2. Get list of issues with SAP transport requests:

    • issue.property[tmTransports].content ~ '*'

  3. Get list of issues without SAP transport requests:

    • issue.property[tmEnabled].content ~'true' AND (issue.property[tmTransports].content IS EMPTY OR issue.property[tmTransports].content !~ '*')

  4. Get list of issues with SAP transport requests imported into an SAP system:

    • issue in rtImportedTR("Production")

  5. Get list of issues with SAP transport requests not imported into an SAP system:

    • issue.property[tmEnabled].content ~ 'true' AND issue not in rtImportedTR("Production")