-
Notifications
You must be signed in to change notification settings - Fork 0
/
EnterStudentComment.xaml
956 lines (956 loc) · 97.4 KB
/
EnterStudentComment.xaml
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
<Activity mc:Ignorable="sap sap2010" x:Class="EnterStudentComment" xmlns="http://schemas.microsoft.com/netfx/2009/xaml/activities" xmlns:f="clr-namespace:Flinders_Foundation;assembly=Flinders.Foundation" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mva="clr-namespace:Microsoft.VisualBasic.Activities;assembly=System.Activities" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:sap="http://schemas.microsoft.com/netfx/2009/xaml/activities/presentation" xmlns:sap2010="http://schemas.microsoft.com/netfx/2010/xaml/activities/presentation" xmlns:scg="clr-namespace:System.Collections.Generic;assembly=mscorlib" xmlns:sco="clr-namespace:System.Collections.ObjectModel;assembly=mscorlib" xmlns:ui="http://schemas.uipath.com/workflow/activities" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<x:Members>
<x:Property sap2010:Annotation.AnnotationText="A flag indicating if the activity successfully completed its process" Name="ProcessSuccessful" Type="OutArgument(x:Boolean)" />
<x:Property sap2010:Annotation.AnnotationText="A message providing context to the success, or failure of the process undertaken by this activity" Name="ProcessMessage" Type="OutArgument(x:String)" />
<x:Property sap2010:Annotation.AnnotationText="The four digit year to be entered into the window" Name="StudyYear" Type="InArgument(x:String)" />
<x:Property sap2010:Annotation.AnnotationText="The study period (semester) to be entered into the window" Name="StudyPeriod" Type="InArgument(x:String)" />
<x:Property sap2010:Annotation.AnnotationText="The version of the course (Study Package) to be entered into the window" Name="StudyPackageVersion" Type="InArgument(x:String)" />
<x:Property sap2010:Annotation.AnnotationText="The student's attempt of the course (Study Package) to be entered into the window" Name="StudyPackageAttempt" Type="InArgument(x:String)" />
<x:Property sap2010:Annotation.AnnotationText="Reference to the current active browser tab" Name="ActiveBrowser" Type="InOutArgument(ui:Browser)" />
<x:Property sap2010:Annotation.AnnotationText="The unique id number of the student to be entered into the window" Name="StudentID" Type="InArgument(x:String)" />
<x:Property sap2010:Annotation.AnnotationText="The comment code identifying the type of comment that is to be entered" Name="CommentCode" Type="InArgument(x:String)" />
<x:Property sap2010:Annotation.AnnotationText="The code of the course (Study Package) to be entered into the Spk Cd field on the Student Comments window" Name="StudyPackageCode" Type="InArgument(x:String)" />
</x:Members>
<mva:VisualBasic.Settings>
<x:Null />
</mva:VisualBasic.Settings>
<sap2010:Annotation.AnnotationText>UPTF00000138eyI8SGVscExpbms+a19fQmFja2luZ0ZpZWxkIjoiaHR0cHM6XC9cL2dpdGh1Yi5jb21cL2ZsaW5kZXJzdW5pXC9ycGEtRmxpbmRlcnMuRm91bmRhdGlvbi5TdHVkZW50U3lzdGVtXC93aWtpXC9FbnRlclN0dWRlbnRDb21tZW50IiwiPEluaXRpYWxUb29sdGlwPmtfX0JhY2tpbmdGaWVsZCI6IkVudGVyIGEgY29tbWVudCByZWNvcmQgZm9yIGEgc3R1ZGVudCIsIjxWZXJzaW9uPmtfX0JhY2tpbmdGaWVsZCI6MX0=</sap2010:Annotation.AnnotationText>
<sap:VirtualizedContainerService.HintSize>1108,15895.2</sap:VirtualizedContainerService.HintSize>
<sap2010:WorkflowViewState.IdRef>ActivityBuilder_1</sap2010:WorkflowViewState.IdRef>
<TextExpression.NamespacesForImplementation>
<sco:Collection x:TypeArguments="x:String">
<x:String>System.Activities</x:String>
<x:String>System.Activities.Statements</x:String>
<x:String>System.Activities.Expressions</x:String>
<x:String>System.Activities.Validation</x:String>
<x:String>System.Activities.XamlIntegration</x:String>
<x:String>Microsoft.VisualBasic</x:String>
<x:String>Microsoft.VisualBasic.Activities</x:String>
<x:String>System</x:String>
<x:String>System.Collections</x:String>
<x:String>System.Collections.Generic</x:String>
<x:String>System.Data</x:String>
<x:String>System.Diagnostics</x:String>
<x:String>System.Drawing</x:String>
<x:String>System.IO</x:String>
<x:String>System.Linq</x:String>
<x:String>System.Net.Mail</x:String>
<x:String>System.Xml</x:String>
<x:String>System.Xml.Linq</x:String>
<x:String>System.Windows.Markup</x:String>
<x:String>UiPath.Core</x:String>
<x:String>UiPath.Core.Activities</x:String>
<x:String>Microsoft.VisualBasic.CompilerServices</x:String>
<x:String>System.Reflection</x:String>
<x:String>System.Runtime.InteropServices</x:String>
<x:String>System.Collections.ObjectModel</x:String>
<x:String>System.Activities.DynamicUpdate</x:String>
</sco:Collection>
</TextExpression.NamespacesForImplementation>
<TextExpression.ReferencesForImplementation>
<sco:Collection x:TypeArguments="AssemblyReference">
<AssemblyReference>System.Activities</AssemblyReference>
<AssemblyReference>Microsoft.VisualBasic</AssemblyReference>
<AssemblyReference>mscorlib</AssemblyReference>
<AssemblyReference>System.Data</AssemblyReference>
<AssemblyReference>System.Data.DataSetExtensions</AssemblyReference>
<AssemblyReference>System</AssemblyReference>
<AssemblyReference>System.Drawing</AssemblyReference>
<AssemblyReference>System.Core</AssemblyReference>
<AssemblyReference>System.Xml</AssemblyReference>
<AssemblyReference>System.Xml.Linq</AssemblyReference>
<AssemblyReference>PresentationFramework</AssemblyReference>
<AssemblyReference>WindowsBase</AssemblyReference>
<AssemblyReference>PresentationCore</AssemblyReference>
<AssemblyReference>System.Xaml</AssemblyReference>
<AssemblyReference>UiPath.System.Activities</AssemblyReference>
<AssemblyReference>UiPath.UiAutomation.Activities</AssemblyReference>
<AssemblyReference>System.ServiceModel</AssemblyReference>
<AssemblyReference>System.ValueTuple</AssemblyReference>
<AssemblyReference>Microsoft.Bcl.AsyncInterfaces</AssemblyReference>
<AssemblyReference>System.Memory</AssemblyReference>
<AssemblyReference>UiPath.Excel</AssemblyReference>
<AssemblyReference>UiPath.Mail</AssemblyReference>
<AssemblyReference>UiPath.OCR.Activities.Design</AssemblyReference>
<AssemblyReference>UiPath.UIAutomationCore</AssemblyReference>
<AssemblyReference>UiPath.System.Activities.Design</AssemblyReference>
</sco:Collection>
</TextExpression.ReferencesForImplementation>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="ShouldExpandAll">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<Sequence sap2010:Annotation.AnnotationText="Enter a comment record for a student" DisplayName="EnterStudentComment" sap:VirtualizedContainerService.HintSize="1118.4,15830.4" sap2010:WorkflowViewState.IdRef="Sequence_2">
<Sequence.Variables>
<Variable x:TypeArguments="scg:List(x:String)" sap2010:Annotation.AnnotationText="A short list of known valid Study Periods" Default="[new System.Collections.Generic.List(Of String)(new String(){"Semester 1","Semester 2","Summer","Jan to Jun Non-Semester","Jul to Dec Non-Semester","Non-Semester Study Period"})]" Name="validStudyPeriods" />
<Variable x:TypeArguments="x:Boolean" sap2010:Annotation.AnnotationText="A flag indicating if a specific Ui element exists or not" Name="elementExists" />
<Variable x:TypeArguments="x:Int32" sap2010:Annotation.AnnotationText="The default delay value for interacting with UI elements" Default="10000" Name="defaultDelayValue" />
</Sequence.Variables>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<Sequence sap2010:Annotation.AnnotationText="Initialise outgoing arguments" sap:VirtualizedContainerService.HintSize="1076.8,284" sap2010:WorkflowViewState.IdRef="Sequence_1">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">False</x:Boolean>
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
<x:Boolean x:Key="IsPinned">False</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<Assign sap:VirtualizedContainerService.HintSize="262.4,60" sap2010:WorkflowViewState.IdRef="Assign_1">
<Assign.To>
<OutArgument x:TypeArguments="x:Boolean">[ProcessSuccessful]</OutArgument>
</Assign.To>
<Assign.Value>
<InArgument x:TypeArguments="x:Boolean">False</InArgument>
</Assign.Value>
</Assign>
<Assign sap:VirtualizedContainerService.HintSize="262.4,60" sap2010:WorkflowViewState.IdRef="Assign_2">
<Assign.To>
<OutArgument x:TypeArguments="x:String">[ProcessMessage]</OutArgument>
</Assign.To>
<Assign.Value>
<InArgument x:TypeArguments="x:String">[String.Empty]</InArgument>
</Assign.Value>
</Assign>
</Sequence>
<Sequence sap2010:Annotation.AnnotationText="Validate, as much as possible, incoming arguments" sap:VirtualizedContainerService.HintSize="1076.8,2065.6" sap2010:WorkflowViewState.IdRef="Sequence_3">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">False</x:Boolean>
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
<x:Boolean x:Key="IsPinned">False</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<TryCatch sap2010:Annotation.AnnotationText="Catch any exceptions and throw a BusinessRule Exception instead" DisplayName="Try Catch" sap:VirtualizedContainerService.HintSize="436.8,1941.6" sap2010:WorkflowViewState.IdRef="TryCatch_1">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
<x:Boolean x:Key="IsPinned">False</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<TryCatch.Try>
<Sequence sap2010:Annotation.AnnotationText="Validate, as much as possible, the incoming arguments." sap:VirtualizedContainerService.HintSize="375.2,755.2" sap2010:WorkflowViewState.IdRef="Sequence_5">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:CheckTrue sap2010:Annotation.AnnotationText="Check the Study Year argument" DisplayName="Check True" ErrorMessage="[String.Format("The StudyYear value '{0}' is not 4 characters in length or is not a numeric value", StudyYear)]" Expression="[Information.isNumeric(StudyYear) = True AND StudyYear.ToString.Length = 4]" sap:VirtualizedContainerService.HintSize="333.6,119.2" sap2010:WorkflowViewState.IdRef="CheckTrue_1">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:CheckTrue>
<ui:CheckTrue DisplayName="Check True" ErrorMessage="[String.Format("The StudyPeriod value '{0}' is not a valid entry", StudyPeriod)]" Expression="[validStudyPeriods.Contains(StudyPeriod)]" sap:VirtualizedContainerService.HintSize="333.6,88" sap2010:WorkflowViewState.IdRef="CheckTrue_2" />
<ui:CheckTrue DisplayName="Check True" ErrorMessage="[String.Format("The StudentID value '{0}' is not numeric", StudentID)]" Expression="[Information.isNumeric(StudentID)]" sap:VirtualizedContainerService.HintSize="333.6,88" sap2010:WorkflowViewState.IdRef="CheckTrue_8" />
<ui:CheckTrue DisplayName="Check True" ErrorMessage="[String.Format("The StudyPackageVersion value '{0}' is not numeric", StudyPackageVersion)]" Expression="[Information.isNumeric(StudyPackageVersion)]" sap:VirtualizedContainerService.HintSize="333.6,88" sap2010:WorkflowViewState.IdRef="CheckTrue_3" />
<ui:CheckTrue DisplayName="Check True" ErrorMessage="[String.Format("The StudyPackageAttempt value '{0}' is not numeric", StudyPackageAttempt)]" Expression="[Information.isNumeric(StudyPackageAttempt)]" sap:VirtualizedContainerService.HintSize="333.6,88" sap2010:WorkflowViewState.IdRef="CheckTrue_4" />
</Sequence>
</TryCatch.Try>
<TryCatch.Catches>
<Catch x:TypeArguments="s:Exception" sap:VirtualizedContainerService.HintSize="403.2,420.8" sap2010:WorkflowViewState.IdRef="Catch`1_1">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">False</x:Boolean>
<x:Boolean x:Key="IsPinned">False</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ActivityAction x:TypeArguments="s:Exception">
<ActivityAction.Argument>
<DelegateInArgument x:TypeArguments="s:Exception" Name="exception" />
</ActivityAction.Argument>
<Sequence sap2010:Annotation.AnnotationText="Log the underlying exception and throw a BusinessRule exception." sap:VirtualizedContainerService.HintSize="375.2,350.4" sap2010:WorkflowViewState.IdRef="Sequence_4">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:LogMessage DisplayName="Log Message" sap:VirtualizedContainerService.HintSize="333.6,92.8" sap2010:WorkflowViewState.IdRef="LogMessage_1" Level="Error" Message="[exception]" />
<f:ThrowBusinessRuleException sap:VirtualizedContainerService.HintSize="333.6,80.8" sap2010:WorkflowViewState.IdRef="ThrowBusinessRuleException_1" Message="Input to this activity did not pass validation" TakeScreenshot="False" />
</Sequence>
</ActivityAction>
</Catch>
<Catch x:TypeArguments="ui:CheckpointException" sap:VirtualizedContainerService.HintSize="403.2,420.8" sap2010:WorkflowViewState.IdRef="Catch`1_2">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">False</x:Boolean>
<x:Boolean x:Key="IsPinned">False</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ActivityAction x:TypeArguments="ui:CheckpointException">
<ActivityAction.Argument>
<DelegateInArgument x:TypeArguments="ui:CheckpointException" Name="exception" />
</ActivityAction.Argument>
<Sequence sap2010:Annotation.AnnotationText="Log the underlying exception and throw a BusinessRule exception." sap:VirtualizedContainerService.HintSize="375.2,350.4" sap2010:WorkflowViewState.IdRef="Sequence_6">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:LogMessage DisplayName="Log Message" sap:VirtualizedContainerService.HintSize="333.6,92.8" sap2010:WorkflowViewState.IdRef="LogMessage_2" Level="Error" Message="[exception]" />
<f:ThrowBusinessRuleException sap:VirtualizedContainerService.HintSize="333.6,80.8" sap2010:WorkflowViewState.IdRef="ThrowBusinessRuleException_2" Message="[exception.Message]" TakeScreenshot="False" />
</Sequence>
</ActivityAction>
</Catch>
</TryCatch.Catches>
</TryCatch>
</Sequence>
<TryCatch sap2010:Annotation.AnnotationText="Try to get a reference to the browser session that has the Ci Application running within it. " DisplayName="Try Catch" sap:VirtualizedContainerService.HintSize="1076.8,1580.8" sap2010:WorkflowViewState.IdRef="TryCatch_6">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
<x:Boolean x:Key="IsPinned">False</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<TryCatch.Try>
<Sequence sap2010:Annotation.AnnotationText="Check to see if a browser instance has been passed into the workflow" sap:VirtualizedContainerService.HintSize="1036,828.8" sap2010:WorkflowViewState.IdRef="Sequence_27">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<If sap2010:Annotation.AnnotationText="Was the ActiveBrower argument set?" Condition="[Information.IsNothing(ActiveBrowser) = True]" sap:VirtualizedContainerService.HintSize="994.4,572" sap2010:WorkflowViewState.IdRef="If_2">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<If.Then>
<Sequence sap2010:Annotation.AnnotationText="ActiveBrowser argument is not set" sap:VirtualizedContainerService.HintSize="475.2,381.6" sap2010:WorkflowViewState.IdRef="Sequence_25">
<Sequence.Variables>
<Variable x:TypeArguments="x:String" sap2010:Annotation.AnnotationText="The URL in Okta for the specified Student Management System environment." Name="studentSystemUrl" />
</Sequence.Variables>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:LogMessage DisplayName="Log Message" sap:VirtualizedContainerService.HintSize="433.6,92.8" sap2010:WorkflowViewState.IdRef="LogMessage_22" Level="Trace" Message="["ActiveBrowser argument not set, attempting to bind to browser"]" />
<ui:BrowserScope Browser="{x:Null}" SearchScope="{x:Null}" TimeoutMS="{x:Null}" BrowserType="IE" DisplayName="Attach Browser" sap:VirtualizedContainerService.HintSize="433.6,124.8" sap2010:WorkflowViewState.IdRef="BrowserScope_7" Selector="<html title='TechnologyOne' />" UiBrowser="[ActiveBrowser]">
<ui:BrowserScope.Body>
<ActivityAction x:TypeArguments="x:Object">
<ActivityAction.Argument>
<DelegateInArgument x:TypeArguments="x:Object" Name="ContextTarget" />
</ActivityAction.Argument>
</ActivityAction>
</ui:BrowserScope.Body>
</ui:BrowserScope>
</Sequence>
</If.Then>
<If.Else>
<Sequence sap2010:Annotation.AnnotationText="ActiveBrowser argument is set" sap:VirtualizedContainerService.HintSize="475.2,381.6" sap2010:WorkflowViewState.IdRef="Sequence_26">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:LogMessage DisplayName="Log Message" sap:VirtualizedContainerService.HintSize="433.6,92.8" sap2010:WorkflowViewState.IdRef="LogMessage_23" Level="Trace" Message="["ActiveBrowser argument was set, attempting to use it"]" />
<ui:BrowserScope SearchScope="{x:Null}" Selector="{x:Null}" TimeoutMS="{x:Null}" Browser="[ActiveBrowser]" BrowserType="IE" DisplayName="Attach Browser" sap:VirtualizedContainerService.HintSize="433.6,124.8" sap2010:WorkflowViewState.IdRef="BrowserScope_8" UiBrowser="[ActiveBrowser]">
<ui:BrowserScope.Body>
<ActivityAction x:TypeArguments="x:Object">
<ActivityAction.Argument>
<DelegateInArgument x:TypeArguments="x:Object" Name="ContextTarget" />
</ActivityAction.Argument>
</ActivityAction>
</ui:BrowserScope.Body>
</ui:BrowserScope>
</Sequence>
</If.Else>
</If>
<ui:LogMessage DisplayName="Log Message" sap:VirtualizedContainerService.HintSize="994.4,92.8" sap2010:WorkflowViewState.IdRef="LogMessage_24" Level="Trace" Message="[String.Format("Reference to the browser '{0}' has been acquired.", ActiveBrowser)]" />
</Sequence>
</TryCatch.Try>
<TryCatch.Catches>
<Catch x:TypeArguments="s:Exception" sap:VirtualizedContainerService.HintSize="1039.2,408" sap2010:WorkflowViewState.IdRef="Catch`1_10">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">False</x:Boolean>
<x:Boolean x:Key="IsPinned">False</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ActivityAction x:TypeArguments="s:Exception">
<ActivityAction.Argument>
<DelegateInArgument x:TypeArguments="s:Exception" Name="exception" />
</ActivityAction.Argument>
<Sequence sap2010:Annotation.AnnotationText="Catch any exceptions and throw a BusinessRuleException" sap:VirtualizedContainerService.HintSize="375.2,337.6" sap2010:WorkflowViewState.IdRef="Sequence_28">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:LogMessage DisplayName="Log Message" sap:VirtualizedContainerService.HintSize="333.6,92.8" sap2010:WorkflowViewState.IdRef="LogMessage_25" Level="Error" Message="[exception]" />
<f:ThrowBusinessRuleException sap:VirtualizedContainerService.HintSize="333.6,80.8" sap2010:WorkflowViewState.IdRef="ThrowBusinessRuleException_10" Message="[String.Format("Attempt to use the active Ci Application session failed")]" TakeScreenshot="True" />
</Sequence>
</ActivityAction>
</Catch>
</TryCatch.Catches>
</TryCatch>
<TryCatch sap2010:Annotation.AnnotationText="Try to lookup the student record by Student id" DisplayName="Try Catch" sap:VirtualizedContainerService.HintSize="1076.8,3230.4" sap2010:WorkflowViewState.IdRef="TryCatch_3">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
<x:Boolean x:Key="IsPinned">False</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<TryCatch.Try>
<ui:BrowserScope SearchScope="{x:Null}" Selector="{x:Null}" TimeoutMS="{x:Null}" UiBrowser="{x:Null}" Browser="[ActiveBrowser]" BrowserType="IE" DisplayName="Attach Browser" sap:VirtualizedContainerService.HintSize="558.4,2044" sap2010:WorkflowViewState.IdRef="BrowserScope_4" InformativeScreenshot="6cdfb571e508b9f9ce414f745e7094bb">
<ui:BrowserScope.Body>
<ActivityAction x:TypeArguments="x:Object">
<ActivityAction.Argument>
<DelegateInArgument x:TypeArguments="x:Object" Name="ContextTarget" />
</ActivityAction.Argument>
<Sequence sap2010:Annotation.AnnotationText="Enter the criteria and search for the student's record" DisplayName="Do" sap:VirtualizedContainerService.HintSize="524.8,1896.8" sap2010:WorkflowViewState.IdRef="Sequence_15">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:LogMessage DisplayName="Log Message" sap:VirtualizedContainerService.HintSize="483.2,92.8" sap2010:WorkflowViewState.IdRef="LogMessage_8" Level="Info" Message="["Process start: Enter student comment"]" />
<ui:ImageFound sap2010:Annotation.AnnotationText="Check to see if the expected window heading and empty field are available. An accuracy value of 0.9 is required for a more confident match." DisplayName="Image Exists" Found="[elementExists]" sap:VirtualizedContainerService.HintSize="483.2,167.2" sap2010:WorkflowViewState.IdRef="ImageFound_2">
<ui:ImageFound.Image>
<ui:ImageTarget Image="{x:Null}" Accuracy="0.9" Profile="Basic" TargetImageBase64="iVBORw0KGgoAAAANSUhEUgAAARYAAABBCAYAAAAUsYu0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAATLSURBVHhe7djBjRtHEIXhDcc6OgwrA+tmKAJDKQiKwEdDN6WzykAKwUcfabeMZzyUqrp7hk1qOfN/QMHsqhpysTP7YPHpAgCLESwAliNYACxHsABYjmABsBzBAmA5ggXAcgQLgOW6wfL+w6e07uXenzfLfxcv9WcEfqQyWLI/Hq97uOdnzfLfQVYAimDp/aFks2r3Wrd632j2c7SX7fZmZ8bv5Jy6wVKJ89H+Xrd632j2c0Z7s+9zJvxOzmlXsDjt+jX+Oqpm6vvcXzvfG+34a+9Jb+ZG8x5//+p9vF/tVf3G+9Ve1Xe+U+163/fUk2oW+z7DMQz/KTS66dmuv46ymXpVuWyuctncS6p+NJpX/L1juWyuquYum6uqeZTtqFw295KsH3teOI7yy9tm9ubH2Z7duJ/1s16T9bNek/WzvWhmJ9I18bqsn/WaUV9Ge1VfRnvez3pN1h+dm6yHx9YNFtGN93Kxl+3Io+3KzE7UuybOqt3Z/uyexH6116zc1dl7OJ6pYHHZgzE6uxW7vZJ4dlt2ZWYn6l0TZ9XubH92T2Jf515JPLuZXfWyGY5hc7A08YEYnd2K3V5JPLstuzKzE/WuibNqd7Y/uyexr3OvJJ7dnt3eDh5T98vbSpyPzu5Wu1FvN856u260F+e9/dnd2f7snsR+tZfp7cZZb1dmdvBYusGS3exsVp2912T9rNdk/awn1W5my67TXrabzbJek/WzvWa2P7snsa/zlt3MaDeem6yHx1b+U0g3uyqX9b2XlcvmXi6bq1zWkzjTudp3vptVlO2oXNZrZvuze5L11cvKZT2JM53V83MsHEf3O5bs5rfKZDO/RjN/7XxPc3/tfG+0k8lmvf1Iu149M/vX9mf3ZNT3iqp+k81iT2cvHMuuL28BoIdgAbAcwQJgOYIFwHIEC4DlCBYAyxEsAJYjWAAsR7AAWI5gAbAcwQJgOYIFwHIEC4DlCJaDef/hD4q6W1UIloPp3Wygeff7uyVFsJwIwYKRFgpfvn65qgiWk/Gb/fTE7cX3CBZsRrBgJAbL619ef1c+z4pgORmCBSMeLC1E3n58vjz/dfm/2rk9Ox4ksW4SLO1DVdda/fD33i+bqbf65/hRCBaMKFg8VGQ2XJYHS3xY/bznQd778FfX9d5vzzWPhmDBiAeLh0qjYPn0+e9vz08MFNXNg8XteZD3PvzVdVt/PvX2/hwvDcGCkSpYFCovMlg0j3t+1p5Kqp7+G/t+ltjTnu/HnSMhWDASgyVWC5W7B0ujP9L44Pq5mu3p+6zal2xXqmuOhGDBiAdL/OJWoXL371ii6g85PtQ69/qx1HdVX7xfXXtkBAtGFCytXv306luIKFA8VP787b+/Qw8U1UMFS+aa/eraIyNYMOLB0qo9J7GeP/78b70tw2V5sLQPcX7uvdbZ+82qvni/uvbICBaMxGDJ6s2vb7rhcpP/Y2kfooq85ztZ3+dN1XO9WZPte6l3VAQLRmaCpVUvXG4SLHi5CBaMzAZLK4ULwXJyvZsNNFuCpVULFA+VVgTLyRAsGNkaLFkRLCdDsGCEYMFmBAtGWiisKILlRNrNpqh7VYVgAbAcwQJgOYIFwHIEC4DlCBYAyxEsAJYjWAAsR7AAWI5gAbDY5fIPk3CLlrxgxaEAAAAASUVORK5CYII=" />
</ui:ImageFound.Image>
<ui:ImageFound.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="35f97e96-423a-4f5b-882b-6114bea6649d" TimeoutMS="[Cint(defaultDelayValue * 0.5)]" WaitForReady="INTERACTIVE" />
</ui:ImageFound.Target>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:ImageFound>
<ui:CheckTrue sap2010:Annotation.AnnotationText="Check to make sure the standard heading was found" DisplayName="Check True" ErrorMessage="Student Comments window does not appear to be open as expected" Expression="[elementExists]" sap:VirtualizedContainerService.HintSize="483.2,119.2" sap2010:WorkflowViewState.IdRef="CheckTrue_5">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:CheckTrue>
<ui:ClickImage ContinueOnError="{x:Null}" DelayBefore="{x:Null}" DelayMS="{x:Null}" sap2010:Annotation.AnnotationText="Click to the right of the Student Id label to enter into the field" ClickType="CLICK_SINGLE" DisplayName="Click" sap:VirtualizedContainerService.HintSize="483.2,200" sap2010:WorkflowViewState.IdRef="ClickImage_1" KeyModifiers="None" MouseButton="BTN_LEFT" SendWindowMessages="False">
<ui:ClickImage.CursorPosition>
<ui:CursorPosition OffsetX="26" OffsetY="15" Position="TopRight" />
</ui:ClickImage.CursorPosition>
<ui:ClickImage.Image>
<ui:ImageTarget Image="{x:Null}" Accuracy="0.8" Profile="Basic" TargetImageBase64="iVBORw0KGgoAAAANSUhEUgAAAHAAAAAZCAYAAADpG6rZAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAAFiUAABYlAUlSJPAAAAD5SURBVGhD7ZHhqkMhDIN9/5c+F3/kEsS40Tq2QD6QzbQ91GQ8wZoEaE4CNCcBmpMAzUmA5iRAcxKgOQnQnHaAY4z/0+XGN5jT93Y1aLf3+CStTdeH8r1iQtU4NXf6XmXmF2ltWzHoRNW8Shi7GrTqHt+gtekrg5QhfEcfDlAafled72DV0Mf9a48b7e1XQwDfVa2ic031g10vUDNuXH2FMkyZd9LXA51ROmBdzbpz9RXKMGXeuzro9KtZd1qvOJly+o8765NbOmBdzbrTfsU0AmeFNe7Z6VyfKI051Sa7fj7QnPHePiRAdxKgOQnQnARoTgI0JwFa8zx/k5oJRmYU2jsAAAAASUVORK5CYII=" />
</ui:ClickImage.Image>
<ui:ClickImage.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="5e8026d2-993f-4cf0-b54b-457bcc72e7fc" WaitForReady="INTERACTIVE">
<ui:Target.TimeoutMS>
<InArgument x:TypeArguments="x:Int32" />
</ui:Target.TimeoutMS>
</ui:Target>
</ui:ClickImage.Target>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:ClickImage>
<ui:TypeInto DelayBefore="{x:Null}" DelayBetweenKeys="{x:Null}" DelayMS="{x:Null}" Activate="True" AlterIfDisabled="True" sap2010:Annotation.AnnotationText="Type the provided Student ID into the Student Id field" ClickBeforeTyping="False" DisplayName="Type" EmptyField="True" sap:VirtualizedContainerService.HintSize="483.2,166.4" sap2010:WorkflowViewState.IdRef="TypeInto_1" SendWindowMessages="False" SimulateType="False" Text="[StudentID]">
<ui:TypeInto.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Id="7bbfda49-99a0-40b1-b9fc-7d81acbe4af4" InformativeScreenshot="97e8090e3c5f230af44944b0e60a7a5f" Selector="<webctrl id='JWTS_myCanvas' tag='CANVAS' />" WaitForReady="INTERACTIVE">
<ui:Target.TimeoutMS>
<InArgument x:TypeArguments="x:Int32" />
</ui:Target.TimeoutMS>
</ui:Target>
</ui:TypeInto.Target>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:TypeInto>
<ui:InvokeWorkflowFile ContinueOnError="{x:Null}" DisplayName="Invoke Workflow File" sap:VirtualizedContainerService.HintSize="483.2,113.6" sap2010:WorkflowViewState.IdRef="InvokeWorkflowFile_1" UnSafe="False" WorkflowFileName="ClickRetrieveButton.xaml">
<ui:InvokeWorkflowFile.Arguments>
<scg:Dictionary x:TypeArguments="x:String, Argument" />
</ui:InvokeWorkflowFile.Arguments>
</ui:InvokeWorkflowFile>
<ui:ImageFound sap2010:Annotation.AnnotationText="Check to see if an error has occurred, and a student record could not be found." DisplayName="Image Exists" Found="[elementExists]" sap:VirtualizedContainerService.HintSize="483.2,151.2" sap2010:WorkflowViewState.IdRef="ImageFound_3">
<ui:ImageFound.Image>
<ui:ImageTarget Image="{x:Null}" Accuracy="0.8" Profile="Basic" TargetImageBase64="iVBORw0KGgoAAAANSUhEUgAAAKgAAAAQCAYAAACC0jSsAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAN/SURBVGhD7Zg9btwwEIV1ldwgOYa3S65g5AQLl+l8ikBwl2PsNgG23HTrzilcbJFiixQuGc6IMyRn+KtoHSDWAwZrkRQ5fPxEyhpMg8b3HzCOn2/5d9Wq11ARUIDxfhgmKL+O5vD9gL8hsKtWXVNZQAnOb8M7c7R/nx5PCOjTzyd7fYvlWDcH0ufRbGzfQyrudq7RFUXj34zmnLpeRDuzxTlt7V9vQFfxMANoCCcB+vL7hQOuqW4WpCVAIboneTbjzcaMz+6ypjcJaKdHvZrlYT0nBSi9ZxKYFJfHA9afz6cIToou5SYTgLvdu7KqCIS/MP+/B3QBjxZXW04KUH6/FGHsuycIQE0B2rWLloDYbxHQ+Kinybjg+0Q5BN1H/QTB0MvxU/mo+2uLG+ey3dN1DOjuzreB2DwUHokwrygfnUu+34JHSjmf7cb0sBFlsPtN7XCsLg/bc0oCisABlC4QUgcg/B6HqewqgKq6xGS4PjNR6kOFg0WOIa8TcEf3K2VyxKB7/IKqyAGTnYcN9qfWbysMJZ9BMZAK2C4PW3NKAMrACUDNx09Yj4C6Mgpu3yo5mVC8KNPCshHBBGi3mHZEmmxphxNt5Pg5c3PgSPFieIA5byrjNkGePNdM7lwf7P5yrKZ+6x7VfbYK8smO2exhy7oVACU4I0h/HCMwo1h6B3ULII+uMKZjrDRRqqNwbeT4Kh95n40CrLS48XFNfcQPWtzGz0+Wo4QXk+b0W/JoUt3nSf7BC8AFdXtYzwmUPeKTgH65x51UwQmxFKD05Lm6WYBmzWoFlCRNTpt5dUCjvOb0m/BIqBXQqF0IXLeH9ZxAClAATR7xeLwHH+rxmsC0gUD3qGEy9HTyE5vdwejdyE9ULTqNR23k+Nl8vIogyWPXyu80rqzpKBZK5hUD2tav9kiq7rMVj+VDHf/NHtZzAilAQfRffAgofP+8/LrgLwHKkPbsniA2MBPJBZEhzXdhDfZwyHD3SDPFdfV+pVyOEAStyDOMHBTJRReANvWrPdKq+ezrEUr5UHZ7mMiJuaC5ZQAFKUjt+ycIII130E44QZyIjuQOpcyLQYnMQIPiyUOf1Ab7lwufAqG0WyQV57j4ZyZX5Mfp61d7lFLeZ+4/gJv7DOHq8FDlxFw0AAoKPzkhrPIdtHfnXLWqU0VASQAiQ7mCueoV1QToqlX/Rsb8ATQ9J3aPBL8oAAAAAElFTkSuQmCC" />
</ui:ImageFound.Image>
<ui:ImageFound.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="488deaa3-a6ad-41ab-9273-4724c27d1c5a" TimeoutMS="[defaultDelayValue]" WaitForReady="INTERACTIVE" />
</ui:ImageFound.Target>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:ImageFound>
<If sap2010:Annotation.AnnotationText="If the 'Details do not exist' image does not exist after entering Student ID check to see if the 'Application Error Occurred' image exists." Condition="[elementExists]" sap:VirtualizedContainerService.HintSize="483.2,354.4" sap2010:WorkflowViewState.IdRef="If_3">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<If.Else>
<ui:ImageFound sap2010:Annotation.AnnotationText="Check to see if an error has occurred, and a student record could not be found." DisplayName="Image Exists 'iexplore.exe Technolog...'" Found="[elementExists]" sap:VirtualizedContainerService.HintSize="333.6,151.2" sap2010:WorkflowViewState.IdRef="ImageFound_8">
<ui:ImageFound.Image>
<ui:ImageTarget Image="{x:Null}" Accuracy="0.8" Profile="Basic" TargetImageBase64="iVBORw0KGgoAAAANSUhEUgAAAN8AAAAMCAYAAADiU2itAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAQMSURBVGhD7VkxchsxDNRX8oPkGVaXfMGTF9y4TOdXZG7c5Rl2kxmXSmd3TuFCRQoXKVwyBO6WB4LA8XiK5ExGOwNJBMkDCGBJStoEB/37D+F6s+H33dc+3H+/53dqs+7z5TjyjDPOWAOTfCDet827sIufHx4fmHxPP59i+5L13HcoAZ/7sI12NlG6u1F3DMDORR/2VvsYOIUNQMTRlFP40Ix96C+0r9vQP4/d/x1uQ8dr7OKnAQX5JPFAvtffr0mojb5DCbi/2U6Bv4JLR8BJyEfFJIrnTD4fFX+3N//eVnE4KuQjIhH5QDrIy+M99+/3DxnxIOswOnPRhY53wCPuekcnAgL7Rjv3KYl+MMSJp/ydNuP/8QSskC99n1MS4nc9ApHQIt+q0++u40DzLic/S4iiupWnpExa4xjWmcWqr0GqAEYfpQxXZQRVCJ3iDiFur/Kx2ZrlnMxepRgdWwXEuB5+0BxPP05b6rM1twDGiyKUgK28Fiq5mes3Y6OIsCouKu/Z8wl5f3e3gHxMJiLcKEzAkVz0vtsMukPJNwQZQSodY6REGYLFtozx2vG1/P5BMvrn2iB/VRJITPJ5NqLgyr1kLRbm5kVJhWyNk75q/Vqf0WcgnW7eGGw6S3NT64d/WfxUvTXHxcg5SbLh9LM45EtkUuQLHz9xP5Nv1EHS+BYYAUFSsh9exOKTXutaxsCebqdTZgoM/ClOYwaCqzcPtCNcG8YYXShR0loM3wqIeZZY5EvPJ3j6tT7PoEo+PG9pbmr9+nkMn3xL4mKtASc2j5vxSepM8oF4GQF/7DLSZdJ48k2OGCKTYgZuWqgf3MoY1c6SNQu9o6Eo6+TzbJh+igRNz5Y6BScGBcznRzj69T77SLn3yIfCXZibau7M2HjkWxYXrN8S8sP2qcyjee00yfflmk/AgngkTeSbucqw+AUMnJx8hQ1Ntr9MvmwtRyCfHufo1/s8A4x31pM9O6KWm8W5k/a0zluDo4ePlpAftk8V8hGJ9LWTr5ziT3Zug3RRmKwt8BYaUTidgiSPfSxi1LWMgU3dnrsmxB1aF8RkE2TDhjKzcSQbxhjo9BzG25Fvvc9zkJtvvqYUc2mvkptqv/ZX9mNOY1yy51uY80noMvIR8GunJB/9v/fy64XfQb5EwMYrZ1HIEilQKiiWICAtY7x2fPVOYyLvFDgtSKiaL5O+wEZKYjGH0EA+VypE8fSrfa6g4m9eG/O5qfdPG3Ep68jnPxP1sMBmREE+QkHA+H2PQATMT77WXznhlNjZMkyBLE6stJuM7WFC+xirzSiTOCSPkPdRcYCQKJSMoPRcJ3H6ypIVmjnnLck3oN3nJbBIU68LyJQbQqVfxaf42X9VXDTBtO95f/lXQwh/AP5okD8KExq3AAAAAElFTkSuQmCC" />
</ui:ImageFound.Image>
<ui:ImageFound.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="488deaa3-a6ad-41ab-9273-4724c27d1c5a" TimeoutMS="[defaultDelayValue]" WaitForReady="INTERACTIVE" />
</ui:ImageFound.Target>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:ImageFound>
</If.Else>
</If>
<ui:CheckFalse DisplayName="Check False" ErrorMessage="Search for student failed" Expression="[elementExists]" sap:VirtualizedContainerService.HintSize="483.2,88" sap2010:WorkflowViewState.IdRef="CheckFalse_1" />
</Sequence>
</ActivityAction>
</ui:BrowserScope.Body>
</ui:BrowserScope>
</TryCatch.Try>
<TryCatch.Catches>
<Catch x:TypeArguments="ui:CheckpointException" sap:VirtualizedContainerService.HintSize="561.6,420.8" sap2010:WorkflowViewState.IdRef="Catch`1_4">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">False</x:Boolean>
<x:Boolean x:Key="IsPinned">False</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ActivityAction x:TypeArguments="ui:CheckpointException">
<ActivityAction.Argument>
<DelegateInArgument x:TypeArguments="ui:CheckpointException" Name="exception" />
</ActivityAction.Argument>
<Sequence sap2010:Annotation.AnnotationText="Log the underlying exception and throw a BusinessRule exception." sap:VirtualizedContainerService.HintSize="375.2,350.4" sap2010:WorkflowViewState.IdRef="Sequence_16">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:LogMessage DisplayName="Log Message" sap:VirtualizedContainerService.HintSize="333.6,92.8" sap2010:WorkflowViewState.IdRef="LogMessage_9" Level="Error" Message="["Looking up Student ID: CheckpointException thrown" + vbNewLine + exception.ToString]" />
<f:ThrowBusinessRuleException sap:VirtualizedContainerService.HintSize="333.6,80.8" sap2010:WorkflowViewState.IdRef="ThrowBusinessRuleException_4" Message="[String.Format("An exception has occurred with message '{0}' while retrieving the student record.", exception.Message)]" TakeScreenshot="True" />
</Sequence>
</ActivityAction>
</Catch>
<Catch x:TypeArguments="s:Exception" sap:VirtualizedContainerService.HintSize="561.6,420.8" sap2010:WorkflowViewState.IdRef="Catch`1_5">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">False</x:Boolean>
<x:Boolean x:Key="IsPinned">False</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ActivityAction x:TypeArguments="s:Exception">
<ActivityAction.Argument>
<DelegateInArgument x:TypeArguments="s:Exception" Name="exception" />
</ActivityAction.Argument>
<Sequence sap2010:Annotation.AnnotationText="Log the underlying exception and throw a BusinessRule exception." sap:VirtualizedContainerService.HintSize="375.2,350.4" sap2010:WorkflowViewState.IdRef="Sequence_17">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:LogMessage DisplayName="Log Message" sap:VirtualizedContainerService.HintSize="333.6,92.8" sap2010:WorkflowViewState.IdRef="LogMessage_10" Level="Error" Message="["Looking up Student ID: Exception thrown" + vbNewLine + exception.ToString]" />
<f:ThrowBusinessRuleException sap:VirtualizedContainerService.HintSize="333.6,80.8" sap2010:WorkflowViewState.IdRef="ThrowBusinessRuleException_5" Message="[String.Format("An unexpected exception has occurred while searching for the record. {0}", exception.Message)]" TakeScreenshot="False" />
</Sequence>
</ActivityAction>
</Catch>
</TryCatch.Catches>
</TryCatch>
<TryCatch sap2010:Annotation.AnnotationText="Try to add the new comment record" DisplayName="Try Catch" sap:VirtualizedContainerService.HintSize="1076.8,5951.2" sap2010:WorkflowViewState.IdRef="TryCatch_4">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
<x:Boolean x:Key="IsPinned">False</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<TryCatch.Try>
<ui:BrowserScope SearchScope="{x:Null}" Selector="{x:Null}" TimeoutMS="{x:Null}" UiBrowser="{x:Null}" Browser="[ActiveBrowser]" BrowserType="IE" DisplayName="Attach Browser" sap:VirtualizedContainerService.HintSize="433.6,4894.4" sap2010:WorkflowViewState.IdRef="BrowserScope_5" InformativeScreenshot="3a23713c2885af6a1a8933bb4cef5ea3">
<ui:BrowserScope.Body>
<ActivityAction x:TypeArguments="x:Object">
<ActivityAction.Argument>
<DelegateInArgument x:TypeArguments="x:Object" Name="ContextTarget" />
</ActivityAction.Argument>
<Sequence sap2010:Annotation.AnnotationText="Undertake the steps necessary to enter the new comment record" DisplayName="Do" sap:VirtualizedContainerService.HintSize="376,4747.2" sap2010:WorkflowViewState.IdRef="Sequence_18">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:ClickImage ContinueOnError="{x:Null}" DelayBefore="{x:Null}" sap2010:Annotation.AnnotationText="Clikc the 'Add' link to open the Comment Maintenance dialog" ClickType="CLICK_SINGLE" DelayMS="[CInt(defaultDelayValue * 0.2)]" DisplayName="Click Image" sap:VirtualizedContainerService.HintSize="334.4,200" sap2010:WorkflowViewState.IdRef="ClickImage_2" KeyModifiers="None" MouseButton="BTN_LEFT" SendWindowMessages="False">
<ui:ClickImage.CursorPosition>
<ui:CursorPosition Position="Center">
<ui:CursorPosition.OffsetX>
<InArgument x:TypeArguments="x:Int32" />
</ui:CursorPosition.OffsetX>
<ui:CursorPosition.OffsetY>
<InArgument x:TypeArguments="x:Int32" />
</ui:CursorPosition.OffsetY>
</ui:CursorPosition>
</ui:ClickImage.CursorPosition>
<ui:ClickImage.Image>
<ui:ImageTarget Image="{x:Null}" Accuracy="0.8" Profile="Basic" TargetImageBase64="iVBORw0KGgoAAAANSUhEUgAAABsAAAASCAYAAACq26WdAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADFSURBVEhL7ZLRDcIwDESzHlmnYpuKTcoyfHQMcxflkAl2v0I/EE+ymlxjX+y22In8zaZwbPYwqzix3Ps+YLvG7yP90Gy/IQFRkZgxzWy9IMk9I+aYcYS9o9ahS2ShgkyF3mW6gBTzZkBjdLdzDa1oDdh1O5fpjtSMh1eYCO15iYoQGleme2Kz/hf6kTBYbCyifaZ7UOKT8ZYNjRIF/LgWVGhFM90RmvGgH6HQd+CtX912jWS6gHweoZluNyM8w/a7/KqZ2RNArAQqGQxbQQAAAABJRU5ErkJggg==" />
</ui:ClickImage.Image>
<ui:ClickImage.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="be257729-4af8-4fe0-a89d-39527f081b0a" WaitForReady="INTERACTIVE">
<ui:Target.TimeoutMS>
<InArgument x:TypeArguments="x:Int32" />
</ui:Target.TimeoutMS>
</ui:Target>
</ui:ClickImage.Target>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:ClickImage>
<ui:ImageFound sap2010:Annotation.AnnotationText="Check to make sure the dialog opened as expected" DisplayName="Image Exists" Found="[elementExists]" sap:VirtualizedContainerService.HintSize="334.4,138.4" sap2010:WorkflowViewState.IdRef="ImageFound_4">
<ui:ImageFound.Image>
<ui:ImageTarget Image="{x:Null}" Accuracy="0.8" Profile="Basic" TargetImageBase64="iVBORw0KGgoAAAANSUhEUgAAAN8AAAAZCAYAAACxSPuFAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAOsSURBVHhe7ZixdeswDEW1iju3WcG9F/AOrlxmA5+M4DbZIlX2yCoKQYoiAIKkSEnm/wmKe45tCeADwEcpGd6/vkdFUZ6Pmk9ROqHmU5ROqPkUpRNqPkXphJpPUTqh5lOUTqj5FKUTaj5F6YSaT1E60WS+23kYhwFxfoj3reHt+rJL3iXYtXF9w2W8Cff9BdysX8bLh3z9/esxnir3gMv5d3vqqTTf53g5xo2+XV/HN//9fhmHI/reyObmW6Rrqo9vDBN7uqPvv4UFPfEH7eH6KV6HOR2OOx+UG+2pf4068328jofsKWj4j81n1/yFQ06y0HzWXOKTyh1War42Kp987hUj9RSQX0chhhnWmpgOk8SaRt8E89HXQZzTbYLT3T+56HVZV8jryNeGoTrifHbDXh9Iy5TX1u1/i+uvjQH27QnVFfVmMkU0K6LZwIzjcvonabvO1totWY0L4g18H+D+pLUFqv/m80lTryHxKVU2n20wjoEcIJo3OrrH5/BNCuuIOYkuBsmXxtWP75vWRlrdhgla5kHM628Ts3tPDBADs47W4teIrguat1wrN1+tzrW15zUuiYf5oH1g9vRlMl9eW6DpHy741IhMGDWqZD7husEWOzdDusc1yJ027jPRwgxe3GiJBlFkreJhgjabi6MnI9dTH/OEnhhAl8vB1kO5uPkihFq5+ep0blA7h6xRihdmM1PSFmgznwcEgwlx45c0CheSaAoZqF9HADebFGfzonUjXQy7RmY4QPIeWiPdXPF1C9NTHWO17NwTA9aFP+P5SOazv2FdyVobdG5RuyGtsRBv10/slaK2wDrzAcWBFsyXKCQ2X84YG2w0YTgRSR29zLdzTwxE1zw3yB3yUPOBbrPZcN5srQ06V9de0liIz61f1BZYb76pkFkob1RqE3mBvNETMKB5oIl7AltsNJeDn+CElA77e2j4U8z3lJ4kjHKmccR8rBfz9WStDTrX1l7UuCQ+sX5RW6DOfJCYbU4rGhcCjSKFuUKik5FtVtJcm4Mawd7D854XNgu+R7okJm1YC2BifW5Rh1kbG4duLmAH8xme0ZNIl42hv8XmQ2vY77SnNGebzlW1FzWWNUXrm+v+Hy55bYHKJ583DoYPzwmn5sFx5n5bCBPnY6Y4MtAJV1SgaoCiLgmmBWBmdAdOuE5NwzcXsI/5gL17IuuiM+ezIv0Bvdla23WuqT2vcYkmvn7uGu+hY4PXTkVRWlDzKUon1HyK0gk1n6J04Xv8AW4XJ12sFkVeAAAAAElFTkSuQmCC" />
</ui:ImageFound.Image>
<ui:ImageFound.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="7d5e99cc-eb81-403f-a435-5d80c761f835" TimeoutMS="3000" WaitForReady="INTERACTIVE" />
</ui:ImageFound.Target>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:ImageFound>
<ui:CheckTrue DisplayName="Check True" ErrorMessage="Student Comment Maintenance dialog did not open as expected" Expression="[elementExists]" sap:VirtualizedContainerService.HintSize="334.4,88" sap2010:WorkflowViewState.IdRef="CheckTrue_6" />
<ui:ClickImage ContinueOnError="{x:Null}" DelayBefore="{x:Null}" DelayMS="{x:Null}" sap2010:Annotation.AnnotationText="Click to the right of the Comment Code label to select the field" ClickType="CLICK_SINGLE" DisplayName="Click" sap:VirtualizedContainerService.HintSize="334.4,200" sap2010:WorkflowViewState.IdRef="ClickImage_3" KeyModifiers="None" MouseButton="BTN_LEFT" SendWindowMessages="False">
<ui:ClickImage.CursorPosition>
<ui:CursorPosition OffsetX="48" OffsetY="22" Position="TopRight" />
</ui:ClickImage.CursorPosition>
<ui:ClickImage.Image>
<ui:ImageTarget Image="{x:Null}" Accuracy="0.8" Profile="Basic" TargetImageBase64="iVBORw0KGgoAAAANSUhEUgAAAFYAAAAeCAYAAAC2Xen2AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAAFiUAABYlAUlSJPAAAAEWSURBVGhD7ZCBCgMxCEP7/z99Wws5nGhbewtjkAdCL1FP0i5BQcGSULAkFCwJBUtCwZJQsCQULAkFS0LBklCwJBQsiTvY1tpH/RNPb6/MoHc1M9yo6eRAJtk937id0T86qot/QXbjN26v7EDvama4y6a3jwJeq/od39PBO9LtN4g0C+Z8n9Wtl2lVxsRs0Hv4zn584nesvtMPMr3jvWzXSj9hTM4W7BwRvXd8X9AtmQ4yvbO7y+q+ThmTswXew7fVo3fFt3i92m/Z3ZXpTxibooWVI6J3xe9UdRDp1V0r/YR7si+xZYn01Xu3FwXsuzPzAHagLDu69TKtSn1CbKFgSShYEgqWhIIloWBJKFgSCpaEgqVwXS8tVwcQ9OACLgAAAABJRU5ErkJggg==" />
</ui:ClickImage.Image>
<ui:ClickImage.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="14398094-3128-49bf-9359-b38e3ece2a00" TimeoutMS="[Cint(DefaultDelayValue * 0.25)]" WaitForReady="INTERACTIVE" />
</ui:ClickImage.Target>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:ClickImage>
<ui:TypeInto DelayBefore="{x:Null}" DelayBetweenKeys="{x:Null}" DelayMS="{x:Null}" Activate="True" AlterIfDisabled="True" ClickBeforeTyping="False" DisplayName="Type Into" EmptyField="True" sap:VirtualizedContainerService.HintSize="334.4,135.2" sap2010:WorkflowViewState.IdRef="TypeInto_2" SendWindowMessages="False" SimulateType="False" Text="[CommentCode]">
<ui:TypeInto.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="f1781ed3-005f-4fb6-b567-acdc38000c99" InformativeScreenshot="e509a5445531cd4d26cff5f0ea21ab84" WaitForReady="INTERACTIVE">
<ui:Target.TimeoutMS>
<InArgument x:TypeArguments="x:Int32" />
</ui:Target.TimeoutMS>
</ui:Target>
</ui:TypeInto.Target>
</ui:TypeInto>
<ui:ClickImage ContinueOnError="{x:Null}" DelayBefore="{x:Null}" sap2010:Annotation.AnnotationText="Click to the right of the the Study Package Code label, to select the field. 

