Skip to content
Report · CRM

Open support cases

Every support case not yet closed, with company, status, priority, owner and age.

  • support
  • operational
  • detail
Sample preview, fictional dataYour own figures appear after import.

01

About this report

One row per active case whose status is not in a closed stage. Each row gives the case number, subject, company, status, priority, assignee, origin, start date, days open and last modified date.

Opened from Support cases by status and age, it arrives filtered to one status and priority. Sort by Days open, or filter Assigned to for one person's queue. The case number opens the case.

02

Sample preview

Fictional figures in the shape you will see. Yours come from your account.

CaseSubjectCompanyStatusPriorityAssigned toOriginStartedDays openLast modified
2471Invoice PDF missing logoHarbor & Pine Co.Re-OpenedLowPriya NatarajanE-mail2026-08-11442026-09-20
2519Cannot approve purchase orderNorthgate SupplyEscalatedHighTom OkaforPhone2026-09-10142026-09-23
2533Report totals differBrightline Dental GroupIn ProgressMediumPriya NatarajanWeb2026-09-1862026-09-22
2540Login lockedMaple Ridge ClinicsNot StartedHighE-mail2026-09-2312026-09-23

03

The SuiteQL

This is the query each report runs. Read it, copy it, or change it after import.

Open support cases
SELECT sc.id AS case__id,
       sc.casenumber AS case_number,
       sc.title AS subject,
       BUILTIN.DF(sc.company) AS company,
       NVL(BUILTIN.DF(sc.status), '(none)') AS status,
       NVL(BUILTIN.DF(sc.priority), '(none)') AS priority,
       BUILTIN.DF(sc.assigned) AS assigned_to,
       BUILTIN.DF(sc.origin) AS origin,
       TO_CHAR(sc.startdate, 'YYYY-MM-DD') AS start_date,
       TRUNC(SYSDATE) - TRUNC(sc.startdate) AS days_open,
       TO_CHAR(sc.lastmodifieddate, 'YYYY-MM-DD') AS last_modified
  FROM supportcase sc
  JOIN supportcasestatus s ON s.id = sc.status
 WHERE s.stage <> 'CLOSED'
   AND sc.isinactive = 'F'
 ORDER BY sc.startdate

04

Appears in

ReportCRM

Open support cases

Screenshot of the Open support cases report in HiScale Advanced Reports, filled with fictional sample data
Sample preview, fictional dataOpen image full size (opens in a new tab)