Alpha related doubt

i successfully created underwriter page and showed data properly.now when underwriter click approve how can i assign the task to reviewer? do i need to use case status? then how?
@Sam @Simphiwe @Eldho

1 Like

If you successfully complete the underwriter task, the case will disappear from My Tasks.
You can then find the same case in Group Tasks. This time, when you open the case, it should display the Reviewer page (if you have created one), allowing you to perform the reviewer operations from there.

1 Like

how i can make the task completed when clicking approve button? @Sam

1 Like

Hello @navaneethck_10 ,
You can add a trigger to the Underwriter Approval button.
Inside that trigger, use a Case Service where you:

  1. Select the Case Decision.
  2. Use cid from the case instance, taskId from the task instance, and metadata.taskOwner as the userName from the task instance.
  3. Pass a decision input like underwriting_approved: true.

This will ensure that the case is updated correctly when the underwriter approves it.

2 Likes

Hey @navaneethck_10 , if you have access to bpm, check the decision configurations in human task node, you will have to pass same params from decision API in alpha along with taskId and taskOwner.

1 Like