Hi Creatio Community,
I need to trigger a business process (BP) whenever a new record is inserted into the Webhook object through a webhook.
I’m using the Entity Event Layer and listening to the OnInserted
event for the Webhook
object. How can I trigger the BP from the entity event code when a new record is added?
I’ve tried using ProcessExecutor
and ProcessManager
, but encountered access issues. Any help or example code would be greatly appreciated!
Thanks!
Like
Why not just use a signal of Record added in Webhook for the process?
Ryan
If all you need to do is start a process, you can just create a process with a signal start on Record Added in the Webhook table. See https://academy.creatio.com/docs/8.x/no-code-customization/bpm-tools/process-elements-reference/events/signal-start-event
Ryan