You need to sign in to do that
Don't have an account?

How to make fields from lookup objects which are mapped to a custom object will not get updated when there is an update for the lookup object?
Hi Guys,
Have exposed account object's 3 fields to a custom object with the help of lookup relationship of account with the custom object. I just want to ensure any changes for these 3 fields in the Account object should not overwrite the values initial values in custom object when the record created for the first time.
How can we achieve this?
Have exposed account object's 3 fields to a custom object with the help of lookup relationship of account with the custom object. I just want to ensure any changes for these 3 fields in the Account object should not overwrite the values initial values in custom object when the record created for the first time.
How can we achieve this?
Did you make formula fields at the custom object, or did you use a workflow / trigger to update fields at the custom object?
If you are using a trigger, you can copy the values at an "before insert" event.
You need to manually update the fields (new fields that are not formula) when you create an instance of the object.
You can do that, as I mentioned before with workflows or triggers.
This is true for both triggers and workflows.
You cannot change values of formula fields, as they update automatically (as soon as the value they reference is changed).
Do you need a trigger example?