UiARD Exam QuestionsBrowse all questions from this exam

UiARD Exam - Question 30


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

Show Answer
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

6 comments
Sign in to comment
robert_lovaszOption: B
Jul 26, 2024

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)

Engineer24
Apr 11, 2024

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.

soulebi
May 2, 2024

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

LarcAi_Training
May 23, 2024

Correct answer is B

MirjalolOption: B
Jul 17, 2024

Answer is B!

IngvarnOption: B
Nov 6, 2024

Try section of Process by Default