This will also validate the comment code. A DelayAfter is set to allow an potential error message to stop flashing before we check for it. " ClickType="CLICK_SINGLE" DelayMS="[CInt(defaultDelayValue * 0.25)]" DisplayName="Click" sap:VirtualizedContainerService.HintSize="334.4,264" sap2010:WorkflowViewState.IdRef="ClickImage_4" KeyModifiers="None" MouseButton="BTN_LEFT" SendWindowMessages="False">
<ui:ClickImage.CursorPosition>
<ui:CursorPosition OffsetX="80" OffsetY="19" Position="TopRight" />
</ui:ClickImage.CursorPosition>
<ui:ClickImage.Image>
<ui:ImageTarget Image="{x:Null}" Accuracy="0.8" Profile="Basic" TargetImageBase64="iVBORw0KGgoAAAANSUhEUgAAADkAAAAfCAYAAABd7WWuAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAAFiUAABYlAUlSJPAAAAC/SURBVFhH7Y9RCsAwCEN7/0t39MMhYpy2sEHmA+lWNWnG/AEdkoUOyUKHZKFDstAhWQhDjjHuylCZy2hn9Z6AKtYgY7g7g/Yyehmgyo7BbkjEpyFXT5eAvjXoXhBNKbk7Idy2ZgL6t6dHpRfNVkiraEP0mHU+PSzqI91T0iraED3Gnh6VXjRbAapEhqgXzQjevbe/QBpVQpVlIqXR97rnzXnoXW/H9uxMla3tU9O36ZAsdEgWOiQLHZKFDsnBnBe0VHrz6AEoVwAAAABJRU5ErkJggg==" />
</ui:ClickImage.Image>
<ui:ClickImage.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="c118dcba-63c9-49ee-b3b3-6ca74be536fe" TimeoutMS="[Cint(DefaultDelayValue * 0.5)]" WaitForReady="INTERACTIVE" />
</ui:ClickImage.Target>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:ClickImage>
<ui:LogMessage DisplayName="Log Message" sap:VirtualizedContainerService.HintSize="334.4,92.8" sap2010:WorkflowViewState.IdRef="LogMessage_32" Level="Trace" Message="["Checking if 'Details do not exsist' image exists"]" />
<ui:ImageFound sap2010:Annotation.AnnotationText="Check to make sure no error message was shown indicating the comment code is valid." DisplayName="Image Exists" Found="[elementExists]" sap:VirtualizedContainerService.HintSize="334.4,151.2" sap2010:WorkflowViewState.IdRef="ImageFound_5">
<ui:ImageFound.Image>
<ui:ImageTarget Image="{x:Null}" Accuracy="0.8" Profile="Basic" TargetImageBase64="iVBORw0KGgoAAAANSUhEUgAAASsAAAARCAYAAACFMorLAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAU+SURBVHhe7VqxUhwxDL1fyR8kn8F1yS8w+YIbynR8RWaHLp8BTWYojw46UlBckYIiBeXG9lpaWZZtec97wOA3oznWa1vSk/zGwG3Gjo6OjneALlYdHR3vAlmxGj5/cbb/fo6fHR0dHa8BUaysMF1uNpNA/RzG29+37pOKV0dHR8cpEYkVCNWvzadxb36+f7h3YvX459E8n7tx926JYD0N49bsvZHs4tpPWhHg/2wYD9JzE1yPO5fTzvz0AbAKhwZBr2zH4cmPN8VhHM7Ah7fWebxrrMlP/TkJxIoKFYjVy78XNPsM7xYJVk6srFUTYcmsaOQPKVaVHNViEYelmPghWSH+bC+uyNebgKInVufnCLGCv0uBSIE9P9y694fDfSBUYFVINTYhZnfjx4qAZI8gbtFBK+EtiVUDjppDExOI1VpxEzGkN3p6QE9x038V1PC/Jj/15wTFCv8exWz8Obj3VrQksaq6XeXE4WYnkAAJecN1bNwarIN9iKEAcv9SPNH60oEJY9ndyEW4vpjnWNteZeSRxhXEE8eS3jfDUYQUz6Ztr7ZsbG5k56uKQ01M+TlZHkksA8yjcQGkmAE2dmE86xfypX5xDjn4tH5L1jika1XuG2VPtObHIfQtn5NMbgaBWDnxsQLlzQmWFyP7ud9MY6uIVfROIBbfJ0iHPSLzhHAf/DkoMLWU+ididAZraOMxS4lHMg9jyE9p3wRHEXI8W4TiFIlXFYeamFJzFDxKvEk5Q4wiHxwKv8mcBSvyJBjWolCrYt8oe6I1P6m4ncE5KeRmgGKF4sPEavz6zb13YuXHwHC+FryxKZDoKXg8FIQwUO/ppgTJxbeNGWwO98+fq4pkgA03ixnGDWM4h8SJuSZix/fkVsh9qfYtc1Tm2YDEk/Sp5lBTNzgAZI4mX4k3AVLOSWj8RnPIAea9lqxfeU2xVlL+6Ad6dFlPJFHFD8RAfGhzM4jECoQqEKy7fSBSgbW+Wfng+bWS2nTFzJEO78D8HO4/ioevM5YpGBAcXnlhj7AI/FoM+cXXZQPGxYQl++Y4mlDmecLcXEwIqjksx2S8RWKlylfkLQbmojiMKr9wGElfx/UN67dkTbFWir6Zn9P8t+ZHnlOZm0H0a6AoVj8u3Q0rEiprrcSKFa8cvEB68uD4Ofx9Mh5YByYXVlMEVbNziHEt2VfgiEHTJBbBPNrE1RyWYzLZHSdWUSwMMC841B62D8l6ld+M8MzCHtZvyZqgBszS+TO/+JzhvzE/8pzK3AxQrKzo8F8D3a+A5Euh7hlEypgTtxooGhsKBQmm1T1uaEqQA5Lu53D/yXhmRHtSQMORomLcMIZzSHPwuDjEuFjTqfaNOeIo82yAvmbDA1XNYTkmcY4mX0UsE2B/Y0Hecx/iuMYvzCF+IeeWYlWslZg/84u5k3wirMQPxkBy0eZmgGJlAf8NpGJlv1/1/PfZfYJYoWDV3KosMImEiSRzA1IIodZMkjMB3PwaXkz2XFwfIRWjNd4cgjVpOsFw35ijGCWe5/fuEPHGq+ZQExPMobwr8hV5SwDmilbp90RiRWsRmo93Sd+I/Bu05CcZtzVlbgaBWFlEgnW3d+NWsMKbVaVQWWQIEG8uUQKUJEMTPRiuQCFxdk+Y4/bnxZSKi4dxtrl5JIQxNv/qgh+a/dTtG3MkIc0z7k+aGve0Yws4LMcEdQzrbZHNV+QtB+GgJdZm/Z5MrCzStdL2ja4nLBrx4xDGrfrqAqt/JFYW9GsMTrj436xqb1QdHR0dR0IUK4AVJRSoLlIdHR2vhnH8DwLyISWjLdujAAAAAElFTkSuQmCC" />
</ui:ImageFound.Image>
<ui:ImageFound.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="7809fb4f-d3b2-4ee4-bb68-bce3f57a3b23" TimeoutMS="3000" WaitForReady="INTERACTIVE" />
</ui:ImageFound.Target>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:ImageFound>
<ui:LogMessage DisplayName="Log Message" sap:VirtualizedContainerService.HintSize="334.4,92.8" sap2010:WorkflowViewState.IdRef="LogMessage_30" Level="Trace" Message="["'Details do not exsist' image exists"]" />
<ui:CheckFalse DisplayName="Check False" ErrorMessage="[String.Format("The comment code '{0}' appears to be invalid", CommentCode)]" Expression="[elementExists]" sap:VirtualizedContainerService.HintSize="334.4,88" sap2010:WorkflowViewState.IdRef="CheckFalse_2" />
<ui:TypeInto DelayBefore="{x:Null}" DelayBetweenKeys="{x:Null}" DelayMS="{x:Null}" Activate="True" AlterIfDisabled="True" ClickBeforeTyping="False" DisplayName="Type Into" EmptyField="True" sap:VirtualizedContainerService.HintSize="334.4,135.2" sap2010:WorkflowViewState.IdRef="TypeInto_3" SendWindowMessages="False" SimulateType="False" Text="[StudyPackageCode]">
<ui:TypeInto.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="969c1d03-1408-4073-abbe-53ae8a4f4607" InformativeScreenshot="28d73c5f47d90d87c34c13e348d23d21" WaitForReady="INTERACTIVE">
<ui:Target.TimeoutMS>
<InArgument x:TypeArguments="x:Int32" />
</ui:Target.TimeoutMS>
</ui:Target>
</ui:TypeInto.Target>
</ui:TypeInto>
<ui:ClickImage ContinueOnError="{x:Null}" DelayBefore="{x:Null}" DelayMS="{x:Null}" sap2010:Annotation.AnnotationText="Click to the right of the the Study Package Version label, to select the field. " ClickType="CLICK_SINGLE" DisplayName="Click" sap:VirtualizedContainerService.HintSize="334.4,200" sap2010:WorkflowViewState.IdRef="ClickImage_5" KeyModifiers="None" MouseButton="BTN_LEFT" SendWindowMessages="False">
<ui:ClickImage.CursorPosition>
<ui:CursorPosition OffsetX="19" OffsetY="13" Position="TopRight" />
</ui:ClickImage.CursorPosition>
<ui:ClickImage.Image>
<ui:ImageTarget Image="{x:Null}" Accuracy="0.7" Profile="Basic" TargetImageBase64="iVBORw0KGgoAAAANSUhEUgAAAB4AAAAXCAYAAAAcP/9qAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAABrSURBVEhL7Y5BDsAgCAT5/6dp9oChCLFaxQuTkMgGGYgvUeI0SpxGExP5N0T5X+6LgZWckoIpMXopQfc6H/GatB+tQLMi03S/ooXobUm+wpTYY5sYeMuiQ46LAXIpIXqP+D65mRKnUeIkmB8/QkNKAdS6RgAAAABJRU5ErkJggg==" />
</ui:ClickImage.Image>
<ui:ClickImage.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="182cf8c7-532c-4c9c-8e07-73bfa86948d2" WaitForReady="INTERACTIVE">
<ui:Target.TimeoutMS>
<InArgument x:TypeArguments="x:Int32" />
</ui:Target.TimeoutMS>
</ui:Target>
</ui:ClickImage.Target>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:ClickImage>
<ui:TypeInto DelayBefore="{x:Null}" DelayBetweenKeys="{x:Null}" DelayMS="{x:Null}" Activate="True" AlterIfDisabled="True" ClickBeforeTyping="False" DisplayName="Type Into" EmptyField="True" sap:VirtualizedContainerService.HintSize="334.4,135.2" sap2010:WorkflowViewState.IdRef="TypeInto_4" SendWindowMessages="False" SimulateType="False" Text="[StudyPackageVersion]">
<ui:TypeInto.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="a3426deb-a249-48cd-a529-50372bbc5930" InformativeScreenshot="81d2e307f2314b362e637330b2a1b31f" WaitForReady="INTERACTIVE">
<ui:Target.TimeoutMS>
<InArgument x:TypeArguments="x:Int32" />
</ui:Target.TimeoutMS>
</ui:Target>
</ui:TypeInto.Target>
</ui:TypeInto>
<ui:ClickImage ContinueOnError="{x:Null}" DelayBefore="{x:Null}" DelayMS="{x:Null}" sap2010:Annotation.AnnotationText="Click to the right of the the Study Package Attempt label, to select the field. " ClickType="CLICK_SINGLE" DisplayName="Click" sap:VirtualizedContainerService.HintSize="334.4,200" sap2010:WorkflowViewState.IdRef="ClickImage_6" KeyModifiers="None" MouseButton="BTN_LEFT" SendWindowMessages="False">
<ui:ClickImage.CursorPosition>
<ui:CursorPosition OffsetX="31" OffsetY="9" Position="TopRight" />
</ui:ClickImage.CursorPosition>
<ui:ClickImage.Image>
<ui:ImageTarget Image="{x:Null}" Accuracy="0.8" Profile="Basic" TargetImageBase64="iVBORw0KGgoAAAANSUhEUgAAABYAAAATCAYAAACUef2IAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAABXSURBVDhP7Y1BCgAgCAT9/6cND4rZSkTZyYHA1B2Ji2ix8V9MdHfzSOx7u8NwqqEYLhX7WbYnLJ245P9Zjfgrjk/JasQ0zZa1XyYWUI1y2PSAFhtFYuYBALcNSF9LT24AAAAASUVORK5CYII=" />
</ui:ClickImage.Image>
<ui:ClickImage.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="2ab3e246-7206-4c58-bb45-9763fc678b70" TimeoutMS="[Cint(DefaultDelayValue * 0.5)]" WaitForReady="INTERACTIVE" />
</ui:ClickImage.Target>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:ClickImage>
<ui:TypeInto DelayBefore="{x:Null}" DelayBetweenKeys="{x:Null}" DelayMS="{x:Null}" Activate="True" AlterIfDisabled="True" ClickBeforeTyping="False" DisplayName="Type Into" EmptyField="True" sap:VirtualizedContainerService.HintSize="334,134" sap2010:WorkflowViewState.IdRef="TypeInto_5" SendWindowMessages="False" SimulateType="False" Text="[StudyPackageAttempt]">
<ui:TypeInto.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="682bfae1-3068-47c8-9789-d13024090266" InformativeScreenshot="f405663aca8690f2e604a90cc3b175ed" WaitForReady="INTERACTIVE">
<ui:Target.TimeoutMS>
<InArgument x:TypeArguments="x:Int32" />
</ui:Target.TimeoutMS>
</ui:Target>
</ui:TypeInto.Target>
</ui:TypeInto>
<ui:ClickImage ContinueOnError="{x:Null}" DelayBefore="{x:Null}" DelayMS="{x:Null}" sap2010:Annotation.AnnotationText="Click to the right of the the Year label, to select the field. " ClickType="CLICK_SINGLE" DisplayName="Click" sap:VirtualizedContainerService.HintSize="334,196" sap2010:WorkflowViewState.IdRef="ClickImage_7" KeyModifiers="None" MouseButton="BTN_LEFT" SendWindowMessages="False">
<ui:ClickImage.CursorPosition>
<ui:CursorPosition OffsetX="81" OffsetY="16" Position="TopRight" />
</ui:ClickImage.CursorPosition>
<ui:ClickImage.Image>
<ui:ImageTarget Image="{x:Null}" Accuracy="0.8" Profile="Basic" TargetImageBase64="iVBORw0KGgoAAAANSUhEUgAAACwAAAAbCAYAAAAH+20UAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAAFiUAABYlAUlSJPAAAACGSURBVFhH7Y7bCkAhCAT7/5/u4IOwiIIVni7sgFBr5rR+GRSuhsLVULgaClfzlnBrfjvK/+AtYcHK7ZQVUttV0pOVTAvxcrxjPkJ6yltgs0hiVRJJ/xAJ21K8HPuzLAt72PxY4UgsymdI/xAtk1wLwVx7+AbPI8xNbYTC1VC4GgpXc5lw7x+v9t0S3DObSwAAAABJRU5ErkJggg==" />
</ui:ClickImage.Image>
<ui:ClickImage.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="99f3a063-7dfb-4b24-80d0-afa3c164802e" TimeoutMS="[Cint(DefaultDelayValue * 0.5)]" WaitForReady="INTERACTIVE" />
</ui:ClickImage.Target>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:ClickImage>
<ui:TypeInto DelayBefore="{x:Null}" DelayBetweenKeys="{x:Null}" DelayMS="{x:Null}" Activate="True" AlterIfDisabled="True" ClickBeforeTyping="False" DisplayName="Type Into" EmptyField="True" sap:VirtualizedContainerService.HintSize="334,134" sap2010:WorkflowViewState.IdRef="TypeInto_6" SendWindowMessages="False" SimulateType="False" Text="[StudyYear]">
<ui:TypeInto.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="49c49f84-213d-4c9b-8e62-f2c088c86325" InformativeScreenshot="bd7c20cc7b26d6340109b2e6e5290c9a" WaitForReady="INTERACTIVE">
<ui:Target.TimeoutMS>
<InArgument x:TypeArguments="x:Int32" />
</ui:Target.TimeoutMS>
</ui:Target>
</ui:TypeInto.Target>
</ui:TypeInto>
<ui:ClickImage ContinueOnError="{x:Null}" DelayBefore="{x:Null}" DelayMS="{x:Null}" sap2010:Annotation.AnnotationText="Click to the right of the the Study Period label, to select the field. " ClickType="CLICK_SINGLE" DisplayName="Click" sap:VirtualizedContainerService.HintSize="334,196" sap2010:WorkflowViewState.IdRef="ClickImage_8" KeyModifiers="None" MouseButton="BTN_LEFT" SendWindowMessages="False">
<ui:ClickImage.CursorPosition>
<ui:CursorPosition OffsetX="55" OffsetY="11" Position="TopRight" />
</ui:ClickImage.CursorPosition>
<ui:ClickImage.Image>
<ui:ImageTarget Image="{x:Null}" Accuracy="0.8" Profile="Basic" TargetImageBase64="iVBORw0KGgoAAAANSUhEUgAAAEsAAAAVCAYAAAAOyhNtAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAAFiUAABYlAUlSJPAAAAERSURBVFhH7ZGBisRACEP7/z/d20CzhOCM2qV3t+ADqcbgiD3Oocwcq8Ecq8Ecq8Ecq8Ecq8Ecq0F6rOM43vEp1Rn6JqPDU/6ty4do3V0IlJcKfHfeq1Le6/qG7IbcWb68VOC7816V8l7XN2Q3BD323ac1fQxqRHOSacgZROtIVw2ozp57nH33hQ8kWq96Fd09AJoH0RywjjwVL/B6Rc11oUNXOWBd0d0DIo2g50GdRBrI9Iya60KHrnLAuqK7B0QaWfWime7N9Iytazd0l7NWHax8zkoHq5mqRxrI9IzUhUEMRzX1RLr2gebOrgeyeZ67F6jOnnucffdBssX+I7++sf7Jb+M7t/4j5lgN5lhlzvMH0/isiZD8AwcAAAAASUVORK5CYII=" />
</ui:ClickImage.Image>
<ui:ClickImage.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="d5f0fedc-5e21-4971-b359-9a535a753767" TimeoutMS="[Cint(DefaultDelayValue * 0.5)]" WaitForReady="INTERACTIVE" />
</ui:ClickImage.Target>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:ClickImage>
<ui:TypeInto DelayBetweenKeys="{x:Null}" DelayMS="{x:Null}" Activate="True" AlterIfDisabled="True" sap2010:Annotation.AnnotationText="The Study Periods are listed in a drop down box. To type into this element this activity:

