-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProcess - Template 1 - Basic.xml
2356 lines (2356 loc) · 105 KB
/
Process - Template 1 - Basic.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
<process name="Process Template 1 - Basic" version="1.0" bpversion="6.3.0.6190" narrative="A basic Process Template:
Best Practice Exception Handling
Run once process (no polling)
Process broken down into Work Step sub pages" byrefcollection="true" preferredid="8b74c5c2-b8be-49b6-9204-3cc4025ba9f2">
<view>
<camerax>65</camerax>
<cameray>136</cameray>
<zoom version="2">1.25</zoom>
</view>
<preconditions />
<endpoint narrative="" />
<subsheet subsheetid="8f814e4a-ce3a-4fd2-8a04-5f2b890ceba7" type="Normal" published="False">
<name>Start Up</name>
<view>
<camerax>51</camerax>
<cameray>684</cameray>
<zoom version="2">1.25</zoom>
</view>
</subsheet>
<subsheet subsheetid="cf13a1fa-a9be-4527-973b-e2f66f99d14b" type="Normal" published="False">
<name>Close Down</name>
<view>
<camerax>0</camerax>
<cameray>-25</cameray>
<zoom version="2">1.25</zoom>
</view>
</subsheet>
<subsheet subsheetid="b749d60a-bded-4d36-b099-3627ed699606" type="Normal" published="False">
<name>Populate Queue</name>
<view>
<camerax>66</camerax>
<cameray>116</cameray>
<zoom version="2">1.25</zoom>
</view>
</subsheet>
<subsheet subsheetid="bf57723b-f31f-465f-a44d-6b23e78fd2de" type="Normal" published="False">
<name>Work Step 1</name>
<view>
<camerax>97</camerax>
<cameray>25</cameray>
<zoom version="2">1.25</zoom>
</view>
</subsheet>
<subsheet subsheetid="4f5f8a61-abf2-40dd-8169-d8ab45ffd78c" type="Normal" published="False">
<name>Work Step 2</name>
<view>
<camerax>0</camerax>
<cameray>36</cameray>
<zoom version="2">1.25</zoom>
</view>
</subsheet>
<subsheet subsheetid="47e58161-0f42-47cc-aa94-af755a8de010" type="Normal" published="False">
<name>Work Step 3</name>
<view>
<camerax>0</camerax>
<cameray>206</cameray>
<zoom version="2">1.25</zoom>
</view>
</subsheet>
<subsheet subsheetid="d31d1c11-61ad-4c49-91a4-44bbf0bf0725" type="Normal" published="False">
<name>Mark Item As Completed</name>
<view>
<camerax>0</camerax>
<cameray>2</cameray>
<zoom version="2">1.25</zoom>
</view>
</subsheet>
<subsheet subsheetid="d599353b-a78b-40f4-ab04-255791b86a1a" type="Normal" published="False">
<name>Mark Item As Exception</name>
<view>
<camerax>-8</camerax>
<cameray>223</cameray>
<zoom version="2">1.25</zoom>
</view>
</subsheet>
<subsheet subsheetid="5fd952f0-1be2-40e8-8afa-485524c5a5cd" type="Normal" published="False">
<name>Reset Global Data</name>
<view>
<camerax>0</camerax>
<cameray>42</cameray>
<zoom version="2">1.25</zoom>
</view>
</subsheet>
<stage stageid="30a66a72-d51e-464f-89e3-f40b54998601" name="Start" type="Start">
<narrative>
</narrative>
<displayx>15</displayx>
<displayy>-150</displayy>
<displaywidth>60</displaywidth>
<displayheight>30</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<onsuccess>832b89eb-e411-459f-ac7a-4584e360f5ef</onsuccess>
</stage>
<stage stageid="458762d9-7dd4-47c0-bbdc-55d193273d9c" name="End" type="End">
<narrative>
</narrative>
<displayx>375</displayx>
<displayy>-165</displayy>
<displaywidth>60</displaywidth>
<displayheight>30</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
</stage>
<stage stageid="8b6eaa66-766c-4d2a-a0d1-cc6ab7e4f32d" name="Stage1" type="ProcessInfo">
<narrative>
</narrative>
<displayx>-180</displayx>
<displayy>-180</displayy>
<displaywidth>270</displaywidth>
<displayheight>120</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
</stage>
<stage stageid="62aec640-1920-44e6-8b1e-be6a9725cec8" name="Mark Item As Completed" type="SubSheetInfo">
<subsheetid>d31d1c11-61ad-4c49-91a4-44bbf0bf0725</subsheetid>
<narrative>Marks the current work queue item as complete</narrative>
<displayx>-195</displayx>
<displayy>-105</displayy>
<displaywidth>150</displaywidth>
<displayheight>90</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
</stage>
<stage stageid="1446dc69-509c-446c-8f20-b7f580423da2" name="Mark Item As Exception" type="SubSheetInfo">
<subsheetid>d599353b-a78b-40f4-ab04-255791b86a1a</subsheetid>
<narrative>Marks the current work queue item as an exception</narrative>
<displayx>-120</displayx>
<displayy>-195</displayy>
<displaywidth>150</displaywidth>
<displayheight>90</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
</stage>
<stage stageid="bc2ffba4-5cb1-48b6-a390-3b1aadd5dab4" name="Start" type="Start">
<subsheetid>d599353b-a78b-40f4-ab04-255791b86a1a</subsheetid>
<narrative>
</narrative>
<displayx>15</displayx>
<displayy>-120</displayy>
<displaywidth>60</displaywidth>
<displayheight>30</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<onsuccess>808cbef2-cfe3-460f-ba72-91e0e6283988</onsuccess>
</stage>
<stage stageid="b49e249e-bbb1-427e-8bd1-902ce03e3a79" name="Recover" type="Recover">
<narrative>
</narrative>
<displayx>120</displayx>
<displayy>375</displayy>
<displaywidth>60</displaywidth>
<displayheight>30</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<onsuccess>6fa1db8d-0510-4c35-8416-9a938e94c78d</onsuccess>
</stage>
<stage stageid="53762061-333e-4023-b99f-1de349dfc4a4" name="Resume" type="Resume">
<narrative>
</narrative>
<displayx>120</displayx>
<displayy>525</displayy>
<displaywidth>60</displaywidth>
<displayheight>30</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<onsuccess>ffb4d158-5875-4239-bd22-b7ca87c93bbc</onsuccess>
</stage>
<stage stageid="b9fbad6e-b3b1-4e9b-bc71-1b96d40beeb2" name="Retry Exception?" type="Decision">
<subsheetid>d599353b-a78b-40f4-ab04-255791b86a1a</subsheetid>
<narrative>
</narrative>
<displayx>15</displayx>
<displayy>30</displayy>
<displaywidth>90</displaywidth>
<displayheight>60</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<decision expression="Lower([Exception Type])="system exception" OR Lower([Exception Type])="internal"" />
<ontrue>6b5864ff-c8f2-4c69-8e1b-d090c057cdc2</ontrue>
<onfalse>5ce83707-f042-4e73-929c-e7358ebdc456</onfalse>
</stage>
<stage stageid="a374264f-2dbf-4477-bad7-ee4ba812e5b1" name="Previous Exception?" type="Decision">
<subsheetid>d599353b-a78b-40f4-ab04-255791b86a1a</subsheetid>
<narrative>
</narrative>
<displayx>15</displayx>
<displayy>225</displayy>
<displaywidth>90</displaywidth>
<displayheight>60</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<decision expression="[Previous Exception Detail]=[Exception Detail]" />
<ontrue>3484ce27-f1ef-4f28-926b-efaa03fc5fed</ontrue>
<onfalse>7105b714-612a-4e50-84b3-f789f0634902</onfalse>
</stage>
<stage stageid="a08fa84e-da3f-447e-80f1-1db9c2935d76" name="Previous Exception Detail" type="Data">
<subsheetid>d599353b-a78b-40f4-ab04-255791b86a1a</subsheetid>
<narrative>
</narrative>
<displayx>-225</displayx>
<displayy>165</displayy>
<displaywidth>150</displaywidth>
<displayheight>30</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<datatype>text</datatype>
<initialvalue />
</stage>
<stage stageid="3484ce27-f1ef-4f28-926b-efaa03fc5fed" name="Count" type="Calculation">
<subsheetid>d599353b-a78b-40f4-ab04-255791b86a1a</subsheetid>
<narrative>
</narrative>
<displayx>15</displayx>
<displayy>300</displayy>
<displaywidth>60</displaywidth>
<displayheight>30</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<onsuccess>02c69925-9f7c-41af-844f-259d82504b0a</onsuccess>
<calculation expression="1+ [Consecutive Exception Count]" stage="Consecutive Exception Count" />
</stage>
<stage stageid="279f2417-29f4-4931-9039-5d9693cd6b93" name="Consecutive Exception Count" type="Data">
<subsheetid>d599353b-a78b-40f4-ab04-255791b86a1a</subsheetid>
<narrative>
</narrative>
<displayx>-225</displayx>
<displayy>195</displayy>
<displaywidth>150</displaywidth>
<displayheight>30</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<datatype>number</datatype>
<initialvalue>0</initialvalue>
</stage>
<stage stageid="02c69925-9f7c-41af-844f-259d82504b0a" name="Limit?" type="Decision">
<subsheetid>d599353b-a78b-40f4-ab04-255791b86a1a</subsheetid>
<narrative>
</narrative>
<displayx>15</displayx>
<displayy>375</displayy>
<displaywidth>90</displaywidth>
<displayheight>60</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<decision expression="[Consecutive Exception Count]>=[Consecutive Exception Limit]" />
<ontrue>4dda9efd-3cd9-4714-b293-fe6aa9cd269c</ontrue>
<onfalse>7360eced-01c7-4dc8-a7ef-817d130f1cc5</onfalse>
</stage>
<stage stageid="aefca01e-0501-4f8e-ba6c-a5aa4896e4ea" name="TERMINATE" type="Exception">
<subsheetid>d599353b-a78b-40f4-ab04-255791b86a1a</subsheetid>
<narrative>
</narrative>
<displayx>15</displayx>
<displayy>570</displayy>
<displaywidth>120</displaywidth>
<displayheight>60</displayheight>
<font family="Tahoma" size="10" style="Bold" color="FF0000" />
<exception type="" detail="[Consecutive Exception Limit] & " consecutive incidents of " & [Exception Type] & ": " & [Exception Detail]" />
</stage>
<stage stageid="36455e9b-9b0b-4078-b5b2-338e1aab1f84" name="Consecutive Exception Limit" type="Data">
<subsheetid>d599353b-a78b-40f4-ab04-255791b86a1a</subsheetid>
<narrative>
</narrative>
<displayx>-225</displayx>
<displayy>225</displayy>
<displaywidth>150</displaywidth>
<displayheight>30</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<datatype>number</datatype>
<initialvalue>3</initialvalue>
<private />
<alwaysinit />
</stage>
<stage stageid="64a4e876-5092-4568-829b-73faed844a31" name="End2" type="End">
<subsheetid>d599353b-a78b-40f4-ab04-255791b86a1a</subsheetid>
<narrative>
</narrative>
<displayx>285</displayx>
<displayy>375</displayy>
<displaywidth>60</displaywidth>
<displayheight>30</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
</stage>
<stage stageid="9de6523c-e14d-4937-b854-1b0930857c02" name="Reset Consecutive Exception Indicators" type="MultipleCalculation">
<subsheetid>d599353b-a78b-40f4-ab04-255791b86a1a</subsheetid>
<narrative>
</narrative>
<displayx>285</displayx>
<displayy>225</displayy>
<displaywidth>90</displaywidth>
<displayheight>60</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<onsuccess>64a4e876-5092-4568-829b-73faed844a31</onsuccess>
<steps>
<calculation expression="[Exception Detail]" stage="Previous Exception Detail" />
<calculation expression="0" stage="Consecutive Exception Count" />
</steps>
</stage>
<stage stageid="4dda9efd-3cd9-4714-b293-fe6aa9cd269c" name="Stop the process because consecutive exceptions are occuring" type="Note">
<subsheetid>d599353b-a78b-40f4-ab04-255791b86a1a</subsheetid>
<narrative>The consecutive exception limit has been reached, so throw a new exception to terminate the process.</narrative>
<displayx>15</displayx>
<displayy>480</displayy>
<displaywidth>120</displaywidth>
<displayheight>90</displayheight>
<font family="Tahoma" size="10" style="Regular" color="0000FF" />
<onsuccess>aefca01e-0501-4f8e-ba6c-a5aa4896e4ea</onsuccess>
</stage>
<stage stageid="6047b42e-0003-4ddb-8ba3-d3607d6ce770" name="Start" type="Start">
<subsheetid>d31d1c11-61ad-4c49-91a4-44bbf0bf0725</subsheetid>
<narrative>
</narrative>
<displayx>15</displayx>
<displayy>-105</displayy>
<displaywidth>60</displaywidth>
<displayheight>30</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<onsuccess>126538a7-7404-4369-8cdd-056490ecc46c</onsuccess>
</stage>
<stage stageid="86bb4f43-18d4-43dd-9bf5-b8902e21521c" name="Mark Completed" type="Action">
<subsheetid>d31d1c11-61ad-4c49-91a4-44bbf0bf0725</subsheetid>
<narrative>
</narrative>
<displayx>15</displayx>
<displayy>0</displayy>
<displaywidth>60</displaywidth>
<displayheight>30</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<inputs>
<input type="text" name="Item ID" narrative="The ID of the item to mark" expr="[Item ID]" />
</inputs>
<onsuccess>8f6d0bfa-2d98-469e-997c-88b0c126d4d7</onsuccess>
<resource object="Blueprism.Automate.clsWorkQueuesActions" action="Mark Completed" />
</stage>
<stage stageid="126538a7-7404-4369-8cdd-056490ecc46c" name="Set Status" type="Action">
<subsheetid>d31d1c11-61ad-4c49-91a4-44bbf0bf0725</subsheetid>
<narrative>
</narrative>
<displayx>15</displayx>
<displayy>-45</displayy>
<displaywidth>60</displaywidth>
<displayheight>30</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<inputs>
<input type="text" name="Item ID" narrative="The ID of the item to mark" expr="[Item ID]" />
<input type="text" name="Status" narrative="The new status - 255 characters maximum." expr=""Completed"" />
</inputs>
<onsuccess>86bb4f43-18d4-43dd-9bf5-b8902e21521c</onsuccess>
<resource object="Blueprism.Automate.clsWorkQueuesActions" action="Update Status" />
</stage>
<stage stageid="09fc131c-2803-4daf-b8cf-351f28b78783" name="New Item ID" type="Data">
<subsheetid>d599353b-a78b-40f4-ab04-255791b86a1a</subsheetid>
<narrative>
</narrative>
<displayx>-225</displayx>
<displayy>105</displayy>
<displaywidth>150</displaywidth>
<displayheight>30</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<datatype>text</datatype>
<initialvalue />
<private />
<alwaysinit />
</stage>
<stage stageid="10cdebf6-ced7-425b-91dd-2b0b764b5ee0" name="Got Item?" type="Decision">
<narrative>
</narrative>
<displayx>120</displayx>
<displayy>60</displayy>
<displaywidth>90</displaywidth>
<displayheight>60</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<decision expression="[Item ID]<>""" />
<ontrue>f52977fa-5395-47ee-a08b-35f92f89554c</ontrue>
<onfalse>7cfa842f-7ad3-4458-943f-6d7007300925</onfalse>
</stage>
<stage stageid="6322bec5-84f1-4af9-9af5-5406339262c4" name="Work Step 1" type="SubSheetInfo">
<subsheetid>bf57723b-f31f-465f-a44d-6b23e78fd2de</subsheetid>
<narrative>
</narrative>
<displayx>-105</displayx>
<displayy>-90</displayy>
<displaywidth>150</displaywidth>
<displayheight>90</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
</stage>
<stage stageid="f52977fa-5395-47ee-a08b-35f92f89554c" name="Work Step 1" type="SubSheet">
<narrative>
</narrative>
<displayx>120</displayx>
<displayy>165</displayy>
<displaywidth>90</displaywidth>
<displayheight>60</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<onsuccess>ddcca36f-4cf9-489e-abf7-6135db964332</onsuccess>
<processid>bf57723b-f31f-465f-a44d-6b23e78fd2de</processid>
</stage>
<stage stageid="97b3d7cc-18e6-4683-a321-c7c736d2d8b0" name="Start Up" type="SubSheetInfo">
<subsheetid>8f814e4a-ce3a-4fd2-8a04-5f2b890ceba7</subsheetid>
<narrative>Prepares any variables according to the Run Mode, starts the applications and fills the queue.</narrative>
<displayx>-195</displayx>
<displayy>195</displayy>
<displaywidth>150</displaywidth>
<displayheight>90</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
</stage>
<stage stageid="58267ed1-deb3-498d-bdf8-42959ffc8bac" name="Close Down" type="SubSheetInfo">
<subsheetid>cf13a1fa-a9be-4527-973b-e2f66f99d14b</subsheetid>
<narrative>Closes down the applications and maintains the work queue.</narrative>
<displayx>-210</displayx>
<displayy>-240</displayy>
<displaywidth>150</displaywidth>
<displayheight>90</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
</stage>
<stage stageid="ebd3e811-a42f-4f89-b4da-5a793c6cd798" name="Start" type="Start">
<subsheetid>cf13a1fa-a9be-4527-973b-e2f66f99d14b</subsheetid>
<narrative>
</narrative>
<displayx>15</displayx>
<displayy>-165</displayy>
<displaywidth>60</displaywidth>
<displayheight>30</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<onsuccess>6bad5160-382e-453b-bb17-bf6c89f68c89</onsuccess>
</stage>
<stage stageid="832b89eb-e411-459f-ac7a-4584e360f5ef" name="Start Up" type="SubSheet">
<narrative>
</narrative>
<displayx>15</displayx>
<displayy>-90</displayy>
<displaywidth>90</displaywidth>
<displayheight>60</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<onsuccess>1db94fff-eca8-49a2-9404-2b6ba6688410</onsuccess>
<processid>8f814e4a-ce3a-4fd2-8a04-5f2b890ceba7</processid>
</stage>
<stage stageid="22b42ab0-feae-42b2-a098-9871956bb826" name="Close Down" type="SubSheet">
<narrative>
</narrative>
<displayx>375</displayx>
<displayy>-90</displayy>
<displaywidth>90</displaywidth>
<displayheight>60</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<onsuccess>458762d9-7dd4-47c0-bbdc-55d193273d9c</onsuccess>
<processid>cf13a1fa-a9be-4527-973b-e2f66f99d14b</processid>
</stage>
<stage stageid="c820952e-9e6d-4733-8604-b1360d80ecde" name="Work" type="Block">
<narrative>
</narrative>
<displayx>45</displayx>
<displayy>105</displayy>
<displaywidth>135</displaywidth>
<displayheight>375</displayheight>
<font family="Tahoma" size="10" style="Regular" color="7FB2E5" />
</stage>
<stage stageid="1ef745eb-5713-4876-9937-47ac6d74b94b" name="anchor8" type="Anchor">
<narrative>
</narrative>
<displayx>375</displayx>
<displayy>315</displayy>
<displaywidth>10</displaywidth>
<displayheight>10</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<onsuccess>bef8f1ff-727a-4e0a-b29e-ed73fb6f0147</onsuccess>
</stage>
<stage stageid="ae4ae986-9e90-407c-bdc5-098a2eaf7d1c" name="Work Step 2" type="SubSheetInfo">
<subsheetid>4f5f8a61-abf2-40dd-8169-d8ab45ffd78c</subsheetid>
<narrative>
</narrative>
<displayx>-195</displayx>
<displayy>-105</displayy>
<displaywidth>150</displaywidth>
<displayheight>90</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
</stage>
<stage stageid="e1b17a89-74f4-4c4e-9fc1-dcd90c44c837" name="Start" type="Start">
<subsheetid>4f5f8a61-abf2-40dd-8169-d8ab45ffd78c</subsheetid>
<narrative>
</narrative>
<displayx>15</displayx>
<displayy>-105</displayy>
<displaywidth>60</displaywidth>
<displayheight>30</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<onsuccess>6faae558-7525-43e2-90da-c518509c143e</onsuccess>
</stage>
<stage stageid="6dace494-d4a8-4d6a-8169-cfd699f9f583" name="Work Step 3" type="SubSheetInfo">
<subsheetid>47e58161-0f42-47cc-aa94-af755a8de010</subsheetid>
<narrative>
</narrative>
<displayx>-240</displayx>
<displayy>-75</displayy>
<displaywidth>150</displaywidth>
<displayheight>90</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
</stage>
<stage stageid="ddcca36f-4cf9-489e-abf7-6135db964332" name="Work Step 2" type="SubSheet">
<narrative>
</narrative>
<displayx>120</displayx>
<displayy>240</displayy>
<displaywidth>90</displaywidth>
<displayheight>60</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<onsuccess>731b1d6d-580d-4e96-9d99-20280f13ae57</onsuccess>
<processid>4f5f8a61-abf2-40dd-8169-d8ab45ffd78c</processid>
</stage>
<stage stageid="731b1d6d-580d-4e96-9d99-20280f13ae57" name="Work Step 3" type="SubSheet">
<narrative>
</narrative>
<displayx>120</displayx>
<displayy>315</displayy>
<displaywidth>90</displaywidth>
<displayheight>60</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<onsuccess>e3035b4a-aba4-4fa5-932e-cbaab6a81b7b</onsuccess>
<processid>47e58161-0f42-47cc-aa94-af755a8de010</processid>
</stage>
<stage stageid="4fc18802-6f3f-497d-84f9-d4647d4fe33a" name="Reset Global Data" type="SubSheetInfo">
<subsheetid>5fd952f0-1be2-40e8-8afa-485524c5a5cd</subsheetid>
<narrative>This page is only used to reset global data items</narrative>
<displayx>-165</displayx>
<displayy>-105</displayy>
<displaywidth>150</displaywidth>
<displayheight>90</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
</stage>
<stage stageid="077ec244-9c84-4210-b6a5-e54b1b6000f0" name="Start" type="Start">
<subsheetid>5fd952f0-1be2-40e8-8afa-485524c5a5cd</subsheetid>
<narrative>
</narrative>
<displayx>15</displayx>
<displayy>-105</displayy>
<displaywidth>60</displaywidth>
<displayheight>30</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<onsuccess>0dee5c1d-8e68-49ec-a0ae-94125067ae6a</onsuccess>
</stage>
<stage stageid="0dee5c1d-8e68-49ec-a0ae-94125067ae6a" name="End" type="End">
<subsheetid>5fd952f0-1be2-40e8-8afa-485524c5a5cd</subsheetid>
<narrative>
</narrative>
<displayx>15</displayx>
<displayy>90</displayy>
<displaywidth>60</displaywidth>
<displayheight>30</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
</stage>
<stage stageid="bef8f1ff-727a-4e0a-b29e-ed73fb6f0147" name="Reset Global Data" type="SubSheet">
<narrative>
</narrative>
<displayx>375</displayx>
<displayy>225</displayy>
<displaywidth>90</displaywidth>
<displayheight>60</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<onsuccess>0341efdc-206a-43f9-8369-583aa2642c07</onsuccess>
<processid>5fd952f0-1be2-40e8-8afa-485524c5a5cd</processid>
</stage>
<stage stageid="ffb4d158-5875-4239-bd22-b7ca87c93bbc" name="Mark Item As Exception" type="SubSheet">
<narrative>
</narrative>
<displayx>270</displayx>
<displayy>525</displayy>
<displaywidth>90</displaywidth>
<displayheight>60</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<onsuccess>8f17792f-057d-4155-804d-35098307f65b</onsuccess>
<processid>d599353b-a78b-40f4-ab04-255791b86a1a</processid>
</stage>
<stage stageid="e3035b4a-aba4-4fa5-932e-cbaab6a81b7b" name="Mark Item As Completed" type="SubSheet">
<narrative>
</narrative>
<displayx>270</displayx>
<displayy>315</displayy>
<displaywidth>90</displaywidth>
<displayheight>60</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<onsuccess>1ef745eb-5713-4876-9937-47ac6d74b94b</onsuccess>
<processid>d31d1c11-61ad-4c49-91a4-44bbf0bf0725</processid>
</stage>
<stage stageid="8f6d0bfa-2d98-469e-997c-88b0c126d4d7" name="Reset Consecutive Exception Indicators" type="MultipleCalculation">
<subsheetid>d31d1c11-61ad-4c49-91a4-44bbf0bf0725</subsheetid>
<narrative>
</narrative>
<displayx>15</displayx>
<displayy>60</displayy>
<displaywidth>90</displaywidth>
<displayheight>60</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<onsuccess>7f3bfe56-9180-4254-8d9c-ee9ab331b39a</onsuccess>
<steps>
<calculation expression="""" stage="Previous Exception Detail" />
<calculation expression="0" stage="Consecutive Exception Count" />
</steps>
</stage>
<stage stageid="7f3bfe56-9180-4254-8d9c-ee9ab331b39a" name="End3" type="End">
<subsheetid>d31d1c11-61ad-4c49-91a4-44bbf0bf0725</subsheetid>
<narrative>
</narrative>
<displayx>15</displayx>
<displayy>120</displayy>
<displaywidth>60</displaywidth>
<displayheight>30</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
</stage>
<stage stageid="46407e01-19d6-439f-b64b-e6a18e1ae3db" name="Stop?" type="Decision">
<narrative>
</narrative>
<displayx>375</displayx>
<displayy>60</displayy>
<displaywidth>90</displaywidth>
<displayheight>60</displayheight>
<font family="Tahoma" size="10" style="Bold" color="FF0000" />
<decision expression="IsStopRequested() OR [Stop After Items]=0 OR LocalTime()>[Stop After Time]" />
<ontrue>22b42ab0-feae-42b2-a098-9871956bb826</ontrue>
<onfalse>b9deef81-8e13-43ef-b6e4-c7554776c97d</onfalse>
</stage>
<stage stageid="5ce83707-f042-4e73-929c-e7358ebdc456" name="Tag Item" type="Action">
<subsheetid>d599353b-a78b-40f4-ab04-255791b86a1a</subsheetid>
<narrative>
</narrative>
<displayx>105</displayx>
<displayy>30</displayy>
<displaywidth>60</displaywidth>
<displayheight>30</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<inputs>
<input type="text" name="Item ID" narrative="The ID of the queue item to add the tag to" expr="[Item ID]" />
<input type="text" name="Tag" narrative="The tag to add to the item. Note that this cannot start with a '+' (plus) or '-' (minus) character, and cannot contain ';' (semi-colon) characters" expr=""Business Exception"" />
</inputs>
<onsuccess>daa36ca6-f942-4ebc-86fc-8ba76b19cb4d</onsuccess>
<resource object="Blueprism.Automate.clsWorkQueuesActions" action="Tag Item" />
</stage>
<stage stageid="efc0fbd8-171a-4662-9e00-495d03bd8db7" name="Note4" type="Note">
<narrative>Add more steps as required</narrative>
<displayx>-15</displayx>
<displayy>255</displayy>
<displaywidth>90</displaywidth>
<displayheight>60</displayheight>
<font family="Tahoma" size="10" style="Bold" color="FF00FF" />
<onsuccess>731b1d6d-580d-4e96-9d99-20280f13ae57</onsuccess>
</stage>
<stage stageid="0341efdc-206a-43f9-8369-583aa2642c07" name="Count Items" type="Calculation">
<narrative>
</narrative>
<displayx>375</displayx>
<displayy>135</displayy>
<displaywidth>90</displaywidth>
<displayheight>60</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<onsuccess>46407e01-19d6-439f-b64b-e6a18e1ae3db</onsuccess>
<calculation expression="[Stop After Items]-1" stage="Stop After Items" />
</stage>
<stage stageid="131b5818-75e5-49ed-9fd5-4d8a51ce52f1" name="Item ID" type="Data">
<narrative>
</narrative>
<displayx>-165</displayx>
<displayy>345</displayy>
<displaywidth>150</displaywidth>
<displayheight>30</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<datatype>text</datatype>
<initialvalue />
<alwaysinit />
</stage>
<stage stageid="2d0552e3-8ed7-4090-b123-2fbe46f2918e" name="Item Data" type="Collection">
<narrative>
</narrative>
<displayx>-165</displayx>
<displayy>300</displayy>
<displaywidth>150</displaywidth>
<displayheight>60</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<datatype>collection</datatype>
<alwaysinit />
</stage>
<stage stageid="ab543cd9-eb36-48bb-869d-f0e87751767b" name="Item Status" type="Data">
<narrative>
</narrative>
<displayx>-165</displayx>
<displayy>375</displayy>
<displaywidth>150</displaywidth>
<displayheight>30</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<datatype>text</datatype>
<initialvalue />
<alwaysinit />
</stage>
<stage stageid="3615f299-65d4-4b0b-ba12-72bd84993bf8" name="Item Attempts" type="Data">
<narrative>
</narrative>
<displayx>-165</displayx>
<displayy>405</displayy>
<displaywidth>150</displaywidth>
<displayheight>30</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<datatype>number</datatype>
<initialvalue />
<alwaysinit />
</stage>
<stage stageid="85fbb578-f410-4f72-8ca9-58513939bc51" name="Get Next Item" type="Action">
<narrative>
</narrative>
<displayx>15</displayx>
<displayy>60</displayy>
<displaywidth>60</displaywidth>
<displayheight>30</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<inputs>
<input type="text" name="Queue Name" narrative="The name of the queue to add items to" expr="[Queue Name]" />
<input type="text" name="Key Filter" narrative="Optionally, a key value to filter by. Only items with this key value will be considered." expr="" />
<input type="text" name="Tag Filter" narrative="Optionally, a tag mask to filter by. The tag should be in the format : ."+wanted tag; -unwanted tag ; other wanted tag"." expr="" />
</inputs>
<outputs>
<output type="text" name="Item ID" narrative="The ID of the item retrieved - empty if there are none available." stage="Item ID" />
<output type="collection" name="Data" narrative="The data associated with the item - a single collection row." stage="Item Data" />
<output type="text" name="Status" narrative="The status of the item." stage="Item Status" />
<output type="number" name="Attempts" narrative="The number of attempts already made to work this item." stage="Item Attempts" />
</outputs>
<onsuccess>10cdebf6-ced7-425b-91dd-2b0b764b5ee0</onsuccess>
<resource object="Blueprism.Automate.clsWorkQueuesActions" action="Get Next Item" />
</stage>
<stage stageid="e7450b45-6166-42c1-b727-c904883265b5" name="Reset Consecutive Exception Indicators" type="MultipleCalculation">
<subsheetid>d599353b-a78b-40f4-ab04-255791b86a1a</subsheetid>
<narrative>
</narrative>
<displayx>450</displayx>
<displayy>30</displayy>
<displaywidth>90</displaywidth>
<displayheight>60</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<onsuccess>f06041aa-ea81-4ef5-b916-b46c6a06f168</onsuccess>
<steps>
<calculation expression="""" stage="Previous Exception Detail" />
<calculation expression="0" stage="Consecutive Exception Count" />
</steps>
</stage>
<stage stageid="30dbe472-0855-41c7-8529-de7b2534c0d4" name="Recover" type="Recover">
<subsheetid>cf13a1fa-a9be-4527-973b-e2f66f99d14b</subsheetid>
<narrative>
</narrative>
<displayx>120</displayx>
<displayy>-75</displayy>
<displaywidth>60</displaywidth>
<displayheight>30</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<onsuccess>587a44d0-cd80-4e8c-8f61-316503d8c9de</onsuccess>
</stage>
<stage stageid="4a3be3ea-fcd3-49fe-bced-219cca2a20f1" name="Resume" type="Resume">
<subsheetid>cf13a1fa-a9be-4527-973b-e2f66f99d14b</subsheetid>
<narrative>
</narrative>
<displayx>120</displayx>
<displayy>45</displayy>
<displaywidth>60</displaywidth>
<displayheight>30</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<onsuccess>4c04f5e3-4f3f-4b53-b500-fd3db5324895</onsuccess>
</stage>
<stage stageid="b060de01-54c4-4d73-90c7-464e72595ef3" name="Close App 1" type="Block">
<subsheetid>cf13a1fa-a9be-4527-973b-e2f66f99d14b</subsheetid>
<narrative>
</narrative>
<displayx>-75</displayx>
<displayy>-120</displayy>
<displaywidth>285</displaywidth>
<displayheight>120</displayheight>
<font family="Tahoma" size="10" style="Regular" color="7FB2E5" />
</stage>
<stage stageid="d08c5e70-1fd1-416b-9fdc-df51ccc54906" name="Exception Type" type="Data">
<subsheetid>5fd952f0-1be2-40e8-8afa-485524c5a5cd</subsheetid>
<narrative>
</narrative>
<displayx>-165</displayx>
<displayy>-15</displayy>
<displaywidth>150</displaywidth>
<displayheight>30</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<datatype>text</datatype>
<initialvalue />
<alwaysinit />
</stage>
<stage stageid="7ec266b2-b0c3-4dca-9e5b-f4cc61966dfa" name="Exception Detail" type="Data">
<subsheetid>5fd952f0-1be2-40e8-8afa-485524c5a5cd</subsheetid>
<narrative>
</narrative>
<displayx>-165</displayx>
<displayy>15</displayy>
<displaywidth>150</displaywidth>
<displayheight>30</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<datatype>text</datatype>
<initialvalue />
<alwaysinit />
</stage>
<stage stageid="b9deef81-8e13-43ef-b6e4-c7554776c97d" name="Get Next Item" type="Action">
<narrative>
</narrative>
<displayx>225</displayx>
<displayy>60</displayy>
<displaywidth>60</displaywidth>
<displayheight>30</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<inputs>
<input type="text" name="Queue Name" narrative="The name of the queue to add items to" expr="[Queue Name]" />
<input type="text" name="Key Filter" narrative="Optionally, a key value to filter by. Only items with this key value will be considered." expr="" />
<input type="text" name="Tag Filter" narrative="Optionally, a tag mask to filter by. The tag should be in the format : ."+wanted tag; -unwanted tag ; other wanted tag"." expr="" />
</inputs>
<outputs>
<output type="text" name="Item ID" narrative="The ID of the item retrieved - empty if there are none available." stage="Item ID" />
<output type="collection" name="Data" narrative="The data associated with the item - a single collection row." stage="Item Data" />
<output type="text" name="Status" narrative="The status of the item." stage="Item Status" />
<output type="number" name="Attempts" narrative="The number of attempts already made to work this item." stage="Item Attempts" />
</outputs>
<onsuccess>10cdebf6-ced7-425b-91dd-2b0b764b5ee0</onsuccess>
<resource object="Blueprism.Automate.clsWorkQueuesActions" action="Get Next Item" />
</stage>
<stage stageid="8f17792f-057d-4155-804d-35098307f65b" name="anchor14" type="Anchor">
<narrative>
</narrative>
<displayx>375</displayx>
<displayy>525</displayy>
<displaywidth>10</displaywidth>
<displayheight>10</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<onsuccess>1ef745eb-5713-4876-9937-47ac6d74b94b</onsuccess>
</stage>
<stage stageid="7cfa842f-7ad3-4458-943f-6d7007300925" name="Note9" type="Note">
<narrative>No more items available</narrative>
<displayx>120</displayx>
<displayy>-90</displayy>
<displaywidth>90</displaywidth>
<displayheight>60</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<onsuccess>22b42ab0-feae-42b2-a098-9871956bb826</onsuccess>
</stage>
<stage stageid="d64ced1f-6499-41a5-b006-5b03a3bd4ed0" name="Stop After Time" type="Data">
<narrative>Used by the process to decide whether to keep working or close itself down. This value can be modified from Control Room to bring a session to an early finish.</narrative>
<displayx>-165</displayx>
<displayy>135</displayy>
<displaywidth>150</displaywidth>
<displayheight>30</displayheight>
<font family="Tahoma" size="10" style="Bold" color="FF0000" />
<datatype>time</datatype>
<initialvalue>17:25:00</initialvalue>
<exposure>Session</exposure>
<private />
<alwaysinit />
</stage>
<stage stageid="aff8912c-98ae-4bb9-84d5-a2eab0253c71" name="Stop After Items" type="Data">
<narrative>Used by the process to decide whether to keep working or close itself down. This value can be modified from Control Room to bring a session to an early finish.</narrative>
<displayx>-165</displayx>
<displayy>165</displayy>
<displaywidth>150</displaywidth>
<displayheight>30</displayheight>
<font family="Tahoma" size="10" style="Bold" color="FF0000" />
<datatype>number</datatype>
<initialvalue>9999999999</initialvalue>
<exposure>Session</exposure>
<private />
<alwaysinit />
</stage>
<stage stageid="eb957176-69ca-436f-b5b8-a0af1c12f549" name="Stopping Control Settings" type="Block">
<narrative>
</narrative>
<displayx>-255</displayx>
<displayy>90</displayy>
<displaywidth>180</displaywidth>
<displayheight>105</displayheight>
<font family="Tahoma" size="10" style="Regular" color="FF0000" />
</stage>
<stage stageid="d303b2cb-0441-445a-8463-956e2863a1d4" name="Queue Name" type="Data">
<narrative>
</narrative>
<displayx>-165</displayx>
<displayy>45</displayy>
<displaywidth>150</displaywidth>
<displayheight>30</displayheight>
<font family="Tahoma" size="10" style="Bold" color="0000FF" />
<datatype>text</datatype>
<initialvalue xml:space="preserve">My Queue</initialvalue>
<alwaysinit />
</stage>
<stage stageid="f9d7ca2d-a983-471c-bc79-408b2230269a" name="Process Settings" type="Block">
<narrative>
</narrative>
<displayx>-255</displayx>
<displayy>0</displayy>
<displaywidth>180</displaywidth>
<displayheight>75</displayheight>
<font family="Tahoma" size="10" style="Regular" color="7FB2E5" />
</stage>
<stage stageid="c46d4291-41ed-4f54-9fce-f5b76838fb18" name="Retry Limit" type="Data">
<subsheetid>bf57723b-f31f-465f-a44d-6b23e78fd2de</subsheetid>
<loginhibit />
<narrative>
</narrative>
<displayx>-135</displayx>
<displayy>45</displayy>
<displaywidth>150</displaywidth>
<displayheight>30</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<datatype>number</datatype>
<initialvalue>3</initialvalue>
<private />
<alwaysinit />
</stage>
<stage stageid="e7d7779b-4ada-4ae1-9722-512eb475bfcd" name="Retry Count" type="Data">
<subsheetid>bf57723b-f31f-465f-a44d-6b23e78fd2de</subsheetid>
<loginhibit />
<narrative>
</narrative>
<displayx>-135</displayx>
<displayy>75</displayy>
<displaywidth>150</displaywidth>
<displayheight>30</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<datatype>number</datatype>
<initialvalue>0</initialvalue>
<private />
<alwaysinit />
</stage>
<stage stageid="6fa1db8d-0510-4c35-8416-9a938e94c78d" name="Exception Data" type="MultipleCalculation">
<narrative>
</narrative>
<displayx>120</displayx>
<displayy>435</displayy>
<displaywidth>90</displaywidth>
<displayheight>60</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<onsuccess>53762061-333e-4023-b99f-1de349dfc4a4</onsuccess>
<steps>
<calculation expression="ExceptionType()" stage="Exception Type" />
<calculation expression="ExceptionDetail()" stage="Exception Detail" />
</steps>
</stage>
<stage stageid="7105b714-612a-4e50-84b3-f789f0634902" name="Note5" type="Note">
<subsheetid>d599353b-a78b-40f4-ab04-255791b86a1a</subsheetid>
<loginhibit />
<narrative>This exception is different from the previous one.</narrative>
<displayx>150</displayx>
<displayy>225</displayy>
<displaywidth>120</displaywidth>
<displayheight>90</displayheight>
<font family="Tahoma" size="10" style="Regular" color="0000FF" />
<onsuccess>9de6523c-e14d-4937-b854-1b0930857c02</onsuccess>
</stage>
<stage stageid="7360eced-01c7-4dc8-a7ef-817d130f1cc5" name="Note5" type="Note">
<subsheetid>d599353b-a78b-40f4-ab04-255791b86a1a</subsheetid>
<loginhibit />
<narrative>This exception is the same as the previous one but the consecutive exception limit has not yet been reached.</narrative>
<displayx>150</displayx>
<displayy>375</displayy>
<displaywidth>120</displaywidth>
<displayheight>90</displayheight>
<font family="Tahoma" size="10" style="Regular" color="0000FF" />
<onsuccess>64a4e876-5092-4568-829b-73faed844a31</onsuccess>
</stage>
<stage stageid="daa36ca6-f942-4ebc-86fc-8ba76b19cb4d" name="Note5" type="Note">
<subsheetid>d599353b-a78b-40f4-ab04-255791b86a1a</subsheetid>
<loginhibit />
<narrative>Don't retry this type of exception, just mark the queue item and carry on.</narrative>
<displayx>225</displayx>
<displayy>30</displayy>
<displaywidth>120</displaywidth>
<displayheight>90</displayheight>
<font family="Tahoma" size="10" style="Regular" color="0000FF" />
<onsuccess>a97071fe-23f0-44d4-a04a-1516826f8ace</onsuccess>
</stage>
<stage stageid="52e45164-64b2-41fd-b6da-09c88ec7cdf7" name="Mark Exception" type="Action">
<subsheetid>d599353b-a78b-40f4-ab04-255791b86a1a</subsheetid>
<narrative>
</narrative>
<displayx>15</displayx>
<displayy>150</displayy>
<displaywidth>60</displaywidth>
<displayheight>30</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<inputs>
<input type="text" name="Item ID" narrative="The ID of the item to mark" expr="[Item ID]" />
<input type="text" name="Exception Reason" narrative="A description of the reason for the exception" expr="[Exception Detail]" />
<input type="flag" name="Retry" narrative="Whether or not to retry the item, up to the maximum number of attempts specified for the queue. Optional - if not specified, the item will be retried" expr="True" />
<input type="flag" name="Keep Locked" narrative="Whether or not the clone of the item should remain locked after the exception has been registered and the item is retried. Optional - default is False" expr="False" />
</inputs>
<outputs>
<output type="text" name="New Item ID" narrative="The Item ID of the newly cloned item. This item will be locked if 'Keep Locked' is True. This will be empty if no item was cloned (ie. the item was not retried." stage="New Item ID" />
</outputs>
<onsuccess>a374264f-2dbf-4477-bad7-ee4ba812e5b1</onsuccess>
<resource object="Blueprism.Automate.clsWorkQueuesActions" action="Mark Exception" />
</stage>
<stage stageid="a97071fe-23f0-44d4-a04a-1516826f8ace" name="Mark Exception" type="Action">
<subsheetid>d599353b-a78b-40f4-ab04-255791b86a1a</subsheetid>
<narrative>
</narrative>
<displayx>345</displayx>
<displayy>30</displayy>
<displaywidth>60</displaywidth>
<displayheight>30</displayheight>
<font family="Tahoma" size="10" style="Regular" color="000000" />
<inputs>
<input type="text" name="Item ID" narrative="The ID of the item to mark" expr="[Item ID]" />
<input type="text" name="Exception Reason" narrative="A description of the reason for the exception" expr="[Exception Detail]" />
<input type="flag" name="Retry" narrative="Whether or not to retry the item, up to the maximum number of attempts specified for the queue. Optional - if not specified, the item will be retried" expr="False" />
<input type="flag" name="Keep Locked" narrative="Whether or not the clone of the item should remain locked after the exception has been registered and the item is retried. Optional - default is False" expr="False" />
</inputs>
<outputs>
<output type="text" name="New Item ID" narrative="The Item ID of the newly cloned item. This item will be locked if 'Keep Locked' is True. This will be empty if no item was cloned (ie. the item was not retried." stage="New Item ID" />
</outputs>
<onsuccess>e7450b45-6166-42c1-b727-c904883265b5</onsuccess>
<resource object="Blueprism.Automate.clsWorkQueuesActions" action="Mark Exception" />
</stage>
<stage stageid="f06041aa-ea81-4ef5-b916-b46c6a06f168" name="End1" type="End">
<subsheetid>d599353b-a78b-40f4-ab04-255791b86a1a</subsheetid>