I am trying to add the a currency lookup column to the country object, as it will be very helpful a specific use case we have to be able to know which countries use which currency. I have already created a new package with a replacing object to add the column, but now whenever I try to import the list of countries I get the following error:
The same error comes up when trying to bind the data via configuration as shown below:
You can see behind this message that it correctly adds the column from the replacing object I created, but it won't allow me to save it.
Any help in understanding what I am doing wrong would be very helpful.
It turns out the problem was that I did not publish the new object before compilation. After publishing and compiling once more the lookup works correctly with the new column!
It turns out the problem was that I did not publish the new object before compilation. After publishing and compiling once more the lookup works correctly with the new column!
We have a few extra columns we no longer need on some of our objects, those are custom columns we added a long ago but now we have those objects in a read-only package and when we need to modify them we create a replacing object in an editable package.
How can I delete the extra inherited column in the replacing object?