Skip to main content
All CollectionsSalto for SalesforceTroubleshooting
Error When Modifying a Field in Task or Event
Error When Modifying a Field in Task or Event

Fix Task/Event Field Modification Errors in Salesforce

Dan Avigdor avatar
Written by Dan Avigdor
Updated over a week ago

What’s the Issue?

You may encounter the following error during a deployment:

Error Message:

"Modifying a field of Task or Event is not allowed"

Detailed Message:

"Modifying the field \`${field.name}\` of the \`${apiNameSync(field.parent)}\` object directly is forbidden. Instead, modify the corresponding field in the Activity object."

What Triggers This Error?

This error occurs when an attempt is made to modify a field directly on the Task or Event objects in Salesforce. Salesforce enforces specific rules for these objects, requiring modifications to be made through the Activity object instead of directly on Task or Event.

How Can I Solve This?

To resolve this error, you'll need to make your modifications in the correct location within Salesforce. Here’s how you can do that:

  1. Modify the Corresponding Field in the Activity Object:

    1. - Navigate to the **Activity** object in Salesforce.

    2. - Locate the field that corresponds to the one you were attempting to modify on the Task or Event object.

    3. - Make the necessary changes to the field within the Activity object.

  2. Update Your Salto Configuration:

    1. - Once you’ve made the changes in Salesforce, ensure that your Salto configurations are updated accordingly.

    2. - Perform a new fetch in Salto to capture the changes made to the Activity object.

    3. - Review your deployment plan to ensure that it reflects the correct fields and objects.

  3. Proceed with Deployment:

    1. - After making the necessary modifications in the Activity object and updating your Salto configuration, proceed with the deployment.

    2. - The changes should now be applied successfully without triggering the error.

Did this answer your question?