- Has the DelayBefore argument set to allow the drop down to display prior to typing
- Appends an enter key stroke '[k(enter)] to the end of the supplied StudyPeriod value" ClickBeforeTyping="False" DelayBefore="1000" DisplayName="Type Into" EmptyField="False" sap:VirtualizedContainerService.HintSize="334,251" sap2010:WorkflowViewState.IdRef="TypeInto_7" SendWindowMessages="False" SimulateType="False" Text="[String.Format("{0}[k(enter)]", StudyPeriod)]">
<ui:TypeInto.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="8173efa2-ba3e-49a0-8c74-6b33019f81df" InformativeScreenshot="2e299fc0b8d97c7f3229de8e2f7d4177" WaitForReady="INTERACTIVE">
<ui:Target.TimeoutMS>
<InArgument x:TypeArguments="x:Int32" />
</ui:Target.TimeoutMS>
</ui:Target>
</ui:TypeInto.Target>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:TypeInto>
<ui:ClickImage ContinueOnError="{x:Null}" DelayBefore="{x:Null}" sap2010:Annotation.AnnotationText="Click the OK button which validates the new comment code record. A DelayAfter attribute is set to allow an potential error message to stop flashing before we check for it. " ClickType="CLICK_SINGLE" DelayMS="[CInt(defaultDelayValue * 0.5)]" DisplayName="Click" sap:VirtualizedContainerService.HintSize="334,226" sap2010:WorkflowViewState.IdRef="ClickImage_9" KeyModifiers="None" MouseButton="BTN_LEFT" SendWindowMessages="False">
<ui:ClickImage.CursorPosition>
<ui:CursorPosition OffsetX="0" OffsetY="0" Position="Center" />
</ui:ClickImage.CursorPosition>
<ui:ClickImage.Image>
<ui:ImageTarget Image="{x:Null}" Accuracy="0.8" Profile="Basic" TargetImageBase64="iVBORw0KGgoAAAANSUhEUgAAAEgAAAAXCAYAAACoNQllAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAAFiUAABYlAUlSJPAAAADnSURBVFhH7ZXbDYMwDEWzHlkn60RsUpbhgzHc2CQqMbQGqf0wvUe6KHLCh4/yCAQ+AkEGIiiEgBwEgozsBIEVCDKAIAMIMrgo6EGpzrfEcalzDM+n8n2xjFHWpakWnNH6lLEu9CyUB92orilBU6Iw5LLKL+cFzZniUbOdhI0grqvd5JHTgvio9Mepsd01dcwyQ6Q8S9E1PxC0/s85Xu+LrY+vCZI76Sa76LSgy3dQQV6wv7mkS5v8YvW7yHjFdvP+uCCI6e8YTi9MCyrIa+ZXUutTxroAIMgEggwgyOCtIKQPBBkhInoCryw6eDM90HYAAAAASUVORK5CYII=" />
</ui:ClickImage.Image>
<ui:ClickImage.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="59cf9ea6-5993-40dc-8de4-008f9f6e2fc2" TimeoutMS="[Cint(defaultDelayValue * 0.5)]" WaitForReady="INTERACTIVE" />
</ui:ClickImage.Target>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:ClickImage>
<ui:ImageFound DisplayName="Image Exists" Found="[elementExists]" sap:VirtualizedContainerService.HintSize="334,106" sap2010:WorkflowViewState.IdRef="ImageFound_6">
<ui:ImageFound.Image>
<ui:ImageTarget Image="{x:Null}" Accuracy="0.8" Profile="Basic" TargetImageBase64="iVBORw0KGgoAAAANSUhEUgAAAa0AAAASCAYAAADovYEjAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAc6SURBVHhe7Vuxchw3DL1fyR8kn+Hrkl/w5AtuXKbzV3hu3OUzpCYzKuVO7pzCxRUpXKRwuSG4BAiAwJJL7UW3Mt8MRjouCQIPALG7Oh2mgYGBgYGBnWA0rYGBgYGB3aDatM4//xLl8fe39HNgYGBgYOAl4DYtaFDvD4e5UX04Tw9/PcSfvIkNDAwMDAz8nzCbFjasPw8/TY/h96fPT7Fpffn7S/j8No7Ha6sb1910CnoPh+N0/pqGOO5P4Vq4/u4uDfwA+HqejuDzm/N0SUMDCMyXU/htI7w435fp/AZ8ynK6T5c2xwb8IV+WbFmnN18HZdzabK3EYNR/QnuuFk2LNyxsWt///U4Cn/FaT+O6ezcH/PixDBFeu14RvwQg2Z0mDdhFsS7Yf1W8tqZlHHxJZM5vxfmVmxbIVo3rlutgkYNanPbUtPZR66Jp4d+tsFmhfPv8EK9fLk+iYaGsghekW07abmAg9tq0Guy/KjY4dDVekm/cm/mDN2r58N+S8w348/jCtyJbxeZm64DdaPAGTbFU4wWukMNXwX5qXTQt+nuVkunDOV6H5mU1rXVPW5gEkpzLx2NMAPkEho4k4QnNkvyMhe8lPBYYnxtk3ovf/TKbzCIyiKXi1TqU7SBWcrN97hIHs+jgLXDhoo2/i/Chxf42vWVcaj7I66d7/OwlspFLuD8f46+dud80F2QF31XuHLD97LcJak8QbXOamedyu5f4W1N3DObeANRt8MykfILk14240T7ZF7Ktqp/7Dz5z/xF8TpDCLwXX/wCwx+VllmoOW/oLPyt5FbHgF9/DzFe1FuTmaj2jaFqxCUGjShIbV2pK8PPxMI/1Ny2rUKyCMogEQeeRMC5WUwAYye6K1i/IVsS6ennBMLHss/xA8RKguG6hgz+UOMezv0NvyzrvehQ/kXUu4WcQPNDEHIrrsbSzZkszdx4WDu0Ih3OymevGuchNnb+2ulMw9w6g3E/7u5ygfdp3lLS32CfPJVur+g3/KcYVjpZihn56Z4tAPQYFNL+LZ4qHil8ud0HiHGP9DdY6QjQtakKqaU2//havx6aVxlBo/iqg0clAdJ4lBh0+bEz8zYsRZt+1MlAiYHGyAioCoGwiogHK7mpC4/yGQyFI9iMHFcaqXBjo4k8fRIb9vXGpriv2ZmvYWAERA3UwijF1OAYh+2hs3mcb7jzk2Gbha4ycwf1acpHpKvjTeky9CsxXUxhHEsqPBfvkzcRpOmEMXd2Adv04Vo2rAWuNi5YYaOgYoI6W/RKqfrEY+vla5l2X3oDquh6eGMymhQ1LNK5Pj6JZCVn5pAXgTliJg2OWiCRvcJJIYsWJ+vNdpzoEdDJFqDn0mYlItjIRCpj7SPuqXBjo48/zL9vfG5faOkxa6Y+2xwKfk37Hgw841fw2+L0NdxVQ4Sah+KMeljPahwi5Xxt/soHbaxTI11LsdbgnSuNexj7P1y/976kj1NvSRNpioFDEVvsXpLL3j1PrM8zXg2bT+uN9fOIqGhZIR9PKdxThgDGMbSZMFLKDhaaVG6UizQqIE6S8FgUDXyZCAccPtA98rXJhoI8/nTil/b1xqa17TiKj7lPIJdQxjx3DmNLb4Pc23DWiuOssOaf9uG411spfnncnn0A9OPEsUMyTftj2MZA/XAx/V+mX/lfjakHxLACxY7x05bDLL65D8eO0Tb5KPuNIl976ui6eGETTguajXw/GV4Psn4vjZ2xWQWKT64IMinQgJ4B7l+EG28CzmlYOItm0QCzqnf1Rr6Ys0D6WLfNYlQsDffzpxCnt741LdV1xeLM1tUSmtSDJVmsM0OD3NtyVMPVS/H3O8xwjDriulT/SlUTFqYDpawmZ9wHa5iX7gA+1j+bqWfrTmNbZBoyHXpdrlMZbY8DRwG/hu0LVL3OPndZ6gGhaAPz2IG9a8P9Z3/75Fn9i06LG1fOUlZANZQVKYEkhJM1tCDYBSWJzq03L3R9knpPt14L+sIQHsYJIxWcI2VvhwkQPf5oDy/4evYCaD951kFoi87VG/LgtTX5XbG3SYWAp1pQbazgHqdkMwm2S+r2DkODGU2J1LTCJNVjsg/Pn9XX9hv+tX8QgHQ6W4ibWtsaAQfld99NCxS8zhrgG7bqxWifOS96KpgUoGtenxzgOjUs+afU3rAjXaYR2jgWuupahq2kFEHE415hDdw18XroWIJLQspX5Ib7yXsxd4MLFWv5K/2z71+pF1HyQ19d8DRbjaR3+4mBu9Hu9j622ar1ByOYZJue4ZxKbG6nb5Y9ytiGHFuPJUTZD9CPzXzYuqhVrH1G3Lfq5/+BznaMmDiJK221OGmOAWPKbCT9TbCz41ZivN1XrqNvgzWxaAP7199jA9N+0nvGENTAw8IIwbuJ2D6sR05jTMAZ2CbdpIaA5UaMazWpgYOdwnkB3D31nz0Q9yQ7sG9WmNTAw8ErAXzu9xoOcXikxGQ3rlWGa/gPJdmHdvAlGAQAAAABJRU5ErkJggg==" />
</ui:ImageFound.Image>
<ui:ImageFound.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="159cd858-678c-44f2-b6a9-97005af8c99a" TimeoutMS="3000" WaitForReady="INTERACTIVE" />
</ui:ImageFound.Target>
</ui:ImageFound>
<ui:CheckFalse DisplayName="Check False" ErrorMessage="[String.Format("The study package code '{0}' appears to be invalid", StudyPackageCode)]" Expression="[elementExists]" sap:VirtualizedContainerService.HintSize="334,87" sap2010:WorkflowViewState.IdRef="CheckFalse_3" />
<ui:WaitImageVanish sap2010:Annotation.AnnotationText="Wait for the Comment Maintenance dialog box to vanish" DisplayName="Wait Image Vanish" sap:VirtualizedContainerService.HintSize="334,148" sap2010:WorkflowViewState.IdRef="WaitImageVanish_1">
<ui:WaitImageVanish.Image>
<ui:ImageTarget Image="{x:Null}" Accuracy="0.8" Profile="Basic" TargetImageBase64="iVBORw0KGgoAAAANSUhEUgAAANkAAAAYCAYAAAB3ClhnAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAOeSURBVHhe7Zi5dcMwDIa1iju3WcG9F9AOrlxmA7+M4DbZIlX2yCoKQYoSLh466FwovvdsSwB/APwpJd3rx+dgGEY7zGSG0RgzmWE0xkxmGI0xkxlGY8xkhtEYM5lhNMZMZhiNSZrseu6GrkOc7+p9W3i5PDXJW4NfG9fX9cNVue8/EGb9NPRv+vXXj/twWrgHQs7/21OMYrL3oT/Khl4vz8NL/H7rh+6Ivq9kd5NV6Rrr4xvAxZ5u6PtfoaIn8UA9XN7V6zCnw7HxgbjTnvqJSJO9PQ+H7Knm+MUm82v+0WGqVJrMm0h98oRDyUy2HuVJFl4NUqe6/hoJMcyY3qx0aCTWNfSqmIy+xuGcYdinW3wS0eu6rjlvIF8bhuqQ+fzGvNyRljGvrzv+JutfGgO07QnVJXozbn4xK6LZwQwScsYn43qda2v3ZDVWxDv4PsD9SWujqH+TxeDU64M8dcom843EMZADxPGGintijtiMeR01J9HFIPnShPrxfePaSGvYGLOWqeHT+vvENO+JA2Jg1mItfo3o6tG89Vq5yZbq3Fp7XmNNPMwH7QO3p/vRZHltlOQ/PvApIMwmGlIymXLd4YuaitbuCY0Ip0f4TLQwIxc3VKYRM7pW9dBAmyrE0ZOO61ke84CeOEBXyMHWQ7m4yQRKrdxky3TuUDuHrFGKV2YzUdJGSZssAsLAbLjBNQ3BghPFk8HFdRRwU0kRPi9aV+hi+DUyQwCS99Aa6SaS1z1Mz+IYr6VxTxxYF/6M56OZzP+GdSVrXaFzj9odaY2FeL9+Yq8UtVHKJgOKgyuYLCFYmixngB02lDIEQVLHd5mscU8cRNc0N8g956EmA91uU+G82VpX6Nxce0ljIT63flEbpc5ko+BJEG9IarNEIbyhIzCIaXCJe2b22FAhBz+RCSkd/ve5sQ8x2UN6kjDEmcYRk7FeTNeTta7QubX2osaa+MT6RW0UaTJIwDahF4cFQ0NIAUGwOOnYpiRN9Dnohvf38LznyqbAd6FLY9SGtQAuNuZWdbi1sUHoJgIamMzxiJ4IXT6G/iZNhtbw32lPac51OjfVXtRY1iTWd9fjPz7y2ijKkywaBMOHFARSk+A4d78XzETEmDGODG4kiJ9ZNChVlwbTAjDThYNlvk7NwTcR0MZkQOue6LrozPmsSH9Ab7bW9Tq31J7XWKOJr5+7xns4U/m6aBjGWsxkhtEYM5lhNMZMZhiNMZMZRlM+hy/gDHcndeX5oAAAAABJRU5ErkJggg==" />
</ui:WaitImageVanish.Image>
<ui:WaitImageVanish.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="ee247010-bb41-4606-9a26-3a3eeea5d2df" TimeoutMS="[defaultDelayValue]" WaitForReady="INTERACTIVE" />
</ui:WaitImageVanish.Target>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:WaitImageVanish>
<ui:LogMessage DisplayName="Log Message" sap:VirtualizedContainerService.HintSize="334,91" sap2010:WorkflowViewState.IdRef="LogMessage_31" Level="Trace" Message="["'Student Comment Maintenance' image exists"]" />
</Sequence>
</ActivityAction>
</ui:BrowserScope.Body>
</ui:BrowserScope>
</TryCatch.Try>
<TryCatch.Catches>
<Catch x:TypeArguments="ui:CheckpointException" sap:VirtualizedContainerService.HintSize="438,356" sap2010:WorkflowViewState.IdRef="Catch`1_6">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">False</x:Boolean>
<x:Boolean x:Key="IsPinned">False</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ActivityAction x:TypeArguments="ui:CheckpointException">
<ActivityAction.Argument>
<DelegateInArgument x:TypeArguments="ui:CheckpointException" Name="exception" />
</ActivityAction.Argument>
<Sequence sap2010:Annotation.AnnotationText="Log the underlying exception and throw a BusinessRule exception." sap:VirtualizedContainerService.HintSize="376,287" sap2010:WorkflowViewState.IdRef="Sequence_19">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:LogMessage DisplayName="Log Message" sap:VirtualizedContainerService.HintSize="334,91" sap2010:WorkflowViewState.IdRef="LogMessage_16" Level="Error" Message="[exception]" />
<f:ThrowBusinessRuleException sap:VirtualizedContainerService.HintSize="334,22" sap2010:WorkflowViewState.IdRef="ThrowBusinessRuleException_6" Message="[String.Format("An exception has occurred with message '{0}' while entering the new comment.", exception.Message)]" TakeScreenshot="True" />
</Sequence>
</ActivityAction>
</Catch>
<Catch x:TypeArguments="s:Exception" sap:VirtualizedContainerService.HintSize="438,356" sap2010:WorkflowViewState.IdRef="Catch`1_7">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">False</x:Boolean>
<x:Boolean x:Key="IsPinned">False</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ActivityAction x:TypeArguments="s:Exception">
<ActivityAction.Argument>
<DelegateInArgument x:TypeArguments="s:Exception" Name="exception" />
</ActivityAction.Argument>
<Sequence sap2010:Annotation.AnnotationText="Log the underlying exception and throw a BusinessRule exception." sap:VirtualizedContainerService.HintSize="376,287" sap2010:WorkflowViewState.IdRef="Sequence_20">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:LogMessage DisplayName="Log Message" sap:VirtualizedContainerService.HintSize="334,91" sap2010:WorkflowViewState.IdRef="LogMessage_18" Level="Error" Message="[exception]" />
<f:ThrowBusinessRuleException sap:VirtualizedContainerService.HintSize="334,22" sap2010:WorkflowViewState.IdRef="ThrowBusinessRuleException_7" Message="[String.Format("An unexpected exception has occurred while entering the new comment. {0}", exception.Message)]" TakeScreenshot="False" />
</Sequence>
</ActivityAction>
</Catch>
</TryCatch.Catches>
</TryCatch>
<TryCatch sap2010:Annotation.AnnotationText="Try to save the new comment record" DisplayName="Try Catch" sap:VirtualizedContainerService.HintSize="1077,1940" sap2010:WorkflowViewState.IdRef="TryCatch_5">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">False</x:Boolean>
<x:Boolean x:Key="IsPinned">False</x:Boolean>
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<TryCatch.Try>
<ui:BrowserScope SearchScope="{x:Null}" Selector="{x:Null}" TimeoutMS="{x:Null}" UiBrowser="{x:Null}" Browser="[ActiveBrowser]" BrowserType="IE" DisplayName="Attach Browser" sap:VirtualizedContainerService.HintSize="434,886" sap2010:WorkflowViewState.IdRef="BrowserScope_6" InformativeScreenshot="42b6178c5a09eb986523da89db0b091a">
<ui:BrowserScope.Body>
<ActivityAction x:TypeArguments="x:Object">
<ActivityAction.Argument>
<DelegateInArgument x:TypeArguments="x:Object" Name="ContextTarget" />
</ActivityAction.Argument>
<Sequence sap2010:Annotation.AnnotationText="Undertake the steps necessary to save the new record" DisplayName="Do" sap:VirtualizedContainerService.HintSize="376,740" sap2010:WorkflowViewState.IdRef="Sequence_21">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:ClickImage ContinueOnError="{x:Null}" DelayBefore="{x:Null}" sap2010:Annotation.AnnotationText="Click the Save and Clear link to save the newly created record and clear the window at the same time.

