-
Notifications
You must be signed in to change notification settings - Fork 1
/
ServiceNow-Engage-Problem-UpdateSet.xml
2245 lines (2132 loc) · 162 KB
/
ServiceNow-Engage-Problem-UpdateSet.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<unload unload_date="2017-12-15 21:44:49">
<sys_remote_update_set action="INSERT_OR_UPDATE">
<application display_value="xMatters">5950d7444f2231000e9fa88ca310c78c</application>
<application_name>xMatters</application_name>
<application_scope>x_xma_xmatters</application_scope>
<application_version>4.0.2</application_version>
<collisions/>
<commit_date/>
<deleted/>
<description>Engage with xMatters for Problem Management</description>
<inserted/>
<name>Engage for Problem Management</name>
<origin_sys_id/>
<release_date/>
<remote_sys_id>71b01d39db4303009bb3fabdbf96192a</remote_sys_id>
<state>loaded</state>
<summary/>
<sys_class_name>sys_remote_update_set</sys_class_name>
<sys_created_by>admin</sys_created_by>
<sys_created_on>2017-12-15 21:44:49</sys_created_on>
<sys_id>2ed05d39db4303009bb3fabdbf961979</sys_id>
<sys_mod_count>0</sys_mod_count>
<sys_updated_by>admin</sys_updated_by>
<sys_updated_on>2017-12-15 21:44:49</sys_updated_on>
<update_set display_value=""/>
<update_source display_value=""/>
<updated/>
</sys_remote_update_set>
<sys_update_xml action="INSERT_OR_UPDATE">
<action>INSERT_OR_UPDATE</action>
<application display_value="xMatters">5950d7444f2231000e9fa88ca310c78c</application>
<category>customer</category>
<comments/>
<name>sys_dictionary_x_xma_xmatters_engage_with_xmatters_problem_send_priority</name>
<payload><?xml version="1.0" encoding="UTF-8"?><record_update><sys_dictionary action="INSERT_OR_UPDATE" element="send_priority" table="x_xma_xmatters_engage_with_xmatters_problem"><active>true</active><array>false</array><array_denormalized>false</array_denormalized><attributes/><audit>false</audit><calculation><![CDATA[(function calculatedFieldValue(current) {
// Add your code here
return ''; // return the calculated value
})(current);]]></calculation><choice>3</choice><choice_field/><choice_table/><column_label>Send Priority</column_label><comments/><create_roles/><default_value>medium</default_value><defaultsort/><delete_roles/><dependent/><dependent_on_field/><display>false</display><dynamic_creation>false</dynamic_creation><dynamic_creation_script/><dynamic_default_value/><dynamic_ref_qual/><element>send_priority</element><element_reference>false</element_reference><foreign_database/><internal_type display_value="Choice">choice</internal_type><mandatory>false</mandatory><max_length>40</max_length><name>x_xma_xmatters_engage_with_xmatters_problem</name><next_element/><primary>false</primary><read_only>false</read_only><read_roles/><reference/><reference_cascade_rule/><reference_floats>false</reference_floats><reference_key/><reference_qual/><reference_qual_condition/><reference_type/><sizeclass/><spell_check>false</spell_check><staged>false</staged><sys_class_name>sys_dictionary</sys_class_name><sys_created_by>admin</sys_created_by><sys_created_on>2017-12-11 18:07:10</sys_created_on><sys_customer_update>true</sys_customer_update><sys_id>04d7bb94db0303009bb3fabdbf961976</sys_id><sys_mod_count>1</sys_mod_count><sys_name>Send Priority</sys_name><sys_package display_value="xMatters" source="x_xma_xmatters">5950d7444f2231000e9fa88ca310c78c</sys_package><sys_policy/><sys_replace_on_upgrade>false</sys_replace_on_upgrade><sys_scope display_value="xMatters">5950d7444f2231000e9fa88ca310c78c</sys_scope><sys_update_name>sys_dictionary_x_xma_xmatters_engage_with_xmatters_problem_send_priority</sys_update_name><sys_updated_by>admin</sys_updated_by><sys_updated_on>2017-12-11 18:11:39</sys_updated_on><table_reference>false</table_reference><text_index>false</text_index><unique>false</unique><use_dependent_field>false</use_dependent_field><use_dynamic_default>false</use_dynamic_default><use_reference_qualifier>simple</use_reference_qualifier><virtual>false</virtual><widget/><write_roles/><xml_view>false</xml_view></sys_dictionary></record_update></payload>
<remote_update_set display_value="Engage for Problem Management">2ed05d39db4303009bb3fabdbf961979</remote_update_set>
<replace_on_upgrade>false</replace_on_upgrade>
<sys_created_by>admin</sys_created_by>
<sys_created_on>2017-12-15 21:44:49</sys_created_on>
<sys_id>22d05d39db4303009bb3fabdbf96197c</sys_id>
<sys_mod_count>0</sys_mod_count>
<sys_updated_by>admin</sys_updated_by>
<sys_updated_on>2017-12-15 21:44:49</sys_updated_on>
<table>x_xma_xmatters_engage_with_xmatters_problem</table>
<target_name>Engage with xMatters Problem.Send Priority</target_name>
<type>Dictionary</type>
<update_domain>global</update_domain>
<update_set display_value=""/>
<view/>
</sys_update_xml>
<sys_update_xml action="INSERT_OR_UPDATE">
<action>INSERT_OR_UPDATE</action>
<application display_value="xMatters">5950d7444f2231000e9fa88ca310c78c</application>
<category>customer</category>
<comments/>
<name>sys_security_acl_aba8f3d4db0303009bb3fabdbf961972</name>
<payload><![CDATA[<?xml version="1.0" encoding="UTF-8"?><record_update table="sys_security_acl"><sys_security_acl action="INSERT_OR_UPDATE"><active>true</active><admin_overrides>true</admin_overrides><advanced>false</advanced><condition/><description>Default access control on x_xma_xmatters_engage_with_xmatters_problem</description><name>x_xma_xmatters_engage_with_xmatters_problem</name><operation display_value="write">write</operation><script/><sys_class_name>sys_security_acl</sys_class_name><sys_created_by>admin</sys_created_by><sys_created_on>2017-12-11 18:07:12</sys_created_on><sys_customer_update>true</sys_customer_update><sys_id>aba8f3d4db0303009bb3fabdbf961972</sys_id><sys_mod_count>0</sys_mod_count><sys_name>x_xma_xmatters_engage_with_xmatters_problem</sys_name><sys_package display_value="xMatters" source="x_xma_xmatters">5950d7444f2231000e9fa88ca310c78c</sys_package><sys_policy/><sys_replace_on_upgrade>false</sys_replace_on_upgrade><sys_scope display_value="xMatters">5950d7444f2231000e9fa88ca310c78c</sys_scope><sys_update_name>sys_security_acl_aba8f3d4db0303009bb3fabdbf961972</sys_update_name><sys_updated_by>admin</sys_updated_by><sys_updated_on>2017-12-11 18:07:12</sys_updated_on><type display_value="record">record</type></sys_security_acl></record_update>]]></payload>
<remote_update_set display_value="Engage for Problem Management">2ed05d39db4303009bb3fabdbf961979</remote_update_set>
<replace_on_upgrade>false</replace_on_upgrade>
<sys_created_by>admin</sys_created_by>
<sys_created_on>2017-12-15 21:44:49</sys_created_on>
<sys_id>22d05d39db4303009bb3fabdbf96197f</sys_id>
<sys_mod_count>0</sys_mod_count>
<sys_updated_by>admin</sys_updated_by>
<sys_updated_on>2017-12-15 21:44:49</sys_updated_on>
<table>x_xma_xmatters_engage_with_xmatters_problem</table>
<target_name>x_xma_xmatters_engage_with_xmatters_problem</target_name>
<type>Access Control</type>
<update_domain>global</update_domain>
<update_set display_value=""/>
<view/>
</sys_update_xml>
<sys_update_xml action="INSERT_OR_UPDATE">
<action>INSERT_OR_UPDATE</action>
<application display_value="xMatters">5950d7444f2231000e9fa88ca310c78c</application>
<category>customer</category>
<comments/>
<name>sys_dictionary_x_xma_xmatters_engage_with_xmatters_problem_message_subject</name>
<payload><?xml version="1.0" encoding="UTF-8"?><record_update><sys_dictionary action="INSERT_OR_UPDATE" element="message_subject" table="x_xma_xmatters_engage_with_xmatters_problem"><active>true</active><array>false</array><array_denormalized>false</array_denormalized><attributes/><audit>false</audit><calculation><![CDATA[(function calculatedFieldValue(current) {
// Add your code here
return ''; // return the calculated value
})(current);]]></calculation><choice/><choice_field/><choice_table/><column_label>Message Subject</column_label><comments/><create_roles/><default_value/><defaultsort/><delete_roles/><dependent/><dependent_on_field/><display>false</display><dynamic_creation>false</dynamic_creation><dynamic_creation_script/><dynamic_default_value/><dynamic_ref_qual/><element>message_subject</element><element_reference>false</element_reference><foreign_database/><internal_type display_value="String">string</internal_type><mandatory>false</mandatory><max_length>40</max_length><name>x_xma_xmatters_engage_with_xmatters_problem</name><next_element/><primary>false</primary><read_only>false</read_only><read_roles/><reference/><reference_cascade_rule/><reference_floats>false</reference_floats><reference_key/><reference_qual/><reference_qual_condition/><reference_type/><sizeclass/><spell_check>false</spell_check><staged>false</staged><sys_class_name>sys_dictionary</sys_class_name><sys_created_by>admin</sys_created_by><sys_created_on>2017-12-11 18:07:11</sys_created_on><sys_customer_update>true</sys_customer_update><sys_id>f258bf54db0303009bb3fabdbf9619b7</sys_id><sys_mod_count>0</sys_mod_count><sys_name>Message Subject</sys_name><sys_package display_value="xMatters" source="x_xma_xmatters">5950d7444f2231000e9fa88ca310c78c</sys_package><sys_policy/><sys_replace_on_upgrade>false</sys_replace_on_upgrade><sys_scope display_value="xMatters">5950d7444f2231000e9fa88ca310c78c</sys_scope><sys_update_name>sys_dictionary_x_xma_xmatters_engage_with_xmatters_problem_message_subject</sys_update_name><sys_updated_by>admin</sys_updated_by><sys_updated_on>2017-12-11 18:07:11</sys_updated_on><table_reference>false</table_reference><text_index>false</text_index><unique>false</unique><use_dependent_field>false</use_dependent_field><use_dynamic_default>false</use_dynamic_default><use_reference_qualifier>simple</use_reference_qualifier><virtual>false</virtual><widget/><write_roles/><xml_view>false</xml_view></sys_dictionary></record_update></payload>
<remote_update_set display_value="Engage for Problem Management">2ed05d39db4303009bb3fabdbf961979</remote_update_set>
<replace_on_upgrade>false</replace_on_upgrade>
<sys_created_by>admin</sys_created_by>
<sys_created_on>2017-12-15 21:44:49</sys_created_on>
<sys_id>26d05d39db4303009bb3fabdbf96197b</sys_id>
<sys_mod_count>0</sys_mod_count>
<sys_updated_by>admin</sys_updated_by>
<sys_updated_on>2017-12-15 21:44:49</sys_updated_on>
<table>x_xma_xmatters_engage_with_xmatters_problem</table>
<target_name>x_xma_xmatters_engage_with_xmatters_problem.message_subject</target_name>
<type>Dictionary</type>
<update_domain>global</update_domain>
<update_set display_value=""/>
<view/>
</sys_update_xml>
<sys_update_xml action="INSERT_OR_UPDATE">
<action>INSERT_OR_UPDATE</action>
<application display_value="xMatters">5950d7444f2231000e9fa88ca310c78c</application>
<category>customer</category>
<comments/>
<name>sys_script_include_bbd2bea0db3203009bb3fabdbf96197a</name>
<payload><?xml version="1.0" encoding="UTF-8"?><record_update table="sys_script_include"><sys_script_include action="INSERT_OR_UPDATE"><access>public</access><active>true</active><api_name>x_xma_xmatters.xMattersConfigProblem</api_name><client_callable>false</client_callable><description/><name>xMattersConfigProblem</name><script><![CDATA[gs.include("xMattersConfig");
var xMattersConfigProblem = Class.create();
// We'll extend the xMattersConfig class so that we can inherit all
// the good stuff there. We can then reference like so:
// 'SNAPI.hostname: ' + this.SNAPI.hostname
xMattersConfigProblem.prototype = Object.extend( new xMattersConfig(), {
initialize: function() {
this.ENGAGE = {
FORM: {
ENGAGE: "Engage with xMatters - Problem URL here",
CONFERENCE: "Conference - Problem URL here"
}
};
},
type: 'xMattersConfigProblem'
});
]]></script><sys_class_name>sys_script_include</sys_class_name><sys_created_by>admin</sys_created_by><sys_created_on>2017-11-29 21:26:12</sys_created_on><sys_customer_update>true</sys_customer_update><sys_id>bbd2bea0db3203009bb3fabdbf96197a</sys_id><sys_mod_count>9</sys_mod_count><sys_name>xMattersConfigProblem</sys_name><sys_package display_value="xMatters" source="x_xma_xmatters">5950d7444f2231000e9fa88ca310c78c</sys_package><sys_policy/><sys_replace_on_upgrade>false</sys_replace_on_upgrade><sys_scope display_value="xMatters">5950d7444f2231000e9fa88ca310c78c</sys_scope><sys_update_name>sys_script_include_bbd2bea0db3203009bb3fabdbf96197a</sys_update_name><sys_updated_by>admin</sys_updated_by><sys_updated_on>2017-12-15 18:31:55</sys_updated_on></sys_script_include></record_update></payload>
<remote_update_set display_value="Engage for Problem Management">2ed05d39db4303009bb3fabdbf961979</remote_update_set>
<replace_on_upgrade>false</replace_on_upgrade>
<sys_created_by>admin</sys_created_by>
<sys_created_on>2017-12-15 21:44:49</sys_created_on>
<sys_id>26d05d39db4303009bb3fabdbf96197e</sys_id>
<sys_mod_count>0</sys_mod_count>
<sys_updated_by>admin</sys_updated_by>
<sys_updated_on>2017-12-15 21:44:49</sys_updated_on>
<table/>
<target_name>xMattersConfigProblem</target_name>
<type>Script Include</type>
<update_domain>global</update_domain>
<update_set display_value=""/>
<view/>
</sys_update_xml>
<sys_update_xml action="INSERT_OR_UPDATE">
<action>INSERT_OR_UPDATE</action>
<application display_value="xMatters">5950d7444f2231000e9fa88ca310c78c</application>
<category>customer</category>
<comments/>
<name>sys_ui_section_d7f87794db0303009bb3fabdbf9619ac</name>
<payload><![CDATA[<?xml version="1.0" encoding="UTF-8"?><record_update><sys_ui_section caption="" section_id="d7f87794db0303009bb3fabdbf9619ac" sys_domain="global" table="x_xma_xmatters_engage_with_xmatters_problem" version="3" view=""><sys_ui_element action="INSERT_OR_UPDATE"><element>number</element><position>0</position><sys_created_by>admin</sys_created_by><sys_created_on>2017-12-11 19:45:47</sys_created_on><sys_id>fb3f08e0db4303009bb3fabdbf9619c5</sys_id><sys_mod_count>0</sys_mod_count><sys_ui_formatter/><sys_ui_section caption="NULL" display_value="" name="x_xma_xmatters_engage_with_xmatters_problem" sys_domain="global" view="Default view">d7f87794db0303009bb3fabdbf9619ac</sys_ui_section><sys_updated_by>admin</sys_updated_by><sys_updated_on>2017-12-11 19:45:47</sys_updated_on><sys_user/><type/></sys_ui_element><sys_ui_element action="INSERT_OR_UPDATE"><element>active</element><position>1</position><sys_created_by>admin</sys_created_by><sys_created_on>2017-12-11 19:45:47</sys_created_on><sys_id>7f3f08e0db4303009bb3fabdbf9619c5</sys_id><sys_mod_count>0</sys_mod_count><sys_ui_formatter/><sys_ui_section caption="NULL" display_value="" name="x_xma_xmatters_engage_with_xmatters_problem" sys_domain="global" view="Default view">d7f87794db0303009bb3fabdbf9619ac</sys_ui_section><sys_updated_by>admin</sys_updated_by><sys_updated_on>2017-12-11 19:45:47</sys_updated_on><sys_user/><type/></sys_ui_element><sys_ui_element action="INSERT_OR_UPDATE"><element>.split</element><position>2</position><sys_created_by>admin</sys_created_by><sys_created_on>2017-12-11 19:45:47</sys_created_on><sys_id>ff3f08e0db4303009bb3fabdbf9619c5</sys_id><sys_mod_count>0</sys_mod_count><sys_ui_formatter/><sys_ui_section caption="NULL" display_value="" name="x_xma_xmatters_engage_with_xmatters_problem" sys_domain="global" view="Default view">d7f87794db0303009bb3fabdbf9619ac</sys_ui_section><sys_updated_by>admin</sys_updated_by><sys_updated_on>2017-12-11 19:45:47</sys_updated_on><sys_user/><type>.split</type></sys_ui_element><sys_ui_element action="INSERT_OR_UPDATE"><element>send_priority</element><position>3</position><sys_created_by>admin</sys_created_by><sys_created_on>2017-12-11 19:45:47</sys_created_on><sys_id>733f08e0db4303009bb3fabdbf9619c6</sys_id><sys_mod_count>0</sys_mod_count><sys_ui_formatter/><sys_ui_section caption="NULL" display_value="" name="x_xma_xmatters_engage_with_xmatters_problem" sys_domain="global" view="Default view">d7f87794db0303009bb3fabdbf9619ac</sys_ui_section><sys_updated_by>admin</sys_updated_by><sys_updated_on>2017-12-11 19:45:47</sys_updated_on><sys_user/><type/></sys_ui_element><sys_ui_element action="INSERT_OR_UPDATE"><element>parent</element><position>4</position><sys_created_by>admin</sys_created_by><sys_created_on>2017-12-11 19:45:47</sys_created_on><sys_id>f33f08e0db4303009bb3fabdbf9619c6</sys_id><sys_mod_count>0</sys_mod_count><sys_ui_formatter/><sys_ui_section caption="NULL" display_value="" name="x_xma_xmatters_engage_with_xmatters_problem" sys_domain="global" view="Default view">d7f87794db0303009bb3fabdbf9619ac</sys_ui_section><sys_updated_by>admin</sys_updated_by><sys_updated_on>2017-12-11 19:45:47</sys_updated_on><sys_user/><type/></sys_ui_element><sys_ui_element action="INSERT_OR_UPDATE"><element>.end_split</element><position>5</position><sys_created_by>admin</sys_created_by><sys_created_on>2017-12-11 19:45:47</sys_created_on><sys_id>773f08e0db4303009bb3fabdbf9619c6</sys_id><sys_mod_count>0</sys_mod_count><sys_ui_formatter/><sys_ui_section caption="NULL" display_value="" name="x_xma_xmatters_engage_with_xmatters_problem" sys_domain="global" view="Default view">d7f87794db0303009bb3fabdbf9619ac</sys_ui_section><sys_updated_by>admin</sys_updated_by><sys_updated_on>2017-12-11 19:45:47</sys_updated_on><sys_user/><type>.end_split</type></sys_ui_element><sys_ui_element action="INSERT_OR_UPDATE"><element>message_subject</element><position>6</position><sys_created_by>admin</sys_created_by><sys_created_on>2017-12-11 19:45:47</sys_created_on><sys_id>f73f08e0db4303009bb3fabdbf9619c6</sys_id><sys_mod_count>0</sys_mod_count><sys_ui_formatter/><sys_ui_section caption="NULL" display_value="" name="x_xma_xmatters_engage_with_xmatters_problem" sys_domain="global" view="Default view">d7f87794db0303009bb3fabdbf9619ac</sys_ui_section><sys_updated_by>admin</sys_updated_by><sys_updated_on>2017-12-11 19:45:47</sys_updated_on><sys_user/><type/></sys_ui_element><sys_ui_element action="INSERT_OR_UPDATE"><element>message</element><position>7</position><sys_created_by>admin</sys_created_by><sys_created_on>2017-12-11 19:45:47</sys_created_on><sys_id>7b3f08e0db4303009bb3fabdbf9619c6</sys_id><sys_mod_count>0</sys_mod_count><sys_ui_formatter/><sys_ui_section caption="NULL" display_value="" name="x_xma_xmatters_engage_with_xmatters_problem" sys_domain="global" view="Default view">d7f87794db0303009bb3fabdbf9619ac</sys_ui_section><sys_updated_by>admin</sys_updated_by><sys_updated_on>2017-12-11 19:45:47</sys_updated_on><sys_user/><type/></sys_ui_element><sys_ui_element action="INSERT_OR_UPDATE"><element>parent_incident</element><position>8</position><sys_created_by>admin</sys_created_by><sys_created_on>2017-12-12 18:19:45</sys_created_on><sys_id>55254974db0303009bb3fabdbf961965</sys_id><sys_mod_count>0</sys_mod_count><sys_ui_formatter/><sys_ui_section caption="NULL" display_value="" name="x_xma_xmatters_engage_with_xmatters_problem" sys_domain="global" view="Default view">d7f87794db0303009bb3fabdbf9619ac</sys_ui_section><sys_updated_by>admin</sys_updated_by><sys_updated_on>2017-12-12 18:19:45</sys_updated_on><sys_user/><type/></sys_ui_element><sys_ui_section action="INSERT_OR_UPDATE"><caption/><header>false</header><name>x_xma_xmatters_engage_with_xmatters_problem</name><roles/><sys_class_name>sys_ui_section</sys_class_name><sys_created_by>admin</sys_created_by><sys_created_on>2017-12-11 18:08:33</sys_created_on><sys_customer_update>true</sys_customer_update><sys_domain>global</sys_domain><sys_domain_path>/</sys_domain_path><sys_id>d7f87794db0303009bb3fabdbf9619ac</sys_id><sys_mod_count>0</sys_mod_count><sys_name>x_xma_xmatters_engage_with_xmatters_problem</sys_name><sys_overrides/><sys_package display_value="xMatters" source="x_xma_xmatters">5950d7444f2231000e9fa88ca310c78c</sys_package><sys_policy/><sys_replace_on_upgrade>false</sys_replace_on_upgrade><sys_scope display_value="xMatters">5950d7444f2231000e9fa88ca310c78c</sys_scope><sys_update_name>sys_ui_section_d7f87794db0303009bb3fabdbf9619ac</sys_update_name><sys_updated_by>admin</sys_updated_by><sys_updated_on>2017-12-11 18:08:33</sys_updated_on><sys_user/><title>true</title><view display_value="Default view" name="NULL">Default view</view><view_name/></sys_ui_section></sys_ui_section></record_update>]]></payload>
<remote_update_set display_value="Engage for Problem Management">2ed05d39db4303009bb3fabdbf961979</remote_update_set>
<replace_on_upgrade>false</replace_on_upgrade>
<sys_created_by>admin</sys_created_by>
<sys_created_on>2017-12-15 21:44:49</sys_created_on>
<sys_id>26d05d39db4303009bb3fabdbf961981</sys_id>
<sys_mod_count>0</sys_mod_count>
<sys_updated_by>admin</sys_updated_by>
<sys_updated_on>2017-12-15 21:44:49</sys_updated_on>
<table>x_xma_xmatters_engage_with_xmatters_problem</table>
<target_name>Engage with xMatters Problem</target_name>
<type>Form Layout</type>
<update_domain>global</update_domain>
<update_set display_value=""/>
<view/>
</sys_update_xml>
<sys_update_xml action="INSERT_OR_UPDATE">
<action>INSERT_OR_UPDATE</action>
<application display_value="xMatters">5950d7444f2231000e9fa88ca310c78c</application>
<category>customer</category>
<comments/>
<name>sys_choice_x_xma_xmatters_engage_with_xmatters_problem_send_priority</name>
<payload><![CDATA[<?xml version="1.0" encoding="UTF-8"?><record_update><sys_choice action="INSERT_OR_UPDATE" field="send_priority" table="x_xma_xmatters_engage_with_xmatters_problem" version="3"><sys_choice action="INSERT_OR_UPDATE"><dependent_value/><element>send_priority</element><hint/><inactive>false</inactive><label>high</label><language>en</language><name>x_xma_xmatters_engage_with_xmatters_problem</name><sequence/><sys_created_by>admin</sys_created_by><sys_created_on>2017-12-11 18:12:17</sys_created_on><sys_domain>global</sys_domain><sys_domain_path>/</sys_domain_path><sys_id>41d9fbd4db0303009bb3fabdbf961955</sys_id><sys_mod_count>1</sys_mod_count><sys_updated_by>admin</sys_updated_by><sys_updated_on>2017-12-11 18:12:20</sys_updated_on><value>high</value></sys_choice><sys_choice action="INSERT_OR_UPDATE"><dependent_value/><element>send_priority</element><hint/><inactive>false</inactive><label>low</label><language>en</language><name>x_xma_xmatters_engage_with_xmatters_problem</name><sequence/><sys_created_by>admin</sys_created_by><sys_created_on>2017-12-11 18:11:54</sys_created_on><sys_domain>global</sys_domain><sys_domain_path>/</sys_domain_path><sys_id>9cc9bfd4db0303009bb3fabdbf96193d</sys_id><sys_mod_count>2</sys_mod_count><sys_updated_by>admin</sys_updated_by><sys_updated_on>2017-12-11 18:12:08</sys_updated_on><value>low</value></sys_choice><sys_choice action="INSERT_OR_UPDATE"><dependent_value/><element>send_priority</element><hint/><inactive>false</inactive><label>medium</label><language>en</language><name>x_xma_xmatters_engage_with_xmatters_problem</name><sequence/><sys_created_by>admin</sys_created_by><sys_created_on>2017-12-11 18:12:12</sys_created_on><sys_domain>global</sys_domain><sys_domain_path>/</sys_domain_path><sys_id>d1c93fd4db0303009bb3fabdbf961993</sys_id><sys_mod_count>1</sys_mod_count><sys_updated_by>admin</sys_updated_by><sys_updated_on>2017-12-11 18:12:14</sys_updated_on><value>medium</value></sys_choice><sys_choice_set action="INSERT_OR_UPDATE"><element>send_priority</element><name>x_xma_xmatters_engage_with_xmatters_problem</name><sys_class_name>sys_choice_set</sys_class_name><sys_created_by>admin</sys_created_by><sys_created_on>2017-12-11 18:11:54</sys_created_on><sys_customer_update>false</sys_customer_update><sys_id>18c9bfd4db0303009bb3fabdbf96193f</sys_id><sys_mod_count>6</sys_mod_count><sys_name>send_priority</sys_name><sys_package display_value="xMatters" source="x_xma_xmatters">5950d7444f2231000e9fa88ca310c78c</sys_package><sys_policy/><sys_replace_on_upgrade>false</sys_replace_on_upgrade><sys_scope display_value="xMatters">5950d7444f2231000e9fa88ca310c78c</sys_scope><sys_update_name>sys_choice_x_xma_xmatters_engage_with_xmatters_problem_send_priority</sys_update_name><sys_updated_by>admin</sys_updated_by><sys_updated_on>2017-12-11 18:12:17</sys_updated_on></sys_choice_set></sys_choice></record_update>]]></payload>
<remote_update_set display_value="Engage for Problem Management">2ed05d39db4303009bb3fabdbf961979</remote_update_set>
<replace_on_upgrade>false</replace_on_upgrade>
<sys_created_by>admin</sys_created_by>
<sys_created_on>2017-12-15 21:44:49</sys_created_on>
<sys_id>2ad05d39db4303009bb3fabdbf96197a</sys_id>
<sys_mod_count>0</sys_mod_count>
<sys_updated_by>admin</sys_updated_by>
<sys_updated_on>2017-12-15 21:44:49</sys_updated_on>
<table>x_xma_xmatters_engage_with_xmatters_problem</table>
<target_name>Engage with xMatters Problem.Send Priority</target_name>
<type>Choice list</type>
<update_domain>global</update_domain>
<update_set display_value=""/>
<view/>
</sys_update_xml>
<sys_update_xml action="INSERT_OR_UPDATE">
<action>INSERT_OR_UPDATE</action>
<application display_value="xMatters">5950d7444f2231000e9fa88ca310c78c</application>
<category>customer</category>
<comments/>
<name>sys_number_cc8e40e0db4303009bb3fabdbf9619b0</name>
<payload><![CDATA[<?xml version="1.0" encoding="UTF-8"?><record_update table="sys_number"><sys_number action="INSERT_OR_UPDATE"><category display_value="" name="x_xma_xmatters_engage_with_xmatters_problem">x_xma_xmatters_engage_with_xmatters_problem</category><maximum_digits>7</maximum_digits><number>1000</number><prefix>XMP</prefix><sys_class_name>sys_number</sys_class_name><sys_created_by>admin</sys_created_by><sys_created_on>2017-12-11 19:42:32</sys_created_on><sys_customer_update>true</sys_customer_update><sys_id>cc8e40e0db4303009bb3fabdbf9619b0</sys_id><sys_mod_count>0</sys_mod_count><sys_name>XMP</sys_name><sys_package display_value="xMatters" source="x_xma_xmatters">5950d7444f2231000e9fa88ca310c78c</sys_package><sys_policy/><sys_replace_on_upgrade>false</sys_replace_on_upgrade><sys_scope display_value="xMatters">5950d7444f2231000e9fa88ca310c78c</sys_scope><sys_update_name>sys_number_cc8e40e0db4303009bb3fabdbf9619b0</sys_update_name><sys_updated_by>admin</sys_updated_by><sys_updated_on>2017-12-11 19:42:32</sys_updated_on></sys_number></record_update>]]></payload>
<remote_update_set display_value="Engage for Problem Management">2ed05d39db4303009bb3fabdbf961979</remote_update_set>
<replace_on_upgrade>false</replace_on_upgrade>
<sys_created_by>admin</sys_created_by>
<sys_created_on>2017-12-15 21:44:49</sys_created_on>
<sys_id>2ad05d39db4303009bb3fabdbf96197d</sys_id>
<sys_mod_count>0</sys_mod_count>
<sys_updated_by>admin</sys_updated_by>
<sys_updated_on>2017-12-15 21:44:49</sys_updated_on>
<table/>
<target_name>XMP</target_name>
<type>Number</type>
<update_domain>global</update_domain>
<update_set display_value=""/>
<view/>
</sys_update_xml>
<sys_update_xml action="INSERT_OR_UPDATE">
<action>INSERT_OR_UPDATE</action>
<application display_value="xMatters">5950d7444f2231000e9fa88ca310c78c</application>
<category>customer</category>
<comments/>
<name>sys_ui_page_c4d5fb54db0303009bb3fabdbf96194a</name>
<payload><?xml version="1.0" encoding="UTF-8"?><record_update table="sys_ui_page"><sys_ui_page action="INSERT_OR_UPDATE"><category>general</category><client_script/><description/><direct>false</direct><endpoint>x_xma_xmatters_xm_engage_with_xmatters_problem_content.do</endpoint><html><![CDATA[<?xml version="1.0" encoding="utf-8" ?>
<j:jelly trim="false" xmlns:j="jelly:core" xmlns:g="glide" xmlns:j2="null" xmlns:g2="null">
<script src="x_xma_xmatters.angular.min.jsdbx"></script>
<script src="x_xma_xmatters.angular-ui-bootstrap.min.jsdbx"></script>
<script src="x_xma_xmatters.xm_app_engage_xmatters_pr.jsdbx"></script>
<script src="x_xma_xmatters.angular.translate.min.jsdbx"></script>
<script src="x_xma_xmatters.xm_mod_glide_ajax.jsdbx"></script>
<script src="x_xma_xmatters.xm_mod_xmatters_service.jsdbx"></script>
<script src="x_xma_xmatters.xm_mod_location_service.jsdbx"></script>
<script src="x_xma_xmatters.xm_mod_options_provider.jsdbx"></script>
<script src="x_xma_xmatters.ng-tags-input.min.jsdbx"></script>
<script src="x_xma_xmatters.xm_recipient_template.jsdbx"></script>
<script src="x_xma_xmatters.moment.min.jsdbx"></script>
<link href="//netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.css" rel="stylesheet"></link>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous"></link>
<style>
body {
font-family: SourceSansPro-Regular, SourceSansPro, "Helvetica Neue", Arial;
padding-top: 0;
}
.xm-label {
font-size: 13px;
font-weight: normal;
}
input.xm-tracked.ng-dirty, textarea.xm-tracked.ng-dirty {
border: 1px orange solid;
}
form.ng-submitted input.ng-invalid, form.ng-submitted textarea.ng-invalid {
border: 1px red solid;
}
a.xm-help {
margin-left: 5px;
display: inline-block !important;
}
.ng-dirty .tags {
/**border-color: orange; **/
}
.xm-tags-input-group .input-group-btn .btn {
height: 34px;
}
.tags {
border: 1px solid #ccc !important;
}
form.ng-submitted .ng-invalid .tags {
border-color: red !important;
}
tags-input .tags {
box-shadow: none !important;
}
tags-input .tags .tag-item {
background: #445465;
border: 0;
}
tags-input .tags .tag-item .remove-button {
color: white;
}
tags-input .tags .tag-item .remove-button:hover {
color: #bec1c6;;
}
tags-input .tags .tag-item.selected {
background-color: #ae1b1f;
}
.xm-input-group-btn {
background-color: #f6f6f6;
border: solid 1px #cccccc;
width: 106px;
}
.xm-left {
float: left;
}
.xm-right {
float: right;
}
.xm-tag-feedback {
right: 10px;
}
.xm-error {
color: red;
font-size: 13px;
}
.xm-btn-default, .xm-btn-default:focus, .xm-btn-default:hover {
font-family: SourceSansPro-Regular, SourceSansPro, "Helvetica Neue", Arial;
color: #343d47;
background-color: rgba(255, 255, 255, 0.45);
border-color: #bdc0c4;
}
tags-input .tags .tag-item {
font-family: SourceSansPro-Regular, SourceSansPro, "Helvetica Neue", Arial;
}
tags-input .tags .input {
font-family: SourceSansPro-Regular, SourceSansPro, "Helvetica Neue", Arial;
}
tags-input .autocomplete .suggestion-item {
font-family: SourceSansPro-Regular, SourceSansPro, "Helvetica Neue", Arial;
}
h4.xm-header {
font-size: 21px;
font-weight: normal;
margin-top: 0;
}
.xm-left-icon {
margin-right: 5px;
}
.xm-right-icon {
margin-left: 0;
}
.xm-right-icon .remove-button .fa {
font-size: 14px;
vertical-align: text-top;
}
.form-control-feedback .fa {
color: rgb(52, 61, 71);
}
.xm-success-message {
max-width: 80%;
min-width: 375px;
padding: 0 40px;
}
.xm-cancel-button {
margin-left: 15px;
}
</style>
<div id="engage" ng-app="xm.engage-xm" class="container-fluid" ng-cloak="">
<div ng-controller="engageCtlr">
<div class="panel" ng-show="!is_finished">
<h4 class="xm-header">{{ 'ENGAGE_XM.TITLE' | translate }}</h4>
<form name="engageXMForm" novalidate="">
<div class="row">
<div class="form-group col-md-12 has-feedback" ng-class="engageXMForm.recipients.$error.required ? 'is-required' : 'is-filled'">
<span class="required-marker" ></span>
<label class="xm-label">{{ 'ENGAGE_XM.LABEL.RECIPIENTS' | translate }}</label>
<div class="input-group xm-tags-input-group">
<span class="input-group-btn">
<button type="button" class="btn btn-secondary xm-input-group-btn dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<span class="xm-left">{{ activeRecipientType.label | translate }}</span>
<span class="xm-right">
<i class="fa fa-chevron-down"></i>
</span>
</button>
<ul class="dropdown-menu">
<li ng-repeat="rType in recipientTypes">
<a href="#" ng-click="selectRecipientType( $index )">{{ rType.label | translate }}</a>
</li>
</ul>
</span>
<tags-input ng-model="recipients" id="recipients" name="recipients" required="required" template="x_xma_xmatters_xm_engage_recipient_template.do?sysparm_nostack=true">
<auto-complete source="activeRecipientType.typeahead($query)"></auto-complete>
</tags-input>
</div>
<span class="form-control-feedback xm-tag-feedback" ng-show="xm_search_state.isSearching">
<i class="fa fa-spinner fa-spin fa-fw"></i>
</span>
<div class="xm-error" ng-messages="engageXMForm.recipients.$error" ng-show="engageXMForm.$submitted">
<div ng-message="required">{{ 'ENGAGE_XM.ERROR.REQUIRED' | translate }}</div>
</div>
</div>
</div>
<div class="row">
<div class="form-group col-sm-6" ng-class="engageXMForm.send_priority.$error.required ? 'is-required' : 'is-filled'">
<span class="required-marker" ></span>
<label class="xm-label">{{ 'ENGAGE_XM.LABEL.SEND_PRIORITY' | translate }}</label>
<select class="form-control" ng-model="send_priority" id="send_priority" name="send_priority">
<option ng-repeat="priorityOpt in send_priority_options" value="{{priorityOpt.value}}" required="required">{{ priorityOpt.label | translate }}</option>
</select>
<div class="xm-error" ng-messages="engageXMForm.send_priority.$error" ng-show="engageXMForm.$submitted">
<div ng-message="required">{{ 'ENGAGE_XM.ERROR.REQUIRED' | translate }}</div>
</div>
</div>
<div class="form-group col-sm-6">
<label class="xm-label">{{ 'ENGAGE_XM.LABEL.CONFERENCE_BRIDGE' | translate }}</label>
<select class="form-control" ng-model="conference_bridge">
<option value="None">{{ 'ENGAGE_XM.OPTIONS.CONFERENCE_BRIDGE.None' | translate }}</option>
<optgroup label="{{ 'ENGAGE_XM.OPTIONS.CONFERENCE_BRIDGE.Hosted_Category' | translate }}">
<option ng-repeat="bridgeOpt in hosted_conference_bridge_options" value="{{bridgeOpt.value}}">{{ bridgeOpt.label | translate }}</option>
</optgroup>
<optgroup label="{{ 'ENGAGE_XM.OPTIONS.CONFERENCE_BRIDGE.External_Category' | translate }}" ng-if="external_conference_bridge_options.length > 0">
<option ng-repeat="bridgeOpt in external_conference_bridge_options" value="{{bridgeOpt.value}}">{{ bridgeOpt.label | translate }}</option>
</optgroup>
</select>
</div>
</div>
<div class="row">
<div class="form-group col-md-12" ng-class="engageXMForm.subject.$error.required ? 'is-required' : 'is-filled'">
<span class="required-marker" ></span>
<label class="xm-label">{{ 'ENGAGE_XM.LABEL.SUBJECT' | translate }}</label>
<input type="text" class="form-control" ng-model="subject" id="subject" name="subject" required="required" ng-maxlength="200" />
<div class="xm-error" ng-messages="engageXMForm.subject.$error" ng-show="engageXMForm.$submitted">
<div ng-message="required">{{ 'ENGAGE_XM.ERROR.REQUIRED' | translate }}</div>
<div ng-message="maxlength">{{ 'ENGAGE_XM.ERROR.MAX_LENGTH' | translate:'{ max_length: 200 }' }}</div>
</div>
</div>
</div>
<div class="row">
<div class="form-group col-md-12" ng-class="engageXMForm.message.$error.required ? 'is-required' : 'is-filled'">
<span class="required-marker" ></span>
<label class="xm-label">{{ 'ENGAGE_XM.LABEL.MESSAGE' | translate }}</label>
<textarea class="form-control" ng-model="message" id="message" name="message" required="required" ng-maxlength="2000" />
<div class="xm-error" ng-messages="engageXMForm.message.$error" ng-show="engageXMForm.$submitted">
<div ng-message="required">{{ 'ENGAGE_XM.ERROR.REQUIRED' | translate }}</div>
<div ng-message="maxlength">{{ 'ENGAGE_XM.ERROR.MAX_LENGTH' | translate:'{ max_length: 2000 }' }}</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<button class="btn btn-default xm-btn-default" ng-click="submit()">{{ 'ENGAGE_XM.BUTTON.SUBMIT' | translate }}</button>
<button class="btn btn-default xm-btn-default xm-cancel-button" type="button" ng-click="cancel()">{{ 'ENGAGE_XM.BUTTON.CANCEL' | translate }}</button>
</div>
</div>
</form>
</div>
<div class="panel" ng-if="is_finished">
<h4 class="xm-header">{{ 'ENGAGE_XM.TITLE' | translate }}</h4>
<div class="row">
<div class="col-md-8 xm-success-message">
<p>{{ 'ENGAGE_XM.MESSAGE.SUCCESS' | translate }}</p>
</div>
</div>
<a href="{{engage_url}}" target="_top" class="btn btn-default xm-btn-default">{{ 'ENGAGE_XM.BUTTON.VIEW_RECORD' | translate }}</a>
</div>
</div>
</div>
</j:jelly>]]></html><name>xm_engage_with_xmatters_problem_content</name><processing_script/><sys_class_name>sys_ui_page</sys_class_name><sys_created_by>admin</sys_created_by><sys_created_on>2017-12-11 17:55:45</sys_created_on><sys_customer_update>true</sys_customer_update><sys_id>c4d5fb54db0303009bb3fabdbf96194a</sys_id><sys_mod_count>6</sys_mod_count><sys_name>xm_engage_with_xmatters_problem_content</sys_name><sys_package display_value="xMatters" source="x_xma_xmatters">5950d7444f2231000e9fa88ca310c78c</sys_package><sys_policy/><sys_replace_on_upgrade>false</sys_replace_on_upgrade><sys_scope display_value="xMatters">5950d7444f2231000e9fa88ca310c78c</sys_scope><sys_update_name>sys_ui_page_c4d5fb54db0303009bb3fabdbf96194a</sys_update_name><sys_updated_by>admin</sys_updated_by><sys_updated_on>2017-12-15 18:03:43</sys_updated_on></sys_ui_page></record_update></payload>
<remote_update_set display_value="Engage for Problem Management">2ed05d39db4303009bb3fabdbf961979</remote_update_set>
<replace_on_upgrade>false</replace_on_upgrade>
<sys_created_by>admin</sys_created_by>
<sys_created_on>2017-12-15 21:44:49</sys_created_on>
<sys_id>2ad05d39db4303009bb3fabdbf961980</sys_id>
<sys_mod_count>0</sys_mod_count>
<sys_updated_by>admin</sys_updated_by>
<sys_updated_on>2017-12-15 21:44:49</sys_updated_on>
<table/>
<target_name>xm_engage_with_xmatters_problem_content</target_name>
<type>UI Page</type>
<update_domain>global</update_domain>
<update_set display_value=""/>
<view/>
</sys_update_xml>
<sys_update_xml action="INSERT_OR_UPDATE">
<action>DELETE</action>
<application display_value="xMatters">5950d7444f2231000e9fa88ca310c78c</application>
<category>customer</category>
<comments/>
<name>sys_documentation_x_xma_xmatters_engage_with_xmatters_problem_parent_incident_en</name>
<payload><![CDATA[<?xml version="1.0" encoding="UTF-8"?><record_update><sys_documentation action="DELETE" element="parent_incident" label="Parent Incident" language="en" table="x_xma_xmatters_engage_with_xmatters_problem"><sys_documentation action="DELETE"><element>parent_incident</element><help/><hint/><label>Parent Incident</label><language>en</language><name>x_xma_xmatters_engage_with_xmatters_problem</name><plural>Parent Incidents</plural><sys_class_name>sys_documentation</sys_class_name><sys_created_by>admin</sys_created_by><sys_created_on>2017-12-12 18:19:46</sys_created_on><sys_customer_update>true</sys_customer_update><sys_id>65254974db0303009bb3fabdbf96196e</sys_id><sys_mod_count>0</sys_mod_count><sys_name>Parent Incident</sys_name><sys_package display_value="xMatters" source="x_xma_xmatters">5950d7444f2231000e9fa88ca310c78c</sys_package><sys_policy/><sys_replace_on_upgrade>false</sys_replace_on_upgrade><sys_scope display_value="xMatters">5950d7444f2231000e9fa88ca310c78c</sys_scope><sys_update_name>sys_documentation_x_xma_xmatters_engage_with_xmatters_problem_parent_incident_en</sys_update_name><sys_updated_by>admin</sys_updated_by><sys_updated_on>2017-12-12 18:19:46</sys_updated_on><url/><url_target/></sys_documentation></sys_documentation></record_update>]]></payload>
<remote_update_set display_value="Engage for Problem Management">2ed05d39db4303009bb3fabdbf961979</remote_update_set>
<replace_on_upgrade>false</replace_on_upgrade>
<sys_created_by>admin</sys_created_by>
<sys_created_on>2017-12-15 21:44:49</sys_created_on>
<sys_id>2ed05d39db4303009bb3fabdbf96197c</sys_id>
<sys_mod_count>0</sys_mod_count>
<sys_updated_by>admin</sys_updated_by>
<sys_updated_on>2017-12-15 21:44:49</sys_updated_on>
<table>x_xma_xmatters_engage_with_xmatters_problem</table>
<target_name>Engage with xMatters Problem.parent_incident</target_name>
<type>Field Label</type>
<update_domain>global</update_domain>
<update_set display_value=""/>
<view/>
</sys_update_xml>
<sys_update_xml action="INSERT_OR_UPDATE">
<action>INSERT_OR_UPDATE</action>
<application display_value="xMatters">5950d7444f2231000e9fa88ca310c78c</application>
<category>customer</category>
<comments/>
<name>sys_security_acl_role_6fa8f3d4db0303009bb3fabdbf96197a</name>
<payload><![CDATA[<?xml version="1.0" encoding="UTF-8"?><record_update table="sys_security_acl_role"><sys_security_acl_role action="INSERT_OR_UPDATE"><sys_class_name>sys_security_acl_role</sys_class_name><sys_created_by>admin</sys_created_by><sys_created_on>2017-12-11 18:07:12</sys_created_on><sys_customer_update>true</sys_customer_update><sys_id>6fa8f3d4db0303009bb3fabdbf96197a</sys_id><sys_mod_count>0</sys_mod_count><sys_name>x_xma_xmatters_engage_with_xmatters_problem.x_xma_xmatters.engage_with_xmatters_problem_user</sys_name><sys_package display_value="xMatters" source="x_xma_xmatters">5950d7444f2231000e9fa88ca310c78c</sys_package><sys_policy/><sys_replace_on_upgrade>false</sys_replace_on_upgrade><sys_scope display_value="xMatters">5950d7444f2231000e9fa88ca310c78c</sys_scope><sys_security_acl display_value="x_xma_xmatters_engage_with_xmatters_problem">a3a8f3d4db0303009bb3fabdbf961978</sys_security_acl><sys_update_name>sys_security_acl_role_6fa8f3d4db0303009bb3fabdbf96197a</sys_update_name><sys_updated_by>admin</sys_updated_by><sys_updated_on>2017-12-11 18:07:12</sys_updated_on><sys_user_role display_value="x_xma_xmatters.engage_with_xmatters_problem_user" name="x_xma_xmatters.engage_with_xmatters_problem_user">9ba8f3d4db0303009bb3fabdbf96192d</sys_user_role><transaction_id/></sys_security_acl_role></record_update>]]></payload>
<remote_update_set display_value="Engage for Problem Management">2ed05d39db4303009bb3fabdbf961979</remote_update_set>
<replace_on_upgrade>false</replace_on_upgrade>
<sys_created_by>admin</sys_created_by>
<sys_created_on>2017-12-15 21:44:49</sys_created_on>
<sys_id>2ed05d39db4303009bb3fabdbf96197f</sys_id>
<sys_mod_count>0</sys_mod_count>
<sys_updated_by>admin</sys_updated_by>
<sys_updated_on>2017-12-15 21:44:49</sys_updated_on>
<table>x_xma_xmatters_engage_with_xmatters_problem</table>
<target_name>x_xma_xmatters_engage_with_xmatters_problem.x_xma_xmatters.engage_with_xmatters_problem_user</target_name>
<type>Access Roles</type>
<update_domain>global</update_domain>
<update_set display_value=""/>
<view/>
</sys_update_xml>
<sys_update_xml action="INSERT_OR_UPDATE">
<action>INSERT_OR_UPDATE</action>
<application display_value="xMatters">5950d7444f2231000e9fa88ca310c78c</application>
<category>customer</category>
<comments/>
<name>sys_dictionary_x_xma_xmatters_engage_with_xmatters_problem_message</name>
<payload><?xml version="1.0" encoding="UTF-8"?><record_update><sys_dictionary action="INSERT_OR_UPDATE" element="message" table="x_xma_xmatters_engage_with_xmatters_problem"><active>true</active><array>false</array><array_denormalized>false</array_denormalized><attributes/><audit>false</audit><calculation><![CDATA[(function calculatedFieldValue(current) {
// Add your code here
return ''; // return the calculated value
})(current);]]></calculation><choice/><choice_field/><choice_table/><column_label>Message</column_label><comments/><create_roles/><default_value/><defaultsort/><delete_roles/><dependent/><dependent_on_field/><display>false</display><dynamic_creation>false</dynamic_creation><dynamic_creation_script/><dynamic_default_value/><dynamic_ref_qual/><element>message</element><element_reference>false</element_reference><foreign_database/><internal_type display_value="String">string</internal_type><mandatory>false</mandatory><max_length>40</max_length><name>x_xma_xmatters_engage_with_xmatters_problem</name><next_element/><primary>false</primary><read_only>false</read_only><read_roles/><reference/><reference_cascade_rule/><reference_floats>false</reference_floats><reference_key/><reference_qual/><reference_qual_condition/><reference_type/><sizeclass/><spell_check>false</spell_check><staged>false</staged><sys_class_name>sys_dictionary</sys_class_name><sys_created_by>admin</sys_created_by><sys_created_on>2017-12-11 18:07:11</sys_created_on><sys_customer_update>true</sys_customer_update><sys_id>ca6873d4db0303009bb3fabdbf96191a</sys_id><sys_mod_count>0</sys_mod_count><sys_name>Message</sys_name><sys_package display_value="xMatters" source="x_xma_xmatters">5950d7444f2231000e9fa88ca310c78c</sys_package><sys_policy/><sys_replace_on_upgrade>false</sys_replace_on_upgrade><sys_scope display_value="xMatters">5950d7444f2231000e9fa88ca310c78c</sys_scope><sys_update_name>sys_dictionary_x_xma_xmatters_engage_with_xmatters_problem_message</sys_update_name><sys_updated_by>admin</sys_updated_by><sys_updated_on>2017-12-11 18:07:11</sys_updated_on><table_reference>false</table_reference><text_index>false</text_index><unique>false</unique><use_dependent_field>false</use_dependent_field><use_dynamic_default>false</use_dynamic_default><use_reference_qualifier>simple</use_reference_qualifier><virtual>false</virtual><widget/><write_roles/><xml_view>false</xml_view></sys_dictionary></record_update></payload>
<remote_update_set display_value="Engage for Problem Management">2ed05d39db4303009bb3fabdbf961979</remote_update_set>
<replace_on_upgrade>false</replace_on_upgrade>
<sys_created_by>admin</sys_created_by>
<sys_created_on>2017-12-15 21:44:49</sys_created_on>
<sys_id>62d05d39db4303009bb3fabdbf96197b</sys_id>
<sys_mod_count>0</sys_mod_count>
<sys_updated_by>admin</sys_updated_by>
<sys_updated_on>2017-12-15 21:44:49</sys_updated_on>
<table>x_xma_xmatters_engage_with_xmatters_problem</table>
<target_name>x_xma_xmatters_engage_with_xmatters_problem.message</target_name>
<type>Dictionary</type>
<update_domain>global</update_domain>
<update_set display_value=""/>
<view/>
</sys_update_xml>
<sys_update_xml action="INSERT_OR_UPDATE">
<action>INSERT_OR_UPDATE</action>
<application display_value="xMatters">5950d7444f2231000e9fa88ca310c78c</application>
<category>customer</category>
<comments/>
<name>sys_script_include_9c63fe64db3203009bb3fabdbf96195c</name>
<payload><?xml version="1.0" encoding="UTF-8"?><record_update table="sys_script_include"><sys_script_include action="INSERT_OR_UPDATE"><access>public</access><active>true</active><api_name>x_xma_xmatters.xMattersEventProblem</api_name><client_callable>false</client_callable><description/><name>xMattersEventProblem</name><script><![CDATA[gs.include( 'xMattersEvent' );
var xMattersEventProblem = Class.create();
xMattersEventProblem.prototype = Object.extend( new xMattersEvent(), {
initialize: function( config, dataHelper ) {
// The parent xMatterEvent initialize gets called
// before this child one, so we are confident in
// overwritting any values set in there.
if( config )
this.config = config;
if( dataHelper )
this.dataHelper = dataHelper;
this.conferenceBridge = null;
},
/**
* Convenience method for adding all fields from an incident to the event with the "inc__" prefix
* @param {GlideRecord[rec]} rec The glide record to pull values from.
*/
addAllTableProperties: function( rec ) {
this.log.debug('Adding all fields' );
var fields = new GlideRecord( 'sys_dictionary' );
fields.addEncodedQuery('name=task^ORname=' + rec.getRecordClassName() );
fields.query();
var count = 0;
while( fields.next() ) {
var fieldName = fields.element;
// this.log.debug('Trying to add ' + fieldName );
this.addProperty( fieldName, rec.getElement( fieldName ) );
count++;
}
},
setConferenceBridge: function( bridgeInfo ) {
this.conferenceBridge = bridgeInfo;
},
/**
* Safely adds the target name to the list of recipients for the event
* @param {string} targetName The recipient's target name
*/
addRecipient: function( id ) {
if( typeof id !== 'string' || id.trim() === '' ) {
this.log.debug('addRecipient: Skipping invalid target: ' + id);
} else {
this.recipients.push( { "id": id } );
}
},
/**
* Convenience method for getting the post body of the Event
* @return {object} The JSON body of the xmEvent POST request
*/
getEventBody: function() {
var body = {
"properties" : this.properties,
"priority" : this.priority
};
if( this.recipients.length > 0 ) {
body.recipients = this.recipients;
}
if( this.conferenceBridge ) {
body.conference = this.conferenceBridge;
}
if( this.callbacks.length > 0 ) {
body.callbacks = this.callbacks;
}
if( this.responses.length > 0 ) {
body.responses = this.responses;
}
this.log.debug('getEventBody: Prepared event body: ' + this.json.encode( body ));
return body;
},
type: 'xMattersEventProblem'
});]]></script><sys_class_name>sys_script_include</sys_class_name><sys_created_by>admin</sys_created_by><sys_created_on>2017-11-29 21:28:02</sys_created_on><sys_customer_update>true</sys_customer_update><sys_id>9c63fe64db3203009bb3fabdbf96195c</sys_id><sys_mod_count>5</sys_mod_count><sys_name>xMattersEventProblem</sys_name><sys_package display_value="xMatters" source="x_xma_xmatters">5950d7444f2231000e9fa88ca310c78c</sys_package><sys_policy/><sys_replace_on_upgrade>false</sys_replace_on_upgrade><sys_scope display_value="xMatters">5950d7444f2231000e9fa88ca310c78c</sys_scope><sys_update_name>sys_script_include_9c63fe64db3203009bb3fabdbf96195c</sys_update_name><sys_updated_by>admin</sys_updated_by><sys_updated_on>2017-12-15 19:15:27</sys_updated_on></sys_script_include></record_update></payload>
<remote_update_set display_value="Engage for Problem Management">2ed05d39db4303009bb3fabdbf961979</remote_update_set>
<replace_on_upgrade>false</replace_on_upgrade>
<sys_created_by>admin</sys_created_by>
<sys_created_on>2017-12-15 21:44:49</sys_created_on>
<sys_id>62d05d39db4303009bb3fabdbf96197e</sys_id>
<sys_mod_count>0</sys_mod_count>
<sys_updated_by>admin</sys_updated_by>
<sys_updated_on>2017-12-15 21:44:49</sys_updated_on>
<table/>
<target_name>xMattersEventProblem</target_name>
<type>Script Include</type>
<update_domain>global</update_domain>
<update_set display_value=""/>
<view/>
</sys_update_xml>
<sys_update_xml action="INSERT_OR_UPDATE">
<action>INSERT_OR_UPDATE</action>
<application display_value="xMatters">5950d7444f2231000e9fa88ca310c78c</application>
<category>customer</category>
<comments/>
<name>sys_ui_script_e4c0f8824f6c220078bae321a310c7b6</name>
<payload><?xml version="1.0" encoding="UTF-8"?><record_update table="sys_ui_script"><sys_ui_script action="INSERT_OR_UPDATE"><active>true</active><description/><global>false</global><name>x_xma_xmatters.xm_app_engage_xmatters</name><script><![CDATA[var engageApp = angular.module('xm.engage-xm', [ 'ngTagsInput', 'ngMessages', 'pascalprecht.translate', 'xm.xmatters-service', 'xm.location-service', 'xm.options-provider', 'xm.glide-ajax' ]);
// Global configuration for ng tags input module
engageApp.config(function(tagsInputConfigProvider) {
tagsInputConfigProvider.setDefaults('tagsInput', {
placeholder: 'Find Recipients',
replaceSpacesWithDashes: false,
addFromAutocompleteOnly: true,
displayProperty: 'name',
keyProperty : 'targetName'
}).setDefaults('autoComplete', {
displayProperty: 'name',
minLength: 2
});
});
// Configuration for translations
engageApp.config(function ($translateProvider) {
$translateProvider.translations('en', {
ENGAGE_XM: {
TITLE: 'Engage with xMatters',
LABEL: {
RECIPIENTS: 'Recipients',
SEND_PRIORITY: 'Priority',
CONFERENCE_BRIDGE: 'Conference Bridge',
SUBJECT: 'Subject',
MESSAGE: 'Message'
},
BUTTON: {
SUBMIT: 'Submit',
CANCEL: 'Cancel',
VIEW_RECORD: 'View Record'
},
ERROR: {
REQUIRED: 'Required field',
MAX_LENGTH: 'Maximum length {{max_length}} characters'
},
MESSAGE: {
SUCCESS: 'Your request has been submitted successfully. To track the progress of this request in ServiceNow, view the Engage with xMatters record.'
},
OPTIONS: {
CONFERENCE_BRIDGE: {
'None': '-- None --',
'External_Category': 'External Bridges',
'Hosted_Category': 'xMatters Hosted Bridges',
'Hosted_New': 'Create new'
},
SEND_PRIORITY: {
"low": 'Low',
"medium": 'Medium',
"high": 'High'
},
RECIPIENT_TYPE: {
"people": "People",
"groups": "Groups"
}
}
}
});
$translateProvider.preferredLanguage('en');
});
engageApp.controller('engageCtlr',
function($scope, $window, $translate, XMService, LocationService, OptionsProvider, GlideAjax) {
// Core scope variables
$scope.is_finished = false;
$scope.is_invalid = false;
$scope.global_errors = [];
// form model scope variables and default values
$scope.subject = '';
$scope.message = '';
$scope.recipients = [];
$scope.conference_bridge = 'None';
$scope.send_priority = 'medium';
// result scope variable
$scope.engage_url = '';
// behind the scenes scope variables used for options/state
$scope.xm_search_state = XMService.searchState;
$scope.hosted_conference_bridge_options = OptionsProvider.hosted_conference_bridges;
$scope.external_conference_bridge_options = OptionsProvider.external_conference_bridges;
$scope.send_priority_options = OptionsProvider.send_priorities;
$scope.recipientTypes = [
{
"label": "ENGAGE_XM.OPTIONS.RECIPIENT_TYPE.people",
"typeahead": XMService.searchPeople
},
{
"label": "ENGAGE_XM.OPTIONS.RECIPIENT_TYPE.groups",
"typeahead": XMService.searchGroups
}
];
$scope.activeRecipientType = $scope.recipientTypes[0];
// Set the incident id scope variable based on search parameters in the url
$scope.incident_id = LocationService.searchParams.incident_id;
if( typeof $scope.incident_id === 'undefined' || $scope.incident_id === null || $scope.incident_id === '' ) {
console.log( 'No incident identifier was defined' );
$scope.global_errors.push( 'Missing "incident_id" parameter: A valid ServiceNow Incident system id must be set to continue' );
}
/**
* Changes the active recipient type based on the input group action dropdown selection
*
* @param {Integer} selectedType
* index of the selected recipient option
*/
$scope.selectRecipientType = function( selectedIndex ) {
$scope.activeRecipientType = $scope.recipientTypes[selectedIndex];
};
var closeDialog = function(optionalMessage) {
var data = {
type: "DIALOG_CLOSE"
};
if(optionalMessage) {
data.message = optionalMessage;
}
$window.parent.postMessage(data, window.location.origin);
};
$scope.cancel = function() {
closeDialog();
};
/**
* Submits the engageXMForm form, and if valid, tries to create a new Engage with xMatters record via
* the xMattersAjaxEngage client callable script include.
*/
$scope.submit = function() {
$scope.engageXMForm.$setSubmitted( true );
if( $scope.engageXMForm.$invalid ) {
console.log( 'The form will not be submitted in an invalid state' );
console.log( $scope.engageXMForm );
} else {
var recipientTargets = [];
for( var i = 0; i < $scope.recipients.length; i++ ) {
recipientTargets.push( $scope.recipients[i].targetName );
}
var formData = {
"recipients": recipientTargets.join( ',' ),
"subject": $scope.subject,
"message": $scope.message,
"conference_bridge": $scope.conference_bridge,
"incident_id": $scope.incident_id,
"send_priority": $scope.send_priority
};
var ga = new GlideAjax( 'xMattersAjaxEngage' );
ga.addParam( 'sysparm_name', 'submitEngageWithXMatters' );
ga.addParam( 'form_data', JSON.stringify( formData ) );
ga.send().then( function( resp ) {
if( resp.success ) {
$translate('ENGAGE_XM.MESSAGE.SUCCESS').then(function(successMsg){
closeDialog(successMsg);
});
// replacing our complete page by closing the dialog for you
//$scope.is_finished = true;
//$scope.engage_url = '/nav_to.do?uri=x_xma_xmatters_engage_with_xmatters.do?sys_id=' + resp.data.sys_id;
} else {
console.log( resp );
}
} ).catch( function( resp ){
console.log( resp );
} );
}
};
} );]]></script><script_name>xm_app_engage_xmatters</script_name><sys_class_name>sys_ui_script</sys_class_name><sys_created_by>admin</sys_created_by><sys_created_on>2016-07-12 15:03:56</sys_created_on><sys_customer_update>false</sys_customer_update><sys_id>e4c0f8824f6c220078bae321a310c7b6</sys_id><sys_mod_count>7</sys_mod_count><sys_name>x_xma_xmatters.xm_app_engage_xmatters</sys_name><sys_package display_value="xMatters" source="x_xma_xmatters">5950d7444f2231000e9fa88ca310c78c</sys_package><sys_policy/><sys_replace_on_upgrade>false</sys_replace_on_upgrade><sys_scope display_value="xMatters">5950d7444f2231000e9fa88ca310c78c</sys_scope><sys_update_name>sys_ui_script_e4c0f8824f6c220078bae321a310c7b6</sys_update_name><sys_updated_by>admin</sys_updated_by><sys_updated_on>2017-08-25 01:25:41</sys_updated_on><use_scoped_format>false</use_scoped_format></sys_ui_script></record_update></payload>
<remote_update_set display_value="Engage for Problem Management">2ed05d39db4303009bb3fabdbf961979</remote_update_set>
<replace_on_upgrade>false</replace_on_upgrade>
<sys_created_by>admin</sys_created_by>
<sys_created_on>2017-12-15 21:44:49</sys_created_on>
<sys_id>62d05d39db4303009bb3fabdbf961981</sys_id>
<sys_mod_count>0</sys_mod_count>
<sys_updated_by>admin</sys_updated_by>
<sys_updated_on>2017-12-15 21:44:49</sys_updated_on>
<table/>
<target_name>x_xma_xmatters.xm_app_engage_xmatters</target_name>
<type>UI Script</type>
<update_domain>global</update_domain>
<update_set display_value=""/>
<view/>
</sys_update_xml>
<sys_update_xml action="INSERT_OR_UPDATE">
<action>INSERT_OR_UPDATE</action>
<application display_value="xMatters">5950d7444f2231000e9fa88ca310c78c</application>
<category>customer</category>
<comments/>
<name>sys_app_module_67a8f3d4db0303009bb3fabdbf961957</name>
<payload><![CDATA[<?xml version="1.0" encoding="UTF-8"?><record_update sys_domain="global" table="sys_app_module"><sys_app_module action="INSERT_OR_UPDATE"><active>true</active><application display_value="Integration - xMatters">1b9f490f7b02f1008e0b707d784d4d81</application><assessment/><content_page/><device_type/><filter/><hint/><homepage/><image/><link_type>LIST</link_type><map_page/><mobile_title>Engage with xMatters Problems</mobile_title><mobile_view_name>Mobile</mobile_view_name><name>x_xma_xmatters_engage_with_xmatters_problem</name><order/><override_menu_roles>false</override_menu_roles><query/><report/><roles>x_xma_xmatters.engage_with_xmatters_problem_user</roles><survey/><survey_overwrite>true</survey_overwrite><sys_class_name>sys_app_module</sys_class_name><sys_created_by>admin</sys_created_by><sys_created_on>2017-12-11 18:07:12</sys_created_on><sys_customer_update>true</sys_customer_update><sys_domain>global</sys_domain><sys_domain_path/><sys_id>67a8f3d4db0303009bb3fabdbf961957</sys_id><sys_mod_count>0</sys_mod_count><sys_name>Engage with xMatters Problems</sys_name><sys_overrides/><sys_package display_value="xMatters" source="x_xma_xmatters">5950d7444f2231000e9fa88ca310c78c</sys_package><sys_policy/><sys_replace_on_upgrade>false</sys_replace_on_upgrade><sys_scope display_value="xMatters">5950d7444f2231000e9fa88ca310c78c</sys_scope><sys_update_name>sys_app_module_67a8f3d4db0303009bb3fabdbf961957</sys_update_name><sys_updated_by>admin</sys_updated_by><sys_updated_on>2017-12-11 18:07:12</sys_updated_on><timeline_page/><title>Engage with xMatters Problems</title><uncancelable>false</uncancelable><view_name/><window_name/></sys_app_module></record_update>]]></payload>
<remote_update_set display_value="Engage for Problem Management">2ed05d39db4303009bb3fabdbf961979</remote_update_set>
<replace_on_upgrade>false</replace_on_upgrade>
<sys_created_by>admin</sys_created_by>
<sys_created_on>2017-12-15 21:44:49</sys_created_on>
<sys_id>66d05d39db4303009bb3fabdbf96197a</sys_id>
<sys_mod_count>0</sys_mod_count>
<sys_updated_by>admin</sys_updated_by>
<sys_updated_on>2017-12-15 21:44:49</sys_updated_on>
<table>x_xma_xmatters_engage_with_xmatters_problem</table>
<target_name>Engage with xMatters Problems</target_name>
<type>Module</type>
<update_domain>global</update_domain>
<update_set display_value=""/>
<view/>
</sys_update_xml>
<sys_update_xml action="INSERT_OR_UPDATE">
<action>INSERT_OR_UPDATE</action>
<application display_value="xMatters">5950d7444f2231000e9fa88ca310c78c</application>
<category>customer</category>
<comments/>
<name>sys_documentation_x_xma_xmatters_engage_with_xmatters_problem__en</name>
<payload><![CDATA[<?xml version="1.0" encoding="UTF-8"?><record_update><sys_documentation element="" label="Engage with xMatters Problem" language="en" table="x_xma_xmatters_engage_with_xmatters_problem"><sys_documentation action="INSERT_OR_UPDATE"><element/><help/><hint/><label>Engage with xMatters Problem</label><language>en</language><name>x_xma_xmatters_engage_with_xmatters_problem</name><plural>Engage with xMatters Problems</plural><sys_class_name>sys_documentation</sys_class_name><sys_created_by>admin</sys_created_by><sys_created_on>2017-12-11 18:07:12</sys_created_on><sys_customer_update>true</sys_customer_update><sys_id>b3a8f3d4db0303009bb3fabdbf961986</sys_id><sys_mod_count>0</sys_mod_count><sys_name>Engage with xMatters Problem</sys_name><sys_package display_value="xMatters" source="x_xma_xmatters">5950d7444f2231000e9fa88ca310c78c</sys_package><sys_policy/><sys_replace_on_upgrade>false</sys_replace_on_upgrade><sys_scope display_value="xMatters">5950d7444f2231000e9fa88ca310c78c</sys_scope><sys_update_name>sys_documentation_x_xma_xmatters_engage_with_xmatters_problem__en</sys_update_name><sys_updated_by>admin</sys_updated_by><sys_updated_on>2017-12-11 18:07:12</sys_updated_on><url/><url_target/></sys_documentation></sys_documentation></record_update>]]></payload>
<remote_update_set display_value="Engage for Problem Management">2ed05d39db4303009bb3fabdbf961979</remote_update_set>
<replace_on_upgrade>false</replace_on_upgrade>
<sys_created_by>admin</sys_created_by>
<sys_created_on>2017-12-15 21:44:49</sys_created_on>
<sys_id>66d05d39db4303009bb3fabdbf96197d</sys_id>
<sys_mod_count>0</sys_mod_count>
<sys_updated_by>admin</sys_updated_by>
<sys_updated_on>2017-12-15 21:44:49</sys_updated_on>
<table>x_xma_xmatters_engage_with_xmatters_problem</table>
<target_name>Engage with xMatters Problem</target_name>
<type>Field Label</type>
<update_domain>global</update_domain>
<update_set display_value=""/>
<view/>
</sys_update_xml>
<sys_update_xml action="INSERT_OR_UPDATE">
<action>INSERT_OR_UPDATE</action>
<application display_value="xMatters">5950d7444f2231000e9fa88ca310c78c</application>
<category>customer</category>
<comments/>
<name>sys_ui_page_b4a57b54db0303009bb3fabdbf9619e1</name>
<payload><?xml version="1.0" encoding="UTF-8"?><record_update table="sys_ui_page"><sys_ui_page action="INSERT_OR_UPDATE"><category>general</category><client_script/><description/><direct>false</direct><endpoint>x_xma_xmatters_xm_engage_with_xmatters_problem.do</endpoint><html><![CDATA[<?xml version="1.0" encoding="utf-8" ?>
<j:jelly trim="false" xmlns:j="jelly:core" xmlns:g="glide" xmlns:j2="null" xmlns:g2="null">
<style>
/* Extra small devices (phones, less than 768px) */
/* No media query since this is the default in Bootstrap */
.xm-dialog-form {
width: 400px;
height: 650px;
}
/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
.xm-dialog-form {
width: 500px;
height: 650px;
}
}
/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {
.xm-dialog-form {
width: 700px;
height: 500px;
}
}
/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
.xm-dialog-form {
width: 750px;
height: 500px;
}
}
.xm-embed-iframe {
height: 100%;
}
</style>
<div class="xm-dialog-form">
<div class="embed-responsive xm-embed-iframe">
<iframe name="dialog_frame" id="dialog_frame" src="/x_xma_xmatters_xm_engage_with_xmatters_problem_content.do?sysparm_nostack=true&amp;incident_id=${HTML:sysparm_sysID}" class="embed-responsive-item"></iframe>
</div>
</div>
<script>
(function() {
var childMessageListener = function(event) {
if( event.origin !== window.location.origin ) {
console.log("Received message from unexpected origin: " + event.origin);
return;
} else {
var data = event.data;
if(data.type === 'DIALOG_CLOSE') {
if(data.message) {
g_form.addInfoMessage(data.message);
}
GlideDialogWindow.get().destroy();
} else {
console.log("Unhandled message type: " + data.type);
}
}
}
if(window.addEventListener) {
addEventListener('message', childMessageListener, false);
} else {
attachEvent("onmessage", childMessageListener);
}
})();
</script>
</j:jelly>]]></html><name>xm_engage_with_xmatters_problem</name><processing_script/><sys_class_name>sys_ui_page</sys_class_name><sys_created_by>admin</sys_created_by><sys_created_on>2017-12-11 17:54:27</sys_created_on><sys_customer_update>true</sys_customer_update><sys_id>b4a57b54db0303009bb3fabdbf9619e1</sys_id><sys_mod_count>4</sys_mod_count><sys_name>xm_engage_with_xmatters_problem</sys_name><sys_package display_value="xMatters" source="x_xma_xmatters">5950d7444f2231000e9fa88ca310c78c</sys_package><sys_policy/><sys_replace_on_upgrade>false</sys_replace_on_upgrade><sys_scope display_value="xMatters">5950d7444f2231000e9fa88ca310c78c</sys_scope><sys_update_name>sys_ui_page_b4a57b54db0303009bb3fabdbf9619e1</sys_update_name><sys_updated_by>admin</sys_updated_by><sys_updated_on>2017-12-11 19:56:33</sys_updated_on></sys_ui_page></record_update></payload>
<remote_update_set display_value="Engage for Problem Management">2ed05d39db4303009bb3fabdbf961979</remote_update_set>
<replace_on_upgrade>false</replace_on_upgrade>
<sys_created_by>admin</sys_created_by>
<sys_created_on>2017-12-15 21:44:49</sys_created_on>
<sys_id>66d05d39db4303009bb3fabdbf961980</sys_id>
<sys_mod_count>0</sys_mod_count>
<sys_updated_by>admin</sys_updated_by>
<sys_updated_on>2017-12-15 21:44:49</sys_updated_on>
<table/>
<target_name>xm_engage_with_xmatters_problem</target_name>
<type>UI Page</type>
<update_domain>global</update_domain>
<update_set display_value=""/>
<view/>
</sys_update_xml>
<sys_update_xml action="INSERT_OR_UPDATE">
<action>INSERT_OR_UPDATE</action>
<application display_value="xMatters">5950d7444f2231000e9fa88ca310c78c</application>
<category>customer</category>
<comments/>
<name>sys_documentation_x_xma_xmatters_engage_with_xmatters_problem_message_subject_en</name>
<payload><![CDATA[<?xml version="1.0" encoding="UTF-8"?><record_update><sys_documentation element="message_subject" label="Message Subject" language="en" table="x_xma_xmatters_engage_with_xmatters_problem"><sys_documentation action="INSERT_OR_UPDATE"><element>message_subject</element><help/><hint/><label>Message Subject</label><language>en</language><name>x_xma_xmatters_engage_with_xmatters_problem</name><plural>Message Subjects</plural><sys_class_name>sys_documentation</sys_class_name><sys_created_by>admin</sys_created_by><sys_created_on>2017-12-11 18:07:14</sys_created_on><sys_customer_update>true</sys_customer_update><sys_id>84b8f3d4db0303009bb3fabdbf9619b0</sys_id><sys_mod_count>0</sys_mod_count><sys_name>Message Subject</sys_name><sys_package display_value="xMatters" source="x_xma_xmatters">5950d7444f2231000e9fa88ca310c78c</sys_package><sys_policy/><sys_replace_on_upgrade>false</sys_replace_on_upgrade><sys_scope display_value="xMatters">5950d7444f2231000e9fa88ca310c78c</sys_scope><sys_update_name>sys_documentation_x_xma_xmatters_engage_with_xmatters_problem_message_subject_en</sys_update_name><sys_updated_by>admin</sys_updated_by><sys_updated_on>2017-12-11 18:07:14</sys_updated_on><url/><url_target/></sys_documentation></sys_documentation></record_update>]]></payload>
<remote_update_set display_value="Engage for Problem Management">2ed05d39db4303009bb3fabdbf961979</remote_update_set>
<replace_on_upgrade>false</replace_on_upgrade>
<sys_created_by>admin</sys_created_by>
<sys_created_on>2017-12-15 21:44:49</sys_created_on>
<sys_id>6ad05d39db4303009bb3fabdbf96197c</sys_id>
<sys_mod_count>0</sys_mod_count>
<sys_updated_by>admin</sys_updated_by>
<sys_updated_on>2017-12-15 21:44:49</sys_updated_on>
<table>x_xma_xmatters_engage_with_xmatters_problem</table>
<target_name>Engage with xMatters Problem.Message Subject</target_name>
<type>Field Label</type>
<update_domain>global</update_domain>
<update_set display_value=""/>
<view/>
</sys_update_xml>
<sys_update_xml action="INSERT_OR_UPDATE">
<action>INSERT_OR_UPDATE</action>
<application display_value="xMatters">5950d7444f2231000e9fa88ca310c78c</application>
<category>customer</category>
<comments/>
<name>sys_security_acl_role_6fa8f3d4db0303009bb3fabdbf96196f</name>
<payload><![CDATA[<?xml version="1.0" encoding="UTF-8"?><record_update table="sys_security_acl_role"><sys_security_acl_role action="INSERT_OR_UPDATE"><sys_class_name>sys_security_acl_role</sys_class_name><sys_created_by>admin</sys_created_by><sys_created_on>2017-12-11 18:07:12</sys_created_on><sys_customer_update>true</sys_customer_update><sys_id>6fa8f3d4db0303009bb3fabdbf96196f</sys_id><sys_mod_count>0</sys_mod_count><sys_name>x_xma_xmatters_engage_with_xmatters_problem.x_xma_xmatters.engage_with_xmatters_problem_user</sys_name><sys_package display_value="xMatters" source="x_xma_xmatters">5950d7444f2231000e9fa88ca310c78c</sys_package><sys_policy/><sys_replace_on_upgrade>false</sys_replace_on_upgrade><sys_scope display_value="xMatters">5950d7444f2231000e9fa88ca310c78c</sys_scope><sys_security_acl display_value="x_xma_xmatters_engage_with_xmatters_problem">eba8f3d4db0303009bb3fabdbf961960</sys_security_acl><sys_update_name>sys_security_acl_role_6fa8f3d4db0303009bb3fabdbf96196f</sys_update_name><sys_updated_by>admin</sys_updated_by><sys_updated_on>2017-12-11 18:07:12</sys_updated_on><sys_user_role display_value="x_xma_xmatters.engage_with_xmatters_problem_user" name="x_xma_xmatters.engage_with_xmatters_problem_user">9ba8f3d4db0303009bb3fabdbf96192d</sys_user_role><transaction_id/></sys_security_acl_role></record_update>]]></payload>
<remote_update_set display_value="Engage for Problem Management">2ed05d39db4303009bb3fabdbf961979</remote_update_set>
<replace_on_upgrade>false</replace_on_upgrade>
<sys_created_by>admin</sys_created_by>
<sys_created_on>2017-12-15 21:44:49</sys_created_on>
<sys_id>6ad05d39db4303009bb3fabdbf96197f</sys_id>
<sys_mod_count>0</sys_mod_count>
<sys_updated_by>admin</sys_updated_by>
<sys_updated_on>2017-12-15 21:44:49</sys_updated_on>
<table>x_xma_xmatters_engage_with_xmatters_problem</table>
<target_name>x_xma_xmatters_engage_with_xmatters_problem.x_xma_xmatters.engage_with_xmatters_problem_user</target_name>
<type>Access Roles</type>
<update_domain>global</update_domain>
<update_set display_value=""/>
<view/>
</sys_update_xml>