Creating an event to trigger flow is not workingIssue Flow didn't get trigger if we create the event from background scripts using eventQueue API. Steps to Reproduce: Create a flow on sysevent table with a condition on event name with "Test" which should trigger the flow. created the event using eventQueue API but flow didn't trigger, if we use glide record to create the event from backgroud script it is triggering the flow. Working one : var gr = new GlideRecord("sysevent");gr.initialize();gr.name = "Test";gr.parm1 ="Random";gr.parm2 ="testing";gr.insert(); Non working one: gs.eventQueue("Test", null , "Random", "testing");Resolutiongs.eventQueue uses setWorkflow(false) to create events . In Paris behavior is changed, this will not run flow engine if setworkflow(false) is used.If you want to achieve old behavior and trigger the flow using eventQueue API, create a new property "trigger_engine.ignore.set_workflow" and set it as true.