A DelayAfter attribute is set to allow the record to save and any potential error message to stop flashing before we check for it. " ClickType="CLICK_SINGLE" DelayMS="[Cint(defaultDelayValue * 0.5)]" DisplayName="Click Image" sap:VirtualizedContainerService.HintSize="334,256" sap2010:WorkflowViewState.IdRef="ClickImage_10" KeyModifiers="None" MouseButton="BTN_LEFT" SendWindowMessages="False">
<ui:ClickImage.CursorPosition>
<ui:CursorPosition Position="Center">
<ui:CursorPosition.OffsetX>
<InArgument x:TypeArguments="x:Int32" />
</ui:CursorPosition.OffsetX>
<ui:CursorPosition.OffsetY>
<InArgument x:TypeArguments="x:Int32" />
</ui:CursorPosition.OffsetY>
</ui:CursorPosition>
</ui:ClickImage.CursorPosition>
<ui:ClickImage.Image>
<ui:ImageTarget Image="{x:Null}" Accuracy="0.8" Profile="Basic" TargetImageBase64="iVBORw0KGgoAAAANSUhEUgAAAGMAAAATCAYAAACEGbNUAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAARRSURBVFhH7ZgxaNxIFIZVprwy7cIVcZeFFGe4xgtbZOGKLLiIIIURW5jFhVlcBOHGiC2MSBGWFMakCGgLg1IE5CKwaQxyYZALg1IYlCKFihRbXLHFFf+9N7uaHY0ke53DORcy/EgavX3zZr55b0Y2km8z1HoYqmE8IEkY9ocQnYMArQMf/ucI8VW81Nf8fWvXQ2vLxYTskq9TJNdFx7XuLgljdJ5i8ClGcxgguEox+wcAyR5Pb5T1NoU3nhQc17q7ljDOUlgnMRqvfQSXKaY/pkI84QylTNO/IWCYPSfv+AxYNwAjU09598Dk9WgM4+p3cgwkaTem5z+BULP/r1JgJOh/jLH+JqLM4NITCzGM5PsUo9M5FPU6OY8FjNaLQc6pRYE7Z8tnMagHCqQKRlnMDgEQtvcNw/2SiMxYG4YiM7I9gmEEpxN0nnfQ3eyKa2ujhebTJsyX5gJGf+mUs+IeAr0vlcK4bQy/BMaHCGv7kwIM58BBeB7C/xTg+L2H46Nj2NTG7da+n4dB4swoDZYHoaR9ZiNX3MKOJ2h9OL8Ph0V76Y9V4TObMIuk/1aseuU3OgzR502ZrMEojfGWuEQZ1/qQMJzPCcz3ER7vTeBfpIguIky+hAKGve8I9XcGGLy2BRD/0IX/1oVL2aTDYOUGrASu28i0VwJjmB7fa+086AxSlXI+yU9WLnPtSjz6QmDd2o/qY8UY9bjE+DRJGPZpgu67EL/tBjDpag59NHcoAwhG/J06uUwQXxOkqwTBGR19CQ6oVBXKVIkEmEXA4j6DRMomQgWQDUa3FdJWU5ld2aRnk6FPVtaePbPESi/pR0rxfVOMq8SlSsLgY23nTYhHPR+PtgMYL0Yw2pQRBCOlPTv5MVd0Pd+4w8sYs7GHaKOLbtssOM5pUYM9bZDqRPAE8D23qav5tkzQJ076rICh9pmzXzwL3WHPqIpx1bhUSRh9LjeHExhbPjkhIG0brVe2hBHRh11EdjHb0+kqov0kpWu6acJ/siYdiiC0zrKA+Z0aeK5E8ARwwOpvOXBaUVlK6wPM2kp9VsDQ2zkjCzBIbK/3Veq7IsZV41K1hDGO0DwgGC89GH+NMKJN2tobzWFwVqTz7wr+YzjukQ9z28ZgewCfgKhORUCL1BRSBiU2d0XqRHDA+irL+aoYRKnPKhiL+8yWM0CNQZVqJ/3yO813VYyrxKVKwjD5JLXH5YlgtF06LblobMwzYzabf+Tx1aONvr/nwtrqwxnSJj4O6As8KDiudXdJGN2jCI1dKlEbtFc8s8XJ6fEzmvATKklUoo5PQlg7dKLq9eEejsT/paIL2tTF/6ZIitNaPycJo0MnqMY2wfjDhfFkQDD66GxaMHdcdLdsmFkmfJwgOs8gFB3W+nlJGFxqmj3OCgfG733xtc0yX1n0cefSV3goMkFkQQ3hXiRh8ESP3nlYf26i8bSDVrsjShVDCutM+CWSMGr935rhX/IMQCzzMnV8AAAAAElFTkSuQmCC" />
</ui:ClickImage.Image>
<ui:ClickImage.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="8dcbc1fd-74f2-4747-b74b-3514a695be62" WaitForReady="INTERACTIVE">
<ui:Target.TimeoutMS>
<InArgument x:TypeArguments="x:Int32" />
</ui:Target.TimeoutMS>
</ui:Target>
</ui:ClickImage.Target>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:ClickImage>
<ui:ImageFound sap2010:Annotation.AnnotationText="Check to see if the expected window heading and empty field are available. An accuracy value of 0.9 is required for a more confidence match." DisplayName="Image Exists" Found="[elementExists]" sap:VirtualizedContainerService.HintSize="334,163" sap2010:WorkflowViewState.IdRef="ImageFound_7">
<ui:ImageFound.Image>
<ui:ImageTarget Image="{x:Null}" Accuracy="0.9" Profile="Basic" TargetImageBase64="iVBORw0KGgoAAAANSUhEUgAAARYAAABBCAYAAAAUsYu0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAATLSURBVHhe7djBjRtHEIXhDcc6OgwrA+tmKAJDKQiKwEdDN6WzykAKwUcfabeMZzyUqrp7hk1qOfN/QMHsqhpysTP7YPHpAgCLESwAliNYACxHsABYjmABsBzBAmA5ggXAcgQLgOW6wfL+w6e07uXenzfLfxcv9WcEfqQyWLI/Hq97uOdnzfLfQVYAimDp/aFks2r3Wrd632j2c7SX7fZmZ8bv5Jy6wVKJ89H+Xrd632j2c0Z7s+9zJvxOzmlXsDjt+jX+Oqpm6vvcXzvfG+34a+9Jb+ZG8x5//+p9vF/tVf3G+9Ve1Xe+U+163/fUk2oW+z7DMQz/KTS66dmuv46ymXpVuWyuctncS6p+NJpX/L1juWyuquYum6uqeZTtqFw295KsH3teOI7yy9tm9ubH2Z7duJ/1s16T9bNek/WzvWhmJ9I18bqsn/WaUV9Ge1VfRnvez3pN1h+dm6yHx9YNFtGN93Kxl+3Io+3KzE7UuybOqt3Z/uyexH6116zc1dl7OJ6pYHHZgzE6uxW7vZJ4dlt2ZWYn6l0TZ9XubH92T2Jf515JPLuZXfWyGY5hc7A08YEYnd2K3V5JPLstuzKzE/WuibNqd7Y/uyexr3OvJJ7dnt3eDh5T98vbSpyPzu5Wu1FvN856u260F+e9/dnd2f7snsR+tZfp7cZZb1dmdvBYusGS3exsVp2912T9rNdk/awn1W5my67TXrabzbJek/WzvWa2P7snsa/zlt3MaDeem6yHx1b+U0g3uyqX9b2XlcvmXi6bq1zWkzjTudp3vptVlO2oXNZrZvuze5L11cvKZT2JM53V83MsHEf3O5bs5rfKZDO/RjN/7XxPc3/tfG+0k8lmvf1Iu149M/vX9mf3ZNT3iqp+k81iT2cvHMuuL28BoIdgAbAcwQJgOYIFwHIEC4DlCBYAyxEsAJYjWAAsR7AAWI5gAbAcwQJgOYIFwHIEC4DlCJaDef/hD4q6W1UIloPp3Wygeff7uyVFsJwIwYKRFgpfvn65qgiWk/Gb/fTE7cX3CBZsRrBgJAbL619ef1c+z4pgORmCBSMeLC1E3n58vjz/dfm/2rk9Ox4ksW4SLO1DVdda/fD33i+bqbf65/hRCBaMKFg8VGQ2XJYHS3xY/bznQd778FfX9d5vzzWPhmDBiAeLh0qjYPn0+e9vz08MFNXNg8XteZD3PvzVdVt/PvX2/hwvDcGCkSpYFCovMlg0j3t+1p5Kqp7+G/t+ltjTnu/HnSMhWDASgyVWC5W7B0ujP9L44Pq5mu3p+6zal2xXqmuOhGDBiAdL/OJWoXL371ii6g85PtQ69/qx1HdVX7xfXXtkBAtGFCytXv306luIKFA8VP787b+/Qw8U1UMFS+aa/eraIyNYMOLB0qo9J7GeP/78b70tw2V5sLQPcX7uvdbZ+82qvni/uvbICBaMxGDJ6s2vb7rhcpP/Y2kfooq85ztZ3+dN1XO9WZPte6l3VAQLRmaCpVUvXG4SLHi5CBaMzAZLK4ULwXJyvZsNNFuCpVULFA+VVgTLyRAsGNkaLFkRLCdDsGCEYMFmBAtGWiisKILlRNrNpqh7VYVgAbAcwQJgOYIFwHIEC4DlCBYAyxEsAJYjWAAsR7AAWI5gAbDY5fIPk3CLlrxgxaEAAAAASUVORK5CYII=" />
</ui:ImageFound.Image>
<ui:ImageFound.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="{x:Null}" Id="62eb626d-7686-4637-9bee-6b9f03a63ee6" TimeoutMS="[Cint(defaultDelayValue * 0.5)]" WaitForReady="INTERACTIVE" />
</ui:ImageFound.Target>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:ImageFound>
<ui:CheckTrue sap2010:Annotation.AnnotationText="Check to make sure the standard heading was found" DisplayName="Check True" ErrorMessage="Student Comments window does not appear to be cleared as expected" Expression="[elementExists]" sap:VirtualizedContainerService.HintSize="334,118" sap2010:WorkflowViewState.IdRef="CheckTrue_7">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
</ui:CheckTrue>
</Sequence>
</ActivityAction>
</ui:BrowserScope.Body>
</ui:BrowserScope>
</TryCatch.Try>
<TryCatch.Catches>
<Catch x:TypeArguments="s:Exception" sap:VirtualizedContainerService.HintSize="438,356" sap2010:WorkflowViewState.IdRef="Catch`1_8">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">False</x:Boolean>
<x:Boolean x:Key="IsPinned">False</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ActivityAction x:TypeArguments="s:Exception">
<ActivityAction.Argument>
<DelegateInArgument x:TypeArguments="s:Exception" Name="exception" />
</ActivityAction.Argument>
<Sequence sap2010:Annotation.AnnotationText="Log the underlying exception and throw a BusinessRule exception." sap:VirtualizedContainerService.HintSize="376,287" sap2010:WorkflowViewState.IdRef="Sequence_22">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:LogMessage DisplayName="Log Message" sap:VirtualizedContainerService.HintSize="334,91" sap2010:WorkflowViewState.IdRef="LogMessage_19" Level="Error" Message="[exception]" />
<f:ThrowBusinessRuleException sap:VirtualizedContainerService.HintSize="334,22" sap2010:WorkflowViewState.IdRef="ThrowBusinessRuleException_8" Message="[String.Format("An unexpected exception has occurred. {0}", exception.Message)]" TakeScreenshot="False" />
</Sequence>
</ActivityAction>
</Catch>
<Catch x:TypeArguments="ui:CheckpointException" sap:VirtualizedContainerService.HintSize="438,356" sap2010:WorkflowViewState.IdRef="Catch`1_9">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">False</x:Boolean>
<x:Boolean x:Key="IsPinned">False</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ActivityAction x:TypeArguments="ui:CheckpointException">
<ActivityAction.Argument>
<DelegateInArgument x:TypeArguments="ui:CheckpointException" Name="exception" />
</ActivityAction.Argument>
<Sequence sap2010:Annotation.AnnotationText="Log the underlying exception and throw a BusinessRule exception." sap:VirtualizedContainerService.HintSize="376,287" sap2010:WorkflowViewState.IdRef="Sequence_23">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:LogMessage DisplayName="Log Message" sap:VirtualizedContainerService.HintSize="334,91" sap2010:WorkflowViewState.IdRef="LogMessage_20" Level="Error" Message="[exception]" />
<f:ThrowBusinessRuleException sap:VirtualizedContainerService.HintSize="334,22" sap2010:WorkflowViewState.IdRef="ThrowBusinessRuleException_9" Message="[String.Format("An exception has occurred with message '{0}' while saving the new comment.", exception.Message)]" TakeScreenshot="True" />
</Sequence>
</ActivityAction>
</Catch>
</TryCatch.Catches>
</TryCatch>
<Sequence sap2010:Annotation.AnnotationText="Finalise outgoing arguments" sap:VirtualizedContainerService.HintSize="1077,414" sap2010:WorkflowViewState.IdRef="Sequence_24">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
<x:Boolean x:Key="IsAnnotationDocked">True</x:Boolean>
<x:Boolean x:Key="IsPinned">False</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<Assign sap:VirtualizedContainerService.HintSize="334,60" sap2010:WorkflowViewState.IdRef="Assign_3">
<Assign.To>
<OutArgument x:TypeArguments="x:Boolean">[ProcessSuccessful]</OutArgument>
</Assign.To>
<Assign.Value>
<InArgument x:TypeArguments="x:Boolean">True</InArgument>
</Assign.Value>
</Assign>
<Assign sap:VirtualizedContainerService.HintSize="334,60" sap2010:WorkflowViewState.IdRef="Assign_4">
<Assign.To>
<OutArgument x:TypeArguments="x:String">[ProcessMessage]</OutArgument>
</Assign.To>
<Assign.Value>
<InArgument x:TypeArguments="x:String">New student comment record saved successfully</InArgument>
</Assign.Value>
</Assign>
<ui:LogMessage DisplayName="Log Message" sap:VirtualizedContainerService.HintSize="334,91" sap2010:WorkflowViewState.IdRef="LogMessage_21" Level="Info" Message="["Process end: Enter student comment"]" />
</Sequence>
</Sequence>
</Activity>