Question

Notify long run process end

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 0

Like

3 comments

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

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();

 

Hello Stefano,

 

Thank you for letting us know.

Have a nice weekend!

 

Best regards,

Roman

Show all comments