
Announcements
The error you're encountering occurs because the field Custom_ReadyforInvoicing_TXT is either null or does not exist in the work item you are trying to update. Power Automate cannot evaluate a null value or a non-existent field as part of its input.
Here’s how you can resolve and troubleshoot the issue:
Check the Work Item in Azure DevOps:
Custom_ReadyforInvoicing_TXT exists and is correctly spelled.Use "Get Work Item" to Inspect the Fields:
Custom_ReadyforInvoicing_TXT exists.If the field exists but may not always have a value, use a condition or a fallback value to handle null scenarios.
Condition Before Updating:
null:
Use a Default Value for the Field:
'DefaultValue' with a string like 'Yes'.Ensure the Field Reference Matches the API Format:
fields/Custom.ReadyforInvoicing_TXT.Manually Add the Field Key and Value:
Custom.ReadyforInvoicing_TXT (or the correct reference format).Yes.If the field doesn't exist in certain work item types, handle it conditionally:
Check Work Item Type:
Log Missing Fields:
coalesce or a condition to handle null values gracefully.Let me know if you need further assistance or help debugging your flow!