-
1. Re: How to show notification message in Match Screen in IDD
Sathiesh M Feb 10, 2021 12:35 AM (in response to Shirshendu Deb Roy)1 of 1 people found this helpfulOn what operation, you wanna show message?
I dont think we have an Open handler for Match screen, so it has to be on the Merge button event.
-
2. Re: How to show notification message in Match Screen in IDD
Shirshendu Deb Roy Feb 10, 2021 12:48 AM (in response to Sathiesh M)The notification message is to be shown based on some custom code operation that I am invoking (this involves database procedure call). I am able to show the notification message on "Data" screen (using the afterOpen method of IOpenOperationPlugin interface), however, the message needs to be shown in the "Match" screen.
***********************************************
Use Case:
When a data steward opens a merge task from tasks list in IDD, it redirects to match screen and show the relevant details like below.
Now, the users also want to know if there are some other type of tasks (update, custom, final review etc.) available along with this merge task so that they can take correct decision based on the situation.
**********************************************
The implementation that I did, requires users to navigate to Data tab and see the notification messages of all the tasks associated with this record.
Below is the example.
(For the time being, I am showing only one, however, I can show other type of tasks as well if I wanted to)
Now, I don't want users to navigate to Data tab every time they open one merge tasks, rather if I could show this notification message directly on the match screen, then it would be a lot easier for them.
Let me know if you need any other details.
-
3. Re: How to show notification message in Match Screen in IDD
kunal pandit Feb 22, 2021 11:34 AM (in response to Shirshendu Deb Roy)Shirshendu,
Not sure if you considered using the Task Comments to provide additional information for the records? Task comments can be generated programmatically as well in a customized workflows and the information can be reviewed by the Task owner before taking a decision on the task.
Shirshendu
-
4. Re: How to show notification message in Match Screen in IDD
Shirshendu Deb Roy Feb 22, 2021 9:45 PM (in response to kunal pandit)Hi Kunal, Could you please elaborate about the task comments? Is it something that can be shown in the match screen?
-
5. Re: How to show notification message in Match Screen in IDD
kunal pandit Feb 22, 2021 9:55 PM (in response to Shirshendu Deb Roy)If you are opening matched records in Task screen then you can customize what comments are shown as part of the Task metadata.
This is something that is customizable in the ActiveVOS workflows if you are using the same.
If you are using the same And have an ActiveVOS designer license I can provide more details on how to Customize the comments.
Thanks
Kunal Pandit
-
6. Re: How to show notification message in Match Screen in IDD
Shirshendu Deb Roy Feb 22, 2021 10:05 PM (in response to kunal pandit)That's great. Yes, I am using AVOS BPM engine and have access to AVOS Designer license as well. You can post some details about it, it would be a great help.
-
7. Re: How to show notification message in Match Screen in IDD
kunal pandit Feb 24, 2021 4:12 PM (in response to Shirshendu Deb Roy)Shirshendu,
Can you please elaborate more on your use case as to what you need to add to the Task Comments. Basically. Task comments is just a variable that can be modified as part of the workflow itself in the ProcessTaskRequest for the Match/Review HumanTask.
This will need some development effort on your end.
For basic designer setup - Demo: ActiveVOS Designer - YouTube
you will need to modify this modify variable -
$ProcessTaskRequest/mdmavxsd:INFATask/mdmavxsd:taskData/mdmavxsd:comments/text()
for e.g. the variable in the SetupFinalReview step, just before the FinalReview task.
-
8. Re: How to show notification message in Match Screen in IDD
Shirshendu Deb Roy Feb 24, 2021 8:26 PM (in response to kunal pandit)Hi Kunal, I have already explained the use case above in one of my replies. If you could kindly check it, you will get what I want to achieve.
Brief Overview: Whatever notification we generate (doesn't matter if we are generating from AVOS workflow or from user exit), it has to be shown on the match screen of IDD. Currently, I am able to achieve it by showing the notification on data screen. However, this requires the user to navigate to the the data screen from match screen every time. Is this something achievable from AVOS designer task comments?