Getting the “Invalid Cross Reference Id” Salesforce error and unsure what it means?
If so, that error means that the Salesforce Id used in a lookup or master-detail relationship field is not valid.
Causes
1) Wrong Object Type – The relationship field is being set to the Salesforce Id of the wrong object.
For example, if field A is a lookup to the Account object, an opportunity Id can’t be used in this field.
2) Record Deleted – The record no longer exists. This can happen if someone deleted the record while a user
or the system is inserting or updating records. It can also happen during a request when the record is initially inserted
but then rolled back so the code still has a reference to the record with an id in memory but the record does not exist in the database.
3) Relationship Field Pointing To Wrong Object – This happens less frequently but is still a cause of this error.
Sometimes, there are multiple objects in the system with the same name and a user chose the wrong object to have the lookup or master-detail point to.
This happens because Salesforce will show the same object name without any further detail in the object list when defining the field
so it’s not immediately clear which to choose.
To choose the correct object when there are multiple with the same name, inspect the drop down list in the browser
and view the values for the select list items. Identify the correct one to use and then choose it from the drop down list.
No comments:
Post a Comment