If anyone having any sample DU + Action Center project implement in Reframework please attach here in comments!!
Geneally the only addition would be in end process where we use parallel for each and wait for the tasks to complete if we need persistance
if not directly just use create form task in process xaml and if you want for form to be completed…create a in/out argument of type list of formtaskdata…and send it to end process and there implement the above parallel for each with wait for resume activity inside it
or can add all form data to datatable and create and wait for resume in the end process parallel or each
cheers
In parallel for each how many items will processed parallely?
Upto 100 it can go without any issue
It says thousand in best practices but as lod increases orchestrator will reject requests…ao better think of it as 100
Cheers
Suppose all the 100 items are waiting for the action to take place then what will happen?
Parallel for each is for that only
Like 100 would be created and job will go to suspended…
Once each task is completed or failed the job starts and does the next part whatever you assign in the process till all 100 are completed
Cheers
I would like to have the flow in laymans term.
- Get transaction data , the bot will fetch an item from a queue using "Get Queue Item!!
- In process state - classification and extraction will happen.
Now suppose if the classification confidence is below the threshold , then what are the changes I need to make in ReFramework
Dont want to wait for task…
Then after checking validation score in if codnition just use create form task
And send required details…no other changes are needed as you dint want to wait
Cheers