Setting a GlideRecord variable to 'NULL'
-
- UpdatedJan 30, 2025
- 1 minute read
- Yokohama
- Building applications
GlideRecord variables (including current) are initially null in the database. Setting these back to an empty string, a space, or the JavaScript null value will not result in a return to this initial state.
Note: This functionality requires a
knowledge of JavaScript.
To set it back to the initial state, simply set the value to 'NULL'. Note that the update() function does not run on the current object but rather on the record. The object displays the initial value until it is called again from the record.
Note: Functionality described here requires the
Admin role.