I have a flow that works fine in test mode
but has the following error when executed from dynamics. Any suggestionsé
if you contact support, you may be asked to provide the following details:

I have a flow that works fine in test mode
but has the following error when executed from dynamics. Any suggestionsé
if you contact support, you may be asked to provide the following details:
Hi @charityman,
Do you mean that your flow failed when you executed from your model-driven?
I have a test and the situation is confirmed on my side that whenever you reference a form field in your flow, the scheme of the trigger action changes this field to “required” (you can verify it by “peeking code” in the trigger action), even if this field is not required in the Dataverse table. And if I don’t supply a value for this field in runtime, I get this error.
As a workaround, please do not reference the fields from the triggerbody action in your flow, but instead, add a “get item” action as the first action in the flow (right after the trigger), and get the item with the same ID as the triggered item. Then, you could reference whatever fields you need from the “get item” action, yet the trigger action scheme do not mark any field as required, and the error disappears.
Hope this could help you at some degree.