Skip to content
Report · Projects

Time entries

Every time entry of the last two years with employee, customer or project, service item and hours.

  • detail
  • time
  • billing
Sample preview, fictional dataYour own figures appear after import.

01

About this report

One row per time entry in the last 24 months. Each row gives the month, date, employee, the customer or project the time was logged against, the service item, whether it is billable, the approval status, the hours and the memo.

Opened from Project hours by resource by month, it arrives filtered to one employee and month. On its own, filter by Customer or project before billing, or filter Billable to find time that should be billable and is not.

02

Sample preview

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

MonthDateEmployeeCustomer or projectService itemBillableApproval statusHoursMemo
2026-092026-09-22Dana WhitfieldHarbor & Pine Co. : Retail rolloutImplementation servicesYesApproved6.50Store template configuration
2026-092026-09-22Marco RuizBrightline Dental Group : Phase 2Implementation servicesYesPending Approval4Data mapping workshop
2026-092026-09-21Priya NatarajanInternal : TrainingInternal timeNoApproved2Certification study
2026-092026-09-19Dana WhitfieldHarbor & Pine Co. : Retail rolloutImplementation servicesYesApproved7.25User acceptance testing

03

The SuiteQL

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

Time entries
SELECT TO_CHAR(tb.trandate, 'YYYY-MM') AS period,
       TO_CHAR(tb.trandate, 'YYYY-MM-DD') AS tran_date,
       BUILTIN.DF(tb.employee) AS employee,
       NVL(e.altname, e.entityid) AS customer_or_project,
       BUILTIN.DF(tb.item) AS service_item,
       tb.isbillable AS billable,
       BUILTIN.DF(tb.approvalstatus) AS approval_status,
       tb.hours AS hours,
       tb.memo AS memo
  FROM timebill tb
  LEFT JOIN entity e ON e.id = tb.customer
 WHERE tb.trandate >= ADD_MONTHS(TRUNC(SYSDATE, 'MM'), -23)
   AND tb.trandate <= SYSDATE
 ORDER BY tb.trandate DESC, employee

04

Appears in

ReportProjects

Time entries

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