InterviewSolution
Saved Bookmarks
| 1. |
What is the purpose of the setWorkflow(e) function? |
|
Answer» The setWorkflow(E) is useful in ENABLING or disabling the execution of business rules that are subsequent actions triggered. If you set the parameter “e” value to FALSE, an insert/update operation will not be audited. When the parameter “e” value is set to true for a GlideRecord operation, then only auditing will be done. Parameter “e” represents a BOOLEAN variable that will enable business rules if the value is true(DEFAULT), and will disable them if the value is false. |
|