How can I notify the end of a long run process to the user who launch it ?
Is it possible to configure the same notification sended by the system when the file import process ends ?
I tried to use "Add record" to notification entity but it doesn't work.
Like
3 comments
23:36 Jan 07, 2021
Hello Stefano,
Hope you're doing well.
If I understood your business task correctly, the next explanation should help you in this case:
https://community.creatio.com/questions/send-user-notification-notifica…
Best regards,
Roman
17:21 Jan 08, 2021
Thank you Roman for your answer.
I solved my problem using a script task with the following code inside
string processName = "process name"; string message = "bla bla"; var remindEntity = RemindingServerUtilities.GetRemindingByProcess(UserConnection, processName, message); remindEntity.Save();
Show all comments