function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Ishan Singh 1Ishan Singh 1 

In field: name - no WorkflowFieldUpdate named Lead.Questionnaire found

Getting this Error when beploying workflow using Inbound Change Set
AbhishekAbhishek (Salesforce Developers) 
You should clone the changeset in Sandbox and then remove the field update from it or rename the field update to uniquee one and then add to it.

Then,upload the changeset to product and then you  would be able to deploy the changeset.

If this helps,please mark it as best answer to help others.
Satheesh BojanapuSatheesh Bojanapu
Hi,

I faced similar issue for Case object entitlement process for below error:
Error  dyncrm entitlement process_v2   In field: name - no WorkflowFieldUpdate named Case.Case.DF_Update_Is_Alert found (35:22)

Resolution Action:
Navigated to the Entitlment Process definition, then removed object name from the actions. 
eg, Wrong One:
        <actions>
                <name>Case.DF_Update_Is_Alert</name>
                <type>FieldUpdate</type>
            </actions>
Corrected One:
           <actions>
                <name>DF_Update_Is_Alert</name>
                <type>FieldUpdate</type>
            </actions>
Hope this helps :)

Regards,
Satheesh.