Skip to content
Report · Administration

Workflows

Every SuiteFlow workflow with its record type, release status, trigger, owner and dates.

  • customization
  • audit
  • workflows
Sample preview, fictional dataYour own figures appear after import.

01

About this report

One row per workflow with its name, script id, record type, release status, whether it is inactive, its initiation trigger, whether it starts on create or on view or update, whether logging is on, the owner, and the created and last modified dates.

Filter Release status to Testing to find workflows that run only for their owner, or sort by Last modified to see recent changes.

02

Sample preview

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

WorkflowScript idRecord typeRelease statusInactiveTriggerOn createOn view or updateLoggingOwnerCreatedLast modified
Purchase order approvalcustomworkflow_po_approvalTransactionRELEASEDNoBEFORESUBMITYesYesNoTom Okafor2023-04-122026-06-02
Invoice approvalcustomworkflow_inv_approvalTransactionRELEASEDNoBEFORELOADNoYesYesPriya Natarajan2024-02-052026-02-04
Lead assignmentcustomworkflow_lead_assignEntityTESTINGNoAFTERSUBMITYesNoYesDana Whitfield2026-08-302026-09-18

03

The SuiteQL

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

Workflows
SELECT w.name AS workflow,
       w.scriptid AS script_id,
       BUILTIN.DF(w.recordtype) AS record_type,
       w.releasestatus AS release_status,
       w.isinactive AS is_inactive,
       w.inittriggertype AS trigger_type,
       w.initoncreate AS on_create,
       w.initonvieworupdate AS on_view_or_update,
       w.islogenabled AS logging,
       BUILTIN.DF(w.owner) AS owner,
       TO_CHAR(w.datecreated, 'YYYY-MM-DD') AS created,
       TO_CHAR(w.datemodified, 'YYYY-MM-DD') AS last_modified
  FROM workflow w
 ORDER BY record_type, workflow

ReportAdministration

Workflows

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