Skip to content
Report · Payables

Vendor bill lines

Every vendor bill and vendor credit line of the last two years, the detail behind vendor spend.

  • detail
  • lines
  • spend
Sample preview, fictional dataYour own figures appear after import.

01

About this report

One row per expense or item line of a posted vendor bill or vendor credit in the last 24 months, before tax, in base currency, with credits negative. Each row gives the month, date, vendor, type, document, account, item, memo and amount.

Opened from Vendor spend by month, it arrives filtered to one vendor and month. On its own, filter by Account to see what a cost is made of.

02

Sample preview

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

MonthDateVendorTypeDocumentAccountItemMemoAmount
2026-092026-09-15Cloudway HostingBillINV-441206310 Hosting and softwareProduction cluster, September12,800
2026-092026-09-15Cloudway HostingBillINV-441206310 Hosting and softwareBackup storage1,400
2026-092026-09-04Ridgeline ContractorsBillB-79556005 ContractorsData migration, 40 h5,200
2026-092026-09-02Ridgeline ContractorsBill CreditVC-02146005 ContractorsRework credit-500

03

The SuiteQL

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

Vendor bill lines
SELECT TO_CHAR(t.trandate, 'YYYY-MM') AS period,
       TO_CHAR(t.trandate, 'YYYY-MM-DD') AS tran_date,
       NVL(v.altname, v.entityid) AS vendor,
       BUILTIN.DF(t.type) AS type,
       NVL(t.tranid, t.transactionnumber) AS document,
       BUILTIN.DF(tl.expenseaccount) AS account,
       BUILTIN.DF(tl.item) AS item,
       tl.memo AS memo,
       tl.foreignamount * t.exchangerate AS amount
  FROM transaction t
  JOIN transactionline tl ON tl.transaction = t.id
  JOIN entity v ON v.id = t.entity
 WHERE t.type IN ('VendBill', 'VendCred')
   AND t.posting = 'T'
   AND tl.mainline = 'F'
   AND tl.taxline = 'F'
   AND NVL(tl.itemtype, 'x') NOT IN ('TaxGroup', 'TaxItem', 'Subtotal', 'Description', 'EndGroup')
   AND t.trandate >= ADD_MONTHS(TRUNC(SYSDATE, 'MM'), -23)
 ORDER BY t.trandate DESC, t.tranid

04

Appears in

ReportPayables

Vendor bill lines

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