Workflow event
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2025 08:20 AM
So When workflow event is trigger? is there any table where its history is stored like this this event is triggered and this time.. I just want an wait for WF event if flow desginer.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2025 08:46 AM
There is some storage of the information on the wf_executing record in the 'registered events' column. However I'd be extremely hesitant to build anything in this way and would question whether a change of approach is required.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2025 08:48 AM
actually i am converting workflow logic to flow desginer so do you have any alternative solution for the wait for wf event activity? so i can done it in flow desginer.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2025 09:08 AM
Workflow to Flow is not an exact migration. Workflows are monolithic. If you're needing to wait for something to occur, you should likely be breaking up your flow into multiple flows with different triggers.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2025 08:49 AM - edited 01-02-2025 08:52 AM
Hi @indrajeetma ,
Platform events are entered into the Event Registration [sysevent_register] table and are available for platform processes to use. Workflow events are triggered exclusively for the workflow engine and are used only to direct the work of executing workflow contexts. When an event is registered in a workflow, it is attached to a currently executing activity in the registered_events column of the Workflow Executing Activity [wf_executing] table.
Check for a 'Wait for event" or "Wait for condition", in flow.
If my response helped, please mark it as the accepted solution ✅ and give a thumbs up👍.
Thanks,
Anand