I trying very hard to complete the assessment , i am failing every time i do
I have reached the stage till we extract work items from acme system .
Next step is to filter the data WI5 type with open status
Open the Main workflow and expand the Init state by double clicking it.
Add a new sequence after the Invoke KillAllProcesses activity to read the input transactions data table.
o Inside this sequence, invoke four of the previously created workflows, as follows: System1 Login
System1 Navigate to Work Item System1 Extract Work Item Data Table System1 Close
o Import and bind arguments where necessary.
o From the list of work items, extract only the items needed in the current process - those of the WI5 type, with the status set to “Open”.
I haved added Assign activity below these 4 invoked workflows
WIList = dt_WIs.Select(“Type=‘WI5’ AND Status='Open '”)
When I run the main file , i get an error saying
Object reference not set to an instance of an object - for assign activity .
In one of updates in forum , it was mentioned that we need to give space . Thats the reason I had given a space . now I removed space and still i get the same error .
you mean to say all the workflow files that is there in Framework folder , System1 folder & Sha online folder should be placed where main workflow is present
If i delete the variable , and just create an argument , what should i put in the property - Output DataTable of extracted structured data table container
I did that . I am not getting the error now . But i want to know how to check if the data is filtered.
I think i found where I am stuck . In get trasaction data ,
I have used Assign activity in Then section
out_TransactionID=out_TransactionItem(“WIID”).ToString
There is below error
Arguments Out_TransactionId and Out_Transactionitem is of type string only. I changed the type to Queueitem for Transaction item . Now i get error in both the assign activity .
Attached get transaction data xaml file . Please someone have a look and help me out there .