Skip to content
Report · Administration

Script deployments

Every SuiteScript deployment with its script, type, record, status, log level and owner.

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

01

About this report

One row per script deployment, with the script name and id, script type, API version, deployment id, the record it runs on, its status, whether it is deployed, its log level, the script owner and whether the script is inactive. Scripts installed by SuiteApp bundles are included.

Filter Log level to DEBUG to find deployments that fill the execution log in production, or Status to Testing to find deployments that run only for their owner.

02

Sample preview

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

ScriptScript idScript typeAPI versionDeployment idRecord typeStatusDeployedLog levelOwnerScript inactive
Invoice email on approvalcustomscript_inv_email_ueUSEREVENT2.1customdeploy_inv_email_ueINVOICERELEASEDYesERRORTom OkaforNo
Nightly price synccustomscript_price_sync_mrMAPREDUCE2.1customdeploy_price_sync_mrSCHEDULEDYesAUDITTom OkaforNo
Order entry helpercustomscript_so_entry_csCLIENT2.0customdeploy_so_entry_csSALESORDERRELEASEDYesDEBUGPriya NatarajanNo
Legacy label printercustomscript_label_slSCRIPTLET1.0customdeploy_label_slTESTINGNoDEBUGTom OkaforYes

03

The SuiteQL

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

Script deployments
SELECT s.name AS script,
       s.scriptid AS script_id,
       s.scripttype AS script_type,
       s.apiversion AS api_version,
       d.scriptid AS deployment_id,
       d.recordtype AS record_type,
       d.status AS status,
       d.isdeployed AS deployed,
       d.loglevel AS log_level,
       BUILTIN.DF(s.owner) AS owner,
       s.isinactive AS script_inactive
  FROM scriptdeployment d
  JOIN script s ON s.id = d.script
 ORDER BY script_type, script, deployment_id

ReportAdministration

Script deployments

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