Skip to content
Report · CRM

Open opportunities

Every open opportunity with stage, sales rep, expected close, probability and value.

  • pipeline
  • detail
  • sales
Sample preview, fictional dataYour own figures appear after import.

01

About this report

One row per opportunity that is In Progress or has an estimate issued. Each row gives the title, customer, stage, sales rep, expected close date, days since the opportunity date, probability, and the projected and weighted totals in base currency.

Opened from Opportunity pipeline by stage, it arrives filtered to one stage. Sort by Expected close for the forecast call. Deals with an expected close in the past need updating. The opportunity number opens the opportunity.

02

Sample preview

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

OpportunityTitleCustomerStageSales repExpected closeDays openProbabilityProjectedWeighted
OPP00412Warehouse scanning rolloutNorthgate SupplyNegotiationMarco Ruiz2026-09-29640.8058,00046,400
OPP00418Phase 3 analyticsSummit Analytics LLCProposalDana Whitfield2026-10-15410.6072,50043,500
OPP00425New clinic onboardingMaple Ridge ClinicsIn DiscussionDana Whitfield2026-11-01200.4024,0009,600
OPP00431Support renewalCoastal FreightwaysQualifiedMarco Ruiz2026-12-0160.2018,0003,600

03

The SuiteQL

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

Open opportunities
SELECT t.id AS opportunity__id,
       t.tranid AS opportunity,
       t.title AS title,
       NVL(e.altname, e.entityid) AS customer,
       NVL(BUILTIN.DF(t.entitystatus), '(no stage)') AS stage,
       BUILTIN.DF(t.employee) AS sales_rep,
       TO_CHAR(t.expectedclosedate, 'YYYY-MM-DD') AS expected_close,
       TRUNC(SYSDATE) - TRUNC(t.trandate) AS days_open,
       t.probability AS probability,
       t.projectedtotal * t.exchangerate AS projected,
       t.weightedtotal * t.exchangerate AS weighted
  FROM transaction t
  JOIN entity e ON e.id = t.entity
 WHERE t.type = 'Opprtnty'
   AND t.status IN ('Opprtnty:A', 'Opprtnty:B', 'A', 'B')
 ORDER BY t.expectedclosedate

04

Appears in

ReportCRM

Open opportunities

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