Skip to content
Report · Payables

Expense reports awaiting approval or payment

Employee expense reports waiting for a supervisor or for accounting, or approved and not yet paid.

  • approvals
  • operational
  • employees
Sample preview, fictional dataYour own figures appear after import.

01

About this report

Every expense report in Pending Supervisor Approval or Pending Accounting Approval, or approved by accounting and not yet paid. Each row gives the employee, status, report date, days waiting, purpose, and the total in the report currency and in base currency.

Work through it before a reimbursement run, or put it on an approver's dashboard. Sort by Days waiting to find reports that are stuck.

02

Sample preview

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

Expense reportEmployeeStatusDateDays waitingPurposeCurrencyTotal (report currency)Total
EXP1182Dana WhitfieldExpense Report : Pending Supervisor Approval2026-09-0519Client visit, DenverUS Dollar1,240.801,240.80
EXP1190Marco RuizExpense Report : Pending Accounting Approval2026-09-1212Trade show boothUS Dollar3,8753,875
EXP1194Priya NatarajanExpense Report : Approved by Accounting2026-09-168Training courseCanadian Dollar950693.50

03

The SuiteQL

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

Expense reports awaiting approval or payment
SELECT t.id AS report__id,
       NVL(t.tranid, t.transactionnumber) AS report_no,
       BUILTIN.DF(t.entity) AS employee,
       BUILTIN.DF(t.status) AS status,
       TO_CHAR(t.trandate, 'YYYY-MM-DD') AS report_date,
       TRUNC(SYSDATE) - TRUNC(t.trandate) AS days_waiting,
       t.memo AS purpose,
       BUILTIN.DF(t.currency) AS currency,
       ABS(t.foreigntotal) AS total_fx,
       ABS(t.foreigntotal) * t.exchangerate AS total
  FROM transaction t
 WHERE t.type = 'ExpRept'
   AND t.status IN ('ExpRept:B', 'ExpRept:C', 'ExpRept:F', 'ExpRept:G', 'B', 'C', 'F', 'G')
 ORDER BY t.trandate

04

Appears in

ReportPayables

Expense reports awaiting approval or payment

Screenshot of the Expense reports awaiting approval or payment report in HiScale Advanced Reports, filled with fictional sample data
Sample preview, fictional dataOpen image full size (opens in a new tab)