SNOW-CSA • Practice Test 23
Free SNOW-CSA practice test — 15 questions with explanations. Set 23. No signup required.
Refer to the exhibit. A user reports that the category field is not becoming mandatory on the incident form even when priority is set to '3' and the system property 'myapp.high_priority' is set to 'true'. What is the most likely cause?
UI Policy: "Make Category Mandatory"
Condition:
(function() {
var gr = new GlideRecord('sys_properties');
gr.addQuery('name', 'myapp.high_priority');
gr.query();
if (gr.next()) {
return gr.getValue('value') == 'true' && g_form.getValue('priority') == '3';
}
return false;
})();
Actions:
- Set mandatory: category = true