A developer wants to use the default Robotic Enterprise (RE) Framework without using Orchestrator. What is the minimum requirement to ensure that the project does not access Orchestrator queues?
A developer wants to use the default Robotic Enterprise (RE) Framework without using Orchestrator. What is the minimum requirement to ensure that the project does not access Orchestrator queues?
To ensure that the project does not access Orchestrator queues, you would need to remove any specific references and activities related to Orchestrator. Removing the OrchestratorQueueName setting from Config.xlsx ensures there is no direct configuration pointing to an Orchestrator queue. Additionally, removing the three SetTransactionStatus activities from the SetTransactionStatus workflow, which are responsible for updating the status of items in an Orchestrator queue, will prevent the project from attempting to interact with Orchestrator at all.
C seems to be correct. The ReFramework without Queues checklist PDF in the academy training states: Delete the Get transaction item activity (of type UiPath.Core.Activities.GetQueueItem); also, it says in the annotation on the Get transaction activity: "If queues are not used in this process, replace this activity with the appropriated logic to retrieve transaction items."
Locate the Invoke SetTransactionStatus (Success) activity and open the Arguments list; locate the entry for the in_TransactionItem argument and change the value (not the data type!) from TransactionItem to Nothing; Locate the Invoke SetTransactionStatus (BRE) activity and do the same change as the previous one; Locate the Invoke SetTransactionStatus (SE) activity and do the same change as the previous one.
Actually, C seems to be correct. The ReFramework without Queues checklist PDF in the academy training states: Delete the Get transaction item activity (of type UiPath.Core.Activities.GetQueueItem); also, it says in the annotation on the Get transaction activity: "If queues are not used in this process, replace this activity with the appropriated logic to retrieve transaction items."
D is enough as minimum requirement
Based on the question "what is the minimum requirments"
Correct answer is C
A, B - remove get transaction data state - not required. disable getTransactiondata.xaml sequence C - Activity not present in the main file.. Option D seems to be correct C- n
Can be also D here..