Modify field onloading event

Hi all
I have a very peculiar question. Is it possible to modify a field (IsCar) in Person during the event OnLoading? I mean, I know it is, but I would like to:
1. Force saving it even if there could be errors in saving other field. For example, if the DefaultEmailAddress is missing and is required, is still want IsCar saved, even if the overall object Person wouldn’t be saved
2. I want that when a user load that person, the modified field is shown with its “new” value with no mark of modification shown.
Thanks in advance
a

  • Hi,

    I don't think this can be achieved the way you describe it. Only an entire change set can be saved -- there is no way to save "partial changes" because it would make validation very complex.

    If you want to have IsCar set before loading, why not jus set IsCar on all the Person objects where you want to set it, using SQL or a script?

    Hope this helps,
    Hanno