Exam UiARD All QuestionsBrowse all questions from this exam
Question 30

Where in the Robotic Enterprise (RE) Framework template project is the SetTransactionStatus.xaml invoked?

    Correct Answer: C

    In the Robotic Enterprise (RE) Framework, the correct placement for invoking the SetTransactionStatus.xaml is in the Finally section of the Try Catch activity in the Process Transaction state. This ensures that the transaction status is set regardless of whether the transaction succeeds, fails with a business exception, or fails with a system exception.

Discussion
robert_lovaszOption: B

SetTransactionStatus is invoked in multiple places 1. Process state -> try block in the try-catch (setting it to Successful->answer B) 2. Process state -> catch Business Exception block in the try-catch (setting it to failed/no tretry) 3. Process state -> catch System Exception block in the try-catch (setting it to failed, can be retried, depending on other stuff)

IngvarnOption: B

Try section of Process by Default

MirjalolOption: B

Answer is B!

LarcAi_TrainingOption: B

Correct answer is B

soulebiOption: B

you might see different answers online about this but just to clarify things in 2021.10 update the SetTransactionStatus is changed from finally block to try block. The UiArd certification version is 2021.10 hence the answer is the try block. B

Engineer24Option: B

Selected Answer: B Now if you go to create a new RoboticEntrepriseFramework in the Process Transaction State will be a Try Catch Activity where will be invoked "Invoke SetTransactionStatus" in the Try section.