My Question is , i have bot and added queue item of 40 items, while running bot it stopped by exception , when i see in orchestrator queue 20 processed , when i run i bot again i want to start from 21 Queue item only. i dont want to run from 1st onwards.
Ideally bot will start from 21 only…there is no separate logic you need to create for that…
If you have combined process for adding and processing items…then use get queue items and check if there are any new queue items the output of get queu items can be used for it out_queueitems.Count>0 can be the condition to check…and if there are queue items then do not add again…else go to add queue item xaml