現在 Process Studio でテストされている Blue Prism プロセスから抽出された次の図を調べてください。 「顧客アカウントへのアクセス*」サブページにはブレークポイントは含まれていませんが、ページにはエラーが含まれています。 プロセスのデバッグ時にステップ オーバー (F10) を選択するとどうなりますか?
正解:C
* Understanding the Diagram and Process Flow: * The process includes a sub-page called 'Access Customer Account', which contains an error. * When debugging, choosing to "Step Over" (F10) will execute the sub-page without stepping into each individual stage within it. * Exception Handling in Blue Prism: * If an error occurs within the 'Access Customer Account' sub-page, the process will throw an exception. * The process will then move to the appropriate Recover stage to handle the exception. * Recover Stage Focus: * Option A: Incorrect. Focus will not move directly to the stage containing the error within the sub-page. * Option B: Incorrect. The process does not move to the internal recover stage of the sub-page if there are no breakpoints. * Option C: Correct. The process will move to the 'Recover1' stage after the exception is thrown, as it is the appropriate recover stage for handling the error. * Option D: Incorrect. Focus will not move to the 'Get Customer Details' stage, as the exception handling logic will direct it to 'Recover1'. * Conclusion: * The correct answer is C. The process will work all stages in the 'Access Customer Account' page until the exception is thrown, and then focus will move to the 'Recover1' stage. References: * Blue Prism Developer Documentation: Exception Handling and Recovery Stages * Blue Prism Training Material on Debugging and Exception Management