A flow that creates a record and then updates it does not clear the records previous state when updating causing BR to be called twice.DescriptionIn flow designer using a "Create Record" action to create a record and then within the same flow using an "Update Record" action to update that record may result in business rules being fired more times than expected.Steps to Reproduce 1. create a business rule on incident_task before insert or update with the condition state changees to Work in Progress. Check advanced and log a message.2. create a flow that is triggered when an incident is created with short_description = PRB14345433. add first action create task to the flow and set short_description to any value and set state to Work in Progress. (this should trigger the business rule)4. add second action update record and set priority to High. (this should not trigger the business rule but does erroneously)5. activate the flow6. create an incident with short_description PRB1434543.7. observe that the business rule is triggered twice (check system logs for two log messages)WorkaroundEither 1) Add a timer 1 second timer before the update action. Or 2) Add a lookup record action before the update action. Look up the record by sys_id from the create action result. Provide this result of the lookup action as the input to the update action.Related Problem: PRB1434543