ChangeControlledStatus Function
On any Reference or Representation Reference object, the ChangeControlledStatus Knowledge function is available for the user to retrieve whether the object is Change Controlled or not.
Signature
Boolean ChangeControlledStatus(Object Reference)
Arguments
Name | Input / Output | Required? | Type | Comment |
---|---|---|---|---|
Object Reference
|
In | Yes | Boolean | Any object subjected to be under change control, for example references or representation references |
Out | Yes | Boolean | Object modification is controlled by change | |
Out | No | Boolean | Object modification is not controlled by change |
ReturnType
Boolean
This is the return value from function which indicates the result of execution.
Example
Here's an example rule using the ChangeControlledStatus function:
let iControlledStatus(Boolean) iControlledStatus = ChangeControlledStatus(ThisObject) Validation = true if (iControlledStatus == false) { Validation = false }