When importing a .csv file, I want to access the record in RE AFTER the record to be updated has been identified but BEFORE the data from the .csv has been written into RE.
The function called Public OverridesSub BeforeConstituentSave seems to be after the data has been written into RE.
How can I do this?
As an example, If the RE Record has an attribute with a date greater than a preset date, I don't want IoM to overwrite that particular attribute in the import.
You will want to use the AfterConstituentOpen method. It is not by default shown in the profile. You can create it and a few others that are not defaults by typing out "Public Overrides". After that the editor should give you a list of all available methods.
Bobby Evans
When importing a .csv file, I want to access the record in RE AFTER the record to be updated has been identified but BEFORE the data from the .csv has been written into RE.
The function called Public OverridesSub BeforeConstituentSave seems to be after the data has been written into RE.
How can I do this?
As an example, If the RE Record has an attribute with a date greater than a preset date, I don't want IoM to overwrite that particular attribute in the import.
Thanks in advance for any help!