Question 1mediummultiple choice
Read the full Integrating and managing application data explanation →SNOW-CAD Integrating and managing application data • Complete Question Bank
Complete SNOW-CAD Integrating and managing application 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 a concept onto its matching description — or click a concept then click the description.
Visible and editable across all scopes
Isolated application with own tables and access controls
Built-in scope for system administration
Default scope for end-user interactions
Scope for plugin-provided applications
Refer to the exhibit. Log snippet: ``` [2025-04-09 10:00:00] ERROR: REST API request failed: HTTP 401 Unauthorized Request URL: https://external.example.com/api/v1/data Headers: Authorization: Bearer abc123xyz ```
Refer to the exhibit.
Script snippet:
```
var request = new sn_ws.RESTMessageV2();
request.setEndpoint('https://api.example.com/data');
request.setHttpMethod('POST');
request.setRequestHeader('Accept', 'application/json');
request.setRequestBody('{"key":"value"}');
var response = request.execute();
if(response.getStatusCode() != 201){
gs.error('Error: ' + response.getBody());
}
```Refer to the exhibit.
Transform map script:
```
(function runTransform0(source, target, map, log) {
target.setValue('short_description', source.u_summary);
target.setValue('description', source.u_description);
target.setValue('category', source.u_category);
})(source, target, map, log);
```{
"name": "incident",
"operation": "read",
"script": "gs.hasRole('admin')",
"type": "record"
}2023-01-15 10:23:45 ERROR com.glide.mid.MIDServerException: Connection to database failed: ORA-12514: TNS listener not currently aware of service requested in connect descriptor at com.glide.mid.oracle.OracleConnection.checkConnection(OracleConnection.java:56)
Refer to the exhibit.
{
"method": "GET",
"endpoint": "/api/now/table/sys_user",
"headers": {
"Accept": "application/json"
},
"queryParameters": {
"sysparm_query": "active=true^role=ITIL^sys_created_on>=javascript:gs.beginningOfLastMonth()"
}
}