Skip to content

Commit c08aaae

Browse files
Update VIP-caller-incidents.js
1 parent 688c9da commit c08aaae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Server-Side Components/Background Scripts/To check incidents having a VIP caller/VIP-caller-incidents.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
var inc = new GlideRecord('incident');
99
inc.addQuery('caller_id.vip', true); // Only VIP callers
1010
inc.query();
11-
inc.print("Incidents with VIP Callers:");
11+
gs.print("Incidents with VIP Callers:");
1212
while (inc.next()) {
1313
gs.print("Number: " + inc.number + " | Short Description: " + inc.short_description);
1414
}

0 commit comments

Comments
 (0)