正解:D
Orchestrator Queues allow tracking of Queue Items, enabling monitoring, auditing, and retrying failed transactions.
Why is Option D Correct?
* Orchestrator provides visibility on:
* Queue Item status (New, In Progress, Failed, Successful).
* Processing logs and error messages.
* Automatic retries for failed items.
* Queue Items can be monitored, prioritized, and processed asynchronously.
Why Other Options Are Incorrect?
* A (Allows multiple robots to process the same item simultaneously) #
* Incorrect. Each Queue Item is locked to one robot at a time to prevent duplication.
* B (Modify retry count after creation) #
* Incorrect. Retry count must be set during queue creation and cannot be changed later.
* C (Guarantees exclusive processing by a single robot) #
* Incorrect. Queues support multiple robots processing different items simultaneously, but not the same item.
References:
* UiPath Orchestrator Queues Guide
* UiPath Forum - Managing Queue Item Status