HOW TO SEND Workflow WHEN Email Expected Closed Date Past 1 Day

This request has come up again. I am on the latest version of on premise. Can anyone help?

 

I am trying to create a workflow and/or (business process author) for new and updated opps. where I need to send an email if the opportunity expected close date is past 1 day.

SO IF TODAY > opportunity expected close date SEND EMAIL.

Small issue; how do I handle if the user changes the original expected close date to another value?

 

Can this be done?

 

Thanks

Does anyone have a possible solution for this, it does not have to be with the new BPM. I can also implement with the old workflow but as long as there is a solution.

Thanks

Parents Reply
  • Hi Vincent Amari,

    Yes!

    Enterprise has both SugarBPM and Advanced Reports. Advanced Reports is a user interface for direct database access, making reporting on any and all data in the instance possible with schema familiarity and a basic understanding of MySQL.

    This custom query will list the number of rows in the pmse_bpm_flow table written by each Process Definition in descending order:

    SELECT COUNT(a.id) Count, b.name "Process Definition Name", b.prj_id "Process Definition ID" FROM pmse_bpm_flow a JOIN pmse_bpmn_process b ON a.pro_id = b.id GROUP BY b.prj_id ORDER BY Count DESC;

    I hope this helps!

Children