I don't see any way to do this, and I'm guessing the answer is "no" or "not easily" but I just thought I'd ask. In my case I have a fairly typical workflow where one user requests an action and another user approves it. The action should happen fairly quickly so I was wondering if there was a way to pop up like an "action completed" notification (or action did not succeed I suppose) via a snackbar or message modal or what have you, for the user who did the final approval.
I know they will get the notification in the user inbox but I thought it might be nice to have this also.
Solved! Go to Solution.
Views
Replies
Total Likes
Hi @eezo
As per my understanding you wanted to notify the approver whether the workflow is completed successfully or failed,
Also, you might be having some process step which does the job after approval. Is that OOTB Process step or custom process step?
1. If it is a custom process step then you can write piece code at the end which send email notification to the approver or initiator about the workflow status
2. Other option is enable OOTB workflow notification which send email success or failure email notification at the end of workflow execution.
hope this helps.
Dear @eezo
Considering your requirement, for sure it requires additional implementation & to get those messages one can get it via workflow data using
WorkItem workItem, WorkflowSession workflowSession
or prepare such custom responses using services.
Regards,
Santosh
Hi @eezo
As per my understanding you wanted to notify the approver whether the workflow is completed successfully or failed,
Also, you might be having some process step which does the job after approval. Is that OOTB Process step or custom process step?
1. If it is a custom process step then you can write piece code at the end which send email notification to the approver or initiator about the workflow status
2. Other option is enable OOTB workflow notification which send email success or failure email notification at the end of workflow execution.
hope this helps.
Hi,
This can be done by creating a banner which looks for notification every 5 minute and if there any for the user then it simply shows the banner.
1. Create a servlet which get the workflow which requires attention
2. Create a popup using javascript(Coarl API), inject at the top of the page with option to close(DnD) for certian duration.
Views
Likes
Replies