SugarBPM triggers

We have successfully created a Sugar BPM process that executes when a new contact record is created in the SugarCRM Enterprise front end.  However, we have a daily load process created by a third party vendor that creates new contact records in SugarCRM each day.  It's a PHP script which queries an internal system for new contact records and creates a corresponding record in SugarCRM through SQL insert statements.  When contact records are created through the PHP process, our Sugar BPM process does not execute.  Is there something we can do to force our Sugar BPM process to also be triggered through when contact records are created through our daily PHP load?

Parents
  • Whenever a record is created directaly thru sql query, no process (LogicHook, BPM) is triggered. That said, you need to turn this sql based PHP script into a Bean based PHP script, that means, instead of inserting data into database you need to instantiate Contact's objects, populate them and then save.

    André Lopes
    Lampada Global
    Skype: andre.lampada
  • Thank you for the quick response!  I will inform my colleagues.

Reply Children
No Data