Skip to content
Release: Australia · Updated: 2026-03-12 · Official documentation · View source

TaskStateUtil- Global

The TaskStateUtil script include provides methods for working with task-type table state attributes.

This script include is primarily used by the Task Active State Management business rule to set the active field based on state changes. Configurations are defined in the task.state dictionary element, usually using dictionary overrides since state values vary by table.

You can call the TaskStateUtil script include in any server script to determine inactive states, default work, or default close states for a table.

The required attributes are defined on the planned_task table so all planned task types are supported. We will eventually add the attributes to other task types and eventually the base task table. You are free to do this if you want to leverage this feature now.

These attributes can be defined on the task.state dictionary element or a dictionary override for extended task tables.

AttributeDefinition
close\_statesSemicolon delimited list of state values that are inactive, used to identify whether the task should be set to active or inactive.
default\_close\_stateOptional. Attribute to define the state value of the default close state if you want to define business rules that automatically close a task. Default: 3, typically Closed Complete if attribute is not defined.
default\_work\_stateOptional. Attribute to define the state value of the default working state if you want to define business rules that automatically set a task for working. Default: 2, typically Work in Progress if the attribute is not defined.

Parent Topic:Server API reference

TaskStateUtil - TaskStateUtil(GlideRecord task)

Creates a TaskStateUtil object.

NameTypeDescription
taskGlideRecordThis must be a GlideRecord from a task table.
var stateUtil = new TaskStateUtil(current);

TaskStateUtil - ATTR_DEFAULT_WORK

The name of the attribute that identifies default work state.

NameTypeDescription
ATTR_DEFAULT_WORKStringIdentifies default work state. Value: default_work_state

TaskStateUtil - ATTR_DEFAULT_CLOSE

The name of the attribute that identifies the default close state.

NameTypeDescription
ATTR_DEFAULT_CLOSEStringIdentifies the default close state. Value: default_close_state

TaskStateUtil - ATTR_INACTIVE_STATES

The name of the attribute that identifies inactive states.

NameTypeDescription
ATTR_INACTIVE_STATESStringIdentifies inactive states. Value: close_states

TaskStateUtil - SYSTEM_DEFAULT_CLOSE

The value of the default close state is Closed Complete on the Task table.

NameTypeDescription
SYSTEM_DEFAULT_CLOSEIntegerValue of the default close state is Closed Complete on the Task table. Value: 3

TaskStateUtil - SYSTEM_DEFAULT_WORK

The value of the default work state is Work in progress on the Task table.

NameTypeDescription
SYSTEM_DEFAULT_WORKIntegerValue of the default work state is Work in progress on the Task table. Value: 2

TaskStateUtil - SYSTEM_INACTIVE_STATES

The values of the default inactive states: Closed Complete, Closed Incomplete, Closed Skipped on the Task table.

NameTypeDescription
SYSTEM_INACTIVE_STATESInteger arrayValues of the default inactive states: Closed Complete, Closed Incomplete, Closed Skipped on the Task table. Value: 3, 4, 7

TaskStateUtil - getDefaultCloseState

Returns the value for the default closed state.

The default closed state value is 3 if the default_close_state attribute has not been specified.

NameTypeDescription
None  
TypeDescription
NumberState value representing the closed state.
var stateUtil = new TaskStateUtil(current);
//get the close state
var defaultCloseState =  stateUtil.getDefaultCloseState();
current.state = defaultCloseState;

TaskStateUtil - getDefaultWorkState()

Returns the value for the default work state.

The default work state value is 2 if the default_work_state attribute has not been specified.

NameTypeDescription
None  
TypeDescription
NumberThe state value representing the working state.
var stateUtil = new TaskStateUtil(current);
//get the work state
var defaultWorkState =  stateUtil.getDefaultWorkState();
current.state = defaultWorkState;

TaskStateUtil - getInactiveStates

Returns a list of the inactive state values.

NameTypeDescription
None  
TypeDescription
ArrayArray of state values that are inactive.
var stateUtil = new TaskStateUtil(current);
//get the inactive state values
var inactiveStates = stateUtil.getInactiveStates();

TaskStateUtil - isStateInactive(String state)

Returns the active status of the specified state.

NameTypeDescription
stateStringThe state value to check.
TypeDescription
BooleanTrue if the state is inactive.
var stateUtil = new TaskStateUtil(current);
var previousStateInactive = stateUtil.isStateInactive(previous.state);
var currentStateInactive = stateUtil.isStateInactive(current.state);

TaskStateUtil - runMarkClosed

Decides whether the mark closed business rule should be run or not.

NameTypeDescription
None  
TypeDescription
BooleanWhether the business rule should be allowed to run or not.

TaskStateUtil - runTaskCloser

Decides whether the task closer business rule should be run or not.

NameTypeDescription
None  
TypeDescription
BooleanDetermines whether the business rule should be allowed to run or not.

TaskStateUtil - runTaskReopener

Decides whether the task reopener business rule should be run or not.

NameTypeDescription
None  
TypeDescription
BooleanWhether the business rule should be allowed to run or not.

TaskStateUtil - setDefaultWorkState(String defaultWorkState)

Enables the user to specify their own default work state.

NameTypeDescription
defaultWorkStateStringThe value to use for the default work state.
TypeDescription
TaskStateUtilA self-reference to allow for method chaining.