Atlas CRM Cloud
  • Atlas CRM Cloud
  • Release notes 2025
  • Release notes 2024
  • Release notes 2023
  • Release notes 2022
    • November 21st
    • September 8th
    • June 14th
    • June 1st
    • May 19th
    • May 11th
    • March 31st
    • March 15th
    • March 9th
    • March 2nd
    • February 21st
    • February 16th
    • February 4th
    • February 2nd
    • January 22nd - Atlas CRM 2.0
    • January 13th
    • January 10th
  • Getting started
    • Checklist
    • Core concepts
    • Installation
    • Language settings
    • Pricing
  • User functionalities
    • Companies
    • Contacts
    • Sales
    • Jira issues
    • Interactions
      • Manual Interactions
      • Gmail Integration
        • Installation
        • Feature overview
        • Admin settings
      • Outlook Integration
        • Installation
        • Feature overview
        • Admin settings
      • Jira Service Management Requests
    • Custom JQL
      • Practical examples
      • Queues in Jira Service Management
      • Gadgets on dashboards
      • Custom JQL automations
    • Confluence pages
    • Export
    • User preferences
  • Gmail integration
  • Admin configuration
    • Templates
    • Import
    • Sales configuration
    • Atlas CRM data on Jira issues
    • Access and User roles
      • Granting access to Atlas CRM
      • Customising User roles
    • Automations
      • Triggers
        • Issue created
        • Issue comment added
        • Issue updated
        • Contact linked to issue
        • Company linked to issue
        • Sale linked to issue
      • Actions
        • Link company based on custom field
        • Link contact based on custom field
        • Link contact based on reporter's email
        • Link company based on reporter's email
        • Copy template fields to custom fields
        • Link a linked company
        • Link a linked contact
        • Log issue as interaction
      • Configure an automation
        • Select trigger and actions
        • Publishing your automation
        • Disabling an automation
    • User synchronization
    • JSM Connect
    • API
      • Authentication
      • Endpoints
  • Privacy / Security
    • Security policy
  • Relevant links
  • Marketplace
  • Support
  • Roadmap
  • Server / Data Center documentation
Powered by GitBook
On this page
  • 1. Prioritizing High-Value Accounts in JSM
  • 2. Scheduling Follow-Ups for Sales Opportunities
  • 3. Monitoring Key Account and Sales activities

Was this helpful?

  1. User functionalities
  2. Custom JQL

Practical examples

Practical Custom JQL Examples

Last updated 7 months ago

Was this helpful?

Let’s look at some practical examples to see how you can leverage Atlas CRM’s custom JQL queries.

1. Prioritizing High-Value Accounts in JSM

If you’re working in a support team and want to quickly find all tickets related to your top-tier customers, you can use the following query:

atlasCompany in atlasCompanies("Customer Tier", "=", "Platinum")

Value: This query ensures that your support team can prioritize and address the most critical issues from key customers.

2. Scheduling Follow-Ups for Sales Opportunities

For sales reps focusing on follow-ups with potential clients, you can find all tasks related to sales in the Negotiation stage:

atlasSale in atlasSales("Funnel stage", "=", "Negotiation")

Value: This ensures that you stay on top of follow-ups, making sure nothing is missed and maximizing the chances of closing deals.

3. Monitoring Key Account and Sales activities

As a team leader, you may want to track what your team is working on without getting into day-to-day details. Use this query to find tasks managed by specific account managers or sales owners:

  • Customer-related work:

atlasCompany in atlasCompanies("Account Manager", "=", "currentuserid") AND status != "Done" AND priority = "High"

  • Sales-related work:

atlasSale in atlasSales("Owner", "=", "currentuserid") AND status != "Done" AND priority = "High"

Value: By using these queries, you can easily get a high-level overview of critical customer and sales-related tasks, ensuring that all important work is progressing smoothly.

Using Custom JQL to find tickets related to your top-tier customers