Exam PEGAPCSSA80V1_2019 All QuestionsBrowse all questions from this exam
Question 36

A health plan application includes a process for surgical procedure requests. Currently, there is an evaluation subprocess in which a physician reviews the diagnosis and enters the recommended procedure and its urgency. The request then advances to a medical director who analyzes the feedback and approves the appropriate procedure. The health care organization has created a new requirement, which states that three physicians can perform the evaluation independently.

Only two evaluations are necessary to advance the case to the medical director.

In order to allow the three physicians to review the orders in parallel, how would you configure the process?

    Correct Answer: B

    To enable three physicians to review the orders in parallel and require only two evaluations to advance the case to the medical director, the most appropriate configuration is to add a Split For Each shape, add a list of physicians, and call the evaluation process. Split For Each allows the process to iterate through the list of physicians and perform evaluations independently. This configuration facilitates parallel processing and ensures that only the evaluation process is called for each physician. Additionally, you can configure the join condition to require only two evaluations before advancing to the medical director.

Discussion
saharhOption: B

Answer is B ? A talking about running the whole process instead of the evaluation process. Furthermore, you need to run evaluation process with each physician , hence you would use 'Split For Each'.

Niclas1234Option: B

I agree answer is B. Split for each would iterate through the list of physicians and then you could add condition to join the main process whenever you have 2 evaluations