-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProcess.xaml
413 lines (413 loc) · 30.6 KB
/
Process.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
<Activity mc:Ignorable="sap sap2010" x:Class="ProcessTransaction" xmlns="http://schemas.microsoft.com/netfx/2009/xaml/activities" 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:sd="clr-namespace:System.Data;assembly=System.Data" xmlns:ui="http://schemas.uipath.com/workflow/activities" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<x:Members>
<x:Property Name="in_Config" Type="InArgument(scg:Dictionary(x:String, x:Object))" />
<x:Property Name="in_DealbookBrowser" Type="InArgument(ui:Browser)" />
<x:Property Name="io_TransactionItem" Type="InOutArgument(sd:DataRow)" />
</x:Members>
<mva:VisualBasic.Settings>
<x:Null />
</mva:VisualBasic.Settings>
<sap:VirtualizedContainerService.HintSize>1106,4061</sap:VirtualizedContainerService.HintSize>
<sap2010:WorkflowViewState.IdRef>ProcessTransaction_1</sap2010:WorkflowViewState.IdRef>
<TextExpression.NamespacesForImplementation>
<scg:List x:TypeArguments="x:String" Capacity="25">
<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>UiPath.Core</x:String>
<x:String>UiPath.Core.Activities</x:String>
<x:String>System.Windows.Markup</x:String>
<x:String>Microsoft.VisualBasic.CompilerServices</x:String>
<x:String>UiPath.Excel</x:String>
<x:String>System.Xml.Serialization</x:String>
<x:String>System.Text</x:String>
</scg:List>
</TextExpression.NamespacesForImplementation>
<TextExpression.ReferencesForImplementation>
<scg:List x:TypeArguments="AssemblyReference" Capacity="24">
<AssemblyReference>System.Activities</AssemblyReference>
<AssemblyReference>Microsoft.VisualBasic</AssemblyReference>
<AssemblyReference>mscorlib</AssemblyReference>
<AssemblyReference>System.Data</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>System.ComponentModel.Composition</AssemblyReference>
<AssemblyReference>System.ServiceModel</AssemblyReference>
<AssemblyReference>Microsoft.VisualStudio.Services.Common</AssemblyReference>
<AssemblyReference>UiPath.UiAutomation.Activities</AssemblyReference>
<AssemblyReference>UiPath.System.Activities</AssemblyReference>
<AssemblyReference>System.Data.DataSetExtensions</AssemblyReference>
<AssemblyReference>UiPath.Excel</AssemblyReference>
<AssemblyReference>UiPath.Mail</AssemblyReference>
<AssemblyReference>System.ValueTuple</AssemblyReference>
<AssemblyReference>UiPath.Studio.Plugin.Workflow</AssemblyReference>
<AssemblyReference>System.Runtime.WindowsRuntime</AssemblyReference>
</scg:List>
</TextExpression.ReferencesForImplementation>
<Sequence sap2010:Annotation.AnnotationText="Description: In this file all other process specific files will be invoked. If an application exception occurs, the current transaction can be retried. If a BRE is thrown, the transaction will be skipped. Can be a flowchart or sequence. " DisplayName="ProcessTransaction" sap:VirtualizedContainerService.HintSize="1086,4001" sap2010:WorkflowViewState.IdRef="Sequence_1">
<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>
<TryCatch DisplayName="Catch process exceptions" sap:VirtualizedContainerService.HintSize="1044,3867" sap2010:WorkflowViewState.IdRef="TryCatch_1">
<TryCatch.Try>
<Sequence DisplayName="Capture Deals" sap:VirtualizedContainerService.HintSize="1006,3640" sap2010:WorkflowViewState.IdRef="Sequence_10">
<Sequence.Variables>
<Variable x:TypeArguments="x:String" Name="Round" />
<Variable x:TypeArguments="x:String" Name="PreMoneyValuation" />
<Variable x:TypeArguments="x:String" Name="SourceURL" />
<Variable x:TypeArguments="x:String" Name="Verify" />
<Variable x:TypeArguments="x:String" Name="Amount" />
<Variable x:TypeArguments="x:String" Name="Investors" />
<Variable x:TypeArguments="x:String" Name="InvestorURL" />
<Variable x:TypeArguments="x:String" Name="Investor" />
</Sequence.Variables>
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<Sequence DisplayName="Navigate to Deal Page and Capture Data" sap:VirtualizedContainerService.HintSize="964,2556" sap2010:WorkflowViewState.IdRef="Sequence_6">
<Sequence.Variables>
<Variable x:TypeArguments="ui:Browser" Name="DealbookBrowser" />
<Variable x:TypeArguments="ui:Browser" Name="DealBrowser" />
</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="IsPinned">False</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:BrowserScope SearchScope="{x:Null}" Selector="{x:Null}" Browser="[in_DealbookBrowser]" BrowserType="Chrome" DisplayName="Attach Dealbook Browser" sap:VirtualizedContainerService.HintSize="922,259" sap2010:WorkflowViewState.IdRef="BrowserScope_3" TimeoutMS="[cint(in_Config("TimeoutMedium").ToString)]" UiBrowser="[DealbookBrowser]">
<ui:BrowserScope.Body>
<ActivityAction x:TypeArguments="x:Object">
<ActivityAction.Argument>
<DelegateInArgument x:TypeArguments="x:Object" Name="ContextTarget" />
</ActivityAction.Argument>
<Sequence DisplayName="Navigate to Deal Page" sap:VirtualizedContainerService.HintSize="376,151" sap2010:WorkflowViewState.IdRef="Sequence_5">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:NavigateTo Browser="[DealbookBrowser]" DisplayName="Navigate To Deal URL" sap:VirtualizedContainerService.HintSize="334,59" sap2010:WorkflowViewState.IdRef="NavigateTo_1" Url="[in_Config("URL_Dealbook").ToString + io_TransactionItem("Deal URL").ToString]" />
</Sequence>
</ActivityAction>
</ui:BrowserScope.Body>
</ui:BrowserScope>
<ui:BrowserScope Browser="{x:Null}" SearchScope="{x:Null}" TimeoutMS="{x:Null}" BrowserType="Chrome" DisplayName="Attach Deal Browser" sap:VirtualizedContainerService.HintSize="922,2165" sap2010:WorkflowViewState.IdRef="BrowserScope_4" Selector="["<html app='chrome.exe' title='Dealbook' url='*" + io_TransactionItem("Deal URL").ToString + "' />"]" UiBrowser="[DealBrowser]">
<ui:BrowserScope.Body>
<ActivityAction x:TypeArguments="x:Object">
<ActivityAction.Argument>
<DelegateInArgument x:TypeArguments="x:Object" Name="ContextTarget" />
</ActivityAction.Argument>
<Sequence DisplayName="Capture Deal Data" sap:VirtualizedContainerService.HintSize="888,2057" sap2010:WorkflowViewState.IdRef="Sequence_7">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<Sequence DisplayName="Get Investors" sap:VirtualizedContainerService.HintSize="846,1285" sap2010:WorkflowViewState.IdRef="Sequence_12">
<Sequence.Variables>
<Variable x:TypeArguments="scg:List(x:String)" Default="[New List(Of String)]" Name="InvestorsURLList" />
<Variable x:TypeArguments="scg:List(x:String)" Default="[New List(Of String)]" Name="InvestorsList" />
<Variable x:TypeArguments="scg:IEnumerable(ui:UiElement)" Name="InvestorsChildren" />
<Variable x:TypeArguments="x:String" Name="InvestorName" />
<Variable x:TypeArguments="x:String" Name="InvestorsURL" />
</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="IsPinned">False</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:GetAttribute ContinueOnError="{x:Null}" Attribute="innertext" DisplayName="Get Investors" sap:VirtualizedContainerService.HintSize="804,96" sap2010:WorkflowViewState.IdRef="GetAttribute_9">
<ui:GetAttribute.Result>
<OutArgument x:TypeArguments="x:String">[Investors]</OutArgument>
</ui:GetAttribute.Result>
<ui:GetAttribute.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="["<webctrl colName='"+ io_TransactionItem("Close Date").ToString +"' rowName='Investors' />"]" TimeoutMS="[cint(in_Config("TimeoutMedium").ToString)]">
<ui:Target.WaitForReady>
<InArgument x:TypeArguments="ui:WaitForReady" />
</ui:Target.WaitForReady>
</ui:Target>
</ui:GetAttribute.Target>
</ui:GetAttribute>
<ui:FindChildren Children="[InvestorsChildren]" DisplayName="Find Investors" Filter="<webctrl />" sap:VirtualizedContainerService.HintSize="804,106" sap2010:WorkflowViewState.IdRef="FindChildren_1" Scope="FIND_CHILDREN">
<ui:FindChildren.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" InformativeScreenshot="c13e61a0fc51f8e5a7fd32414b6b9736" Selector="["<webctrl tag='UL' colName='"+ io_TransactionItem("Close Date").ToString +"' rowName='Investors' />"]" TimeoutMS="[cint(in_Config("TimeoutMedium").ToString)]">
<ui:Target.WaitForReady>
<InArgument x:TypeArguments="ui:WaitForReady" />
</ui:Target.WaitForReady>
</ui:Target>
</ui:FindChildren.Target>
</ui:FindChildren>
<ui:ForEach x:TypeArguments="ui:UiElement" CurrentIndex="{x:Null}" DisplayName="For Each Investor" sap:VirtualizedContainerService.HintSize="804,711" sap2010:WorkflowViewState.IdRef="ForEach`1_2" Values="[InvestorsChildren]">
<ui:ForEach.Body>
<ActivityAction x:TypeArguments="ui:UiElement">
<ActivityAction.Argument>
<DelegateInArgument x:TypeArguments="ui:UiElement" Name="investorChild" />
</ActivityAction.Argument>
<Sequence DisplayName="Body" sap:VirtualizedContainerService.HintSize="768,578" sap2010:WorkflowViewState.IdRef="Sequence_11">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<ui:GetAttribute ContinueOnError="{x:Null}" Attribute="innertext" DisplayName="Get Investor Name" sap:VirtualizedContainerService.HintSize="726,96" sap2010:WorkflowViewState.IdRef="GetAttribute_7">
<ui:GetAttribute.Result>
<OutArgument x:TypeArguments="x:String">[InvestorName]</OutArgument>
</ui:GetAttribute.Result>
<ui:GetAttribute.Target>
<ui:Target ClippingRegion="{x:Null}" Selector="{x:Null}" Element="[investorChild]" TimeoutMS="[cint(in_Config("TimeoutMedium").ToString)]">
<ui:Target.WaitForReady>
<InArgument x:TypeArguments="ui:WaitForReady" />
</ui:Target.WaitForReady>
</ui:Target>
</ui:GetAttribute.Target>
</ui:GetAttribute>
<ui:AnchorBase AnchorPosition="Auto" DisplayName="Get Investor URL" sap:VirtualizedContainerService.HintSize="726,226" sap2010:WorkflowViewState.IdRef="AnchorBase_1">
<ui:AnchorBase.Action>
<ActivityAction x:TypeArguments="ui:Anchor">
<ActivityAction.Argument>
<DelegateInArgument x:TypeArguments="ui:Anchor" Name="ContextAnchor" />
</ActivityAction.Argument>
<ui:GetAttribute ContinueOnError="{x:Null}" Attribute="href" DisplayName="Get Investor URL" sap:VirtualizedContainerService.HintSize="334,134" sap2010:WorkflowViewState.IdRef="GetAttribute_8">
<ui:GetAttribute.Result>
<OutArgument x:TypeArguments="x:String">[InvestorsURL]</OutArgument>
</ui:GetAttribute.Result>
<ui:GetAttribute.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" InformativeScreenshot="d42dec6ff14d38b7aec53c3ddad4e08b" Selector="<webctrl tag='A' />" TimeoutMS="[cint(in_Config("TimeoutMedium").ToString)]">
<ui:Target.WaitForReady>
<InArgument x:TypeArguments="ui:WaitForReady" />
</ui:Target.WaitForReady>
</ui:Target>
</ui:GetAttribute.Target>
</ui:GetAttribute>
</ActivityAction>
</ui:AnchorBase.Action>
<ui:AnchorBase.AnchorProvider>
<ui:WaitUiElementAppear FoundElement="{x:Null}" WaitActive="{x:Null}" WaitVisible="{x:Null}" DisplayName="Find Investor URL" sap:VirtualizedContainerService.HintSize="334,68" sap2010:WorkflowViewState.IdRef="WaitUiElementAppear_1">
<ui:WaitUiElementAppear.Target>
<ui:Target ClippingRegion="{x:Null}" Selector="{x:Null}" Element="[investorChild]" TimeoutMS="[cint(in_Config("TimeoutMedium").ToString)]">
<ui:Target.WaitForReady>
<InArgument x:TypeArguments="ui:WaitForReady" />
</ui:Target.WaitForReady>
</ui:Target>
</ui:WaitUiElementAppear.Target>
</ui:WaitUiElementAppear>
</ui:AnchorBase.AnchorProvider>
</ui:AnchorBase>
<AddToCollection x:TypeArguments="x:String" Collection="[InvestorsList]" DisplayName="Add Investor To Collection" sap:VirtualizedContainerService.HintSize="726,22" sap2010:WorkflowViewState.IdRef="AddToCollection`1_3" Item="[InvestorName.Trim]" />
<AddToCollection x:TypeArguments="x:String" Collection="[InvestorsURLList]" DisplayName="Add Investor URL To Collection" sap:VirtualizedContainerService.HintSize="726,22" sap2010:WorkflowViewState.IdRef="AddToCollection`1_4" Item="[InvestorsURL.Trim]" />
</Sequence>
</ActivityAction>
</ui:ForEach.Body>
</ui:ForEach>
<Assign DisplayName="Convert Investors List to String" sap:VirtualizedContainerService.HintSize="804,60" sap2010:WorkflowViewState.IdRef="Assign_13">
<Assign.To>
<OutArgument x:TypeArguments="x:String">[Investor]</OutArgument>
</Assign.To>
<Assign.Value>
<InArgument x:TypeArguments="x:String">[String.Join(",", InvestorsList)]</InArgument>
</Assign.Value>
</Assign>
<Assign DisplayName="Convert Investors URL List to String" sap:VirtualizedContainerService.HintSize="804,60" sap2010:WorkflowViewState.IdRef="Assign_14">
<Assign.To>
<OutArgument x:TypeArguments="x:String">[InvestorURL]</OutArgument>
</Assign.To>
<Assign.Value>
<InArgument x:TypeArguments="x:String">[String.Join(",", InvestorsURLList)]</InArgument>
</Assign.Value>
</Assign>
</Sequence>
<ui:GetAttribute ContinueOnError="{x:Null}" Attribute="innertext" DisplayName="Get Round" sap:VirtualizedContainerService.HintSize="846,96" sap2010:WorkflowViewState.IdRef="GetAttribute_2">
<ui:GetAttribute.Result>
<OutArgument x:TypeArguments="x:String">[Round]</OutArgument>
</ui:GetAttribute.Result>
<ui:GetAttribute.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="["<webctrl colName='"+ io_TransactionItem("Close Date").ToString +"' rowName='Round' />"]" TimeoutMS="[cint(in_Config("TimeoutMedium").ToString)]">
<ui:Target.WaitForReady>
<InArgument x:TypeArguments="ui:WaitForReady" />
</ui:Target.WaitForReady>
</ui:Target>
</ui:GetAttribute.Target>
</ui:GetAttribute>
<ui:GetAttribute ContinueOnError="{x:Null}" Attribute="innertext" DisplayName="Get Amount" sap:VirtualizedContainerService.HintSize="846,96" sap2010:WorkflowViewState.IdRef="GetAttribute_6">
<ui:GetAttribute.Result>
<OutArgument x:TypeArguments="x:String">[Amount]</OutArgument>
</ui:GetAttribute.Result>
<ui:GetAttribute.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="["<webctrl colName='"+ io_TransactionItem("Close Date").ToString +"' rowName='Amount' />"]" TimeoutMS="[cint(in_Config("TimeoutMedium").ToString)]">
<ui:Target.WaitForReady>
<InArgument x:TypeArguments="ui:WaitForReady" />
</ui:Target.WaitForReady>
</ui:Target>
</ui:GetAttribute.Target>
</ui:GetAttribute>
<ui:GetAttribute ContinueOnError="{x:Null}" Attribute="innertext" DisplayName="Get Pre-money valuation" sap:VirtualizedContainerService.HintSize="846,96" sap2010:WorkflowViewState.IdRef="GetAttribute_3">
<ui:GetAttribute.Result>
<OutArgument x:TypeArguments="x:String">[PreMoneyValuation]</OutArgument>
</ui:GetAttribute.Result>
<ui:GetAttribute.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="["<webctrl colName='"+ io_TransactionItem("Close Date").ToString +"' rowName='Pre-money valution' />"]" TimeoutMS="[cint(in_Config("TimeoutMedium").ToString)]">
<ui:Target.WaitForReady>
<InArgument x:TypeArguments="ui:WaitForReady" />
</ui:Target.WaitForReady>
</ui:Target>
</ui:GetAttribute.Target>
</ui:GetAttribute>
<ui:GetAttribute ContinueOnError="{x:Null}" Attribute="innertext" DisplayName="Get Source URL" sap:VirtualizedContainerService.HintSize="846,96" sap2010:WorkflowViewState.IdRef="GetAttribute_4">
<ui:GetAttribute.Result>
<OutArgument x:TypeArguments="x:String">[SourceURL]</OutArgument>
</ui:GetAttribute.Result>
<ui:GetAttribute.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="["<webctrl colName='"+ io_TransactionItem("Close Date").ToString +"' rowName='Source URL' />"]" TimeoutMS="[cint(in_Config("TimeoutMedium").ToString)]">
<ui:Target.WaitForReady>
<InArgument x:TypeArguments="ui:WaitForReady" />
</ui:Target.WaitForReady>
</ui:Target>
</ui:GetAttribute.Target>
</ui:GetAttribute>
<ui:GetAttribute ContinueOnError="{x:Null}" Attribute="innertext" DisplayName="Get Verify" sap:VirtualizedContainerService.HintSize="846,96" sap2010:WorkflowViewState.IdRef="GetAttribute_5">
<ui:GetAttribute.Result>
<OutArgument x:TypeArguments="x:String">[Verify]</OutArgument>
</ui:GetAttribute.Result>
<ui:GetAttribute.Target>
<ui:Target ClippingRegion="{x:Null}" Element="{x:Null}" Selector="<webctrl tag='SPAN' parentclass='verify' />" TimeoutMS="[cint(in_Config("TimeoutMedium").ToString)]">
<ui:Target.WaitForReady>
<InArgument x:TypeArguments="ui:WaitForReady" />
</ui:Target.WaitForReady>
</ui:Target>
</ui:GetAttribute.Target>
</ui:GetAttribute>
</Sequence>
</ActivityAction>
</ui:BrowserScope.Body>
</ui:BrowserScope>
</Sequence>
<Sequence DisplayName="Update Transaction Item Data" sap:VirtualizedContainerService.HintSize="964,952" sap2010:WorkflowViewState.IdRef="Sequence_9">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
<x:Boolean x:Key="IsPinned">False</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<Assign DisplayName="Assign Investors" sap:VirtualizedContainerService.HintSize="262,60" sap2010:WorkflowViewState.IdRef="Assign_1">
<Assign.To>
<OutArgument x:TypeArguments="x:Object">[io_TransactionItem("Investors")]</OutArgument>
</Assign.To>
<Assign.Value>
<InArgument x:TypeArguments="x:Object">[Investors.Trim]</InArgument>
</Assign.Value>
</Assign>
<Assign DisplayName="Assign Round" sap:VirtualizedContainerService.HintSize="262,60" sap2010:WorkflowViewState.IdRef="Assign_2">
<Assign.To>
<OutArgument x:TypeArguments="x:Object">[io_TransactionItem("Round")]</OutArgument>
</Assign.To>
<Assign.Value>
<InArgument x:TypeArguments="x:Object">[Round.Trim]</InArgument>
</Assign.Value>
</Assign>
<Assign DisplayName="Assign Amount" sap:VirtualizedContainerService.HintSize="262,60" sap2010:WorkflowViewState.IdRef="Assign_3">
<Assign.To>
<OutArgument x:TypeArguments="x:Object">[io_TransactionItem("Amount")]</OutArgument>
</Assign.To>
<Assign.Value>
<InArgument x:TypeArguments="x:Object">[Amount.Trim]</InArgument>
</Assign.Value>
</Assign>
<Assign DisplayName="Assign Pre-money valuation" sap:VirtualizedContainerService.HintSize="262,60" sap2010:WorkflowViewState.IdRef="Assign_4">
<Assign.To>
<OutArgument x:TypeArguments="x:Object">[io_TransactionItem("Pre-money valuation")]</OutArgument>
</Assign.To>
<Assign.Value>
<InArgument x:TypeArguments="x:Object">[PreMoneyValuation.Trim]</InArgument>
</Assign.Value>
</Assign>
<Assign DisplayName="Assign Source URL" sap:VirtualizedContainerService.HintSize="262,60" sap2010:WorkflowViewState.IdRef="Assign_5">
<Assign.To>
<OutArgument x:TypeArguments="x:Object">[io_TransactionItem("Source URL")]</OutArgument>
</Assign.To>
<Assign.Value>
<InArgument x:TypeArguments="x:Object">[SourceURL.Trim]</InArgument>
</Assign.Value>
</Assign>
<Assign DisplayName="Assign Verify" sap:VirtualizedContainerService.HintSize="262,60" sap2010:WorkflowViewState.IdRef="Assign_6">
<Assign.To>
<OutArgument x:TypeArguments="x:Object">[io_TransactionItem("Verified/unverified")]</OutArgument>
</Assign.To>
<Assign.Value>
<InArgument x:TypeArguments="x:Object">[Verify.Trim]</InArgument>
</Assign.Value>
</Assign>
<Assign DisplayName="Assign Capture Date" sap:VirtualizedContainerService.HintSize="262,60" sap2010:WorkflowViewState.IdRef="Assign_12">
<Assign.To>
<OutArgument x:TypeArguments="x:Object">[io_TransactionItem("Data da captura")]</OutArgument>
</Assign.To>
<Assign.Value>
<InArgument x:TypeArguments="x:Object">[Date.Now.ToString("dd/MM/yyyy")]</InArgument>
</Assign.Value>
</Assign>
<Assign DisplayName="Assign Investor" sap:VirtualizedContainerService.HintSize="262,60" sap2010:WorkflowViewState.IdRef="Assign_15">
<Assign.To>
<OutArgument x:TypeArguments="x:Object">[io_TransactionItem("Investor")]</OutArgument>
</Assign.To>
<Assign.Value>
<InArgument x:TypeArguments="x:Object">[Investor.Trim]</InArgument>
</Assign.Value>
</Assign>
<Assign DisplayName="Assign Investor URL" sap:VirtualizedContainerService.HintSize="262,60" sap2010:WorkflowViewState.IdRef="Assign_16">
<Assign.To>
<OutArgument x:TypeArguments="x:Object">[io_TransactionItem("Investor URL")]</OutArgument>
</Assign.To>
<Assign.Value>
<InArgument x:TypeArguments="x:Object">[InvestorURL.Trim]</InArgument>
</Assign.Value>
</Assign>
</Sequence>
</Sequence>
</TryCatch.Try>
<TryCatch.Catches>
<Catch x:TypeArguments="s:Exception" sap:VirtualizedContainerService.HintSize="1010,21" 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>
<Throw Exception="[exception]" sap:VirtualizedContainerService.HintSize="200,22" sap2010:WorkflowViewState.IdRef="Throw_1" />
</ActivityAction>
</Catch>
</TryCatch.Catches>
</TryCatch>
</Sequence>
</Activity>