開発者は、いくつかの問題が発生している Blue Prism Automation を再検討しています。最も重要なのは、基盤となるアプリケーションの実行が不安定な場合にプロセスが不必要に終了することです。 開発当時、チームは Blue Prism トレーニングに参加しておらず、利用可能なプロセス テンプレートを認識していませんでした。課題に直接関係する Blue Prism プロセス テンプレートを使用する重要性について、開発者がより広範なチームに伝えるべき 2 つのステートメントはどれですか。 '5
正解:A,C
Blue Prism Process Templates are designed to handle common challenges and ensure robust, reliable automation. The following points directly address the issues the team is facing: * Contains logic loops which will recover from an Exception, navigate back to a known point in the * application, and try to perform the function again (Option A): This ensures that the process can handle transient errors by retrying the operation, thereby improving resilience and reducing unnecessary termination. * Any error that occurs within a page that is not handled by retrying, will be caught and bubbled up to the Main Page and will go to the Mark Item as Exception' page if not resolved (Option C): This ensures that unhandled errors are appropriately managed, preventing the process from terminating unexpectedly and allowing for proper exception handling. Other options, while useful, do not directly address the described challenges: * Environment Variables (Option B): These are useful for configuration but do not address error handling directly. * Session Variables (Option D): These allow for stopping processes but are not related to error recovery. * Centralized management of the Work Queue (Option E): This helps with load balancing but does not directly relate to error handling or process recovery. ReferencesRefer to Blue Prism's documentation on Process Templates, highlighting their built-in error handling and retry mechanisms.