10 Flow Contexts are attaching to a Request ItemIssue When ordering a Catalog Item which uses a Flow you are finding that there is 10 Flow Contexts which attach and execute on the Request Item. You can confirm this by performing the following: Go to Process Automation > Flow Designer > ExecutionsAdd a Filter for Source Record = <SYS_ID OF REQUEST ITEM>See that there is 10 of the Same Flow CauseThis happens when the Flow Trigger is set to 'Run flow in foreground' and is then using an 'Update Record' Action as the First Action of the Flow and it is targeting the Request Item itself. Since the 'Update Record' Action will process immediately after the Trigger which causes the "Start FlowDesigner Flow" Business Rule to trigger again and attach a new Flow Context.ResolutionTo resolve this issue you will need to add a Short Timer of 1 or 2 Seconds which should be placed before the 'Update Record' Action. This will prevent the Conditions for the "Start FlowDesigner Flow" Business Rule from being met when the Request Item is updated.