SNOW-CAD Working with Data • Complete Question Bank
Complete SNOW-CAD Working with Data question bank — all 0 questions with answers and detailed explanations.
Drag steps to the numbered slots on the right, or tap a step then tap a slot.
Drag steps to the numbered slots on the right, or tap a step then tap a slot.
Drag a concept onto its matching description — or click a concept then click the description.
Configuration Management Database
Customer Service Management
IT Service Management
Human Resources Service Delivery
Governance, Risk, and Compliance
Drag a concept onto its matching description — or click a concept then click the description.
Runs on the client browser
Runs on the server during rendering
Defines the widget's HTML structure
Styles the widget
Defines widget dependencies on other widgets
var gr = new GlideRecord('incident');
gr.addQuery('active', true);
gr.addQuery('priority', '1');
gr.setLimit(10);
gr.query();
while(gr.next()) {
gs.info(gr.number);
}if (!gr.isNewRecord()) {
gr.setAbortAction(true);
gs.addErrorMessage('Update not allowed');
}{
"import_set": "ISET001",
"staging_table": "u_cmdb_ci_computer_staging",
"target_table": "cmdb_ci_computer",
"field_map": [
{"source": "u_name", "target": "name"},
{"source": "u_serial_number", "target": "serial_number"},
{"source": "u_model_id", "target": "model_id", "coalesce": true}
]
}{"name":"Mandatory short description","table":"incident","field":"short_description","mandatory":true,"conditions":{"op":"and","conditions":[{"field":"state","op":"=","value":"1"}]}}function transformEntry(source, target) {
if (source.u_department != '') {
target.department = source.u_department;
}
}{
"name": "incident.update",
"table": "incident",
"rules": [
{
"type": "condition",
"script": "current.state == 3 && gs.hasRole('itil')"
}
],
"action": "update"
}{
"name": "Enforce Mandatory for VIP",
"table": "incident",
"conditions": [
{
"condition": "caller_id.name = 'VIP'",
"mandatory": "short_description"
}
]
}