Some further testing has shown, what is throwing the error is anytime I attempt to reference a Virtual Field by name, for example: Import.Fields.GetByName("Nickname").Value. Everything works if I change that to Import.Fields.GetByExcelName("DA").Value
Jonathan
I run the profile through list management, not sure if that will have an affect on it. I've noticed there seems to be some subtle differences between running them through List Management. For example, it doesn't appear to promote Spouses to full constituents, even though it does running a regular Import.
Here's what a line in the code looked like before:
Import.Fields.GetByName("Rel First Name").Value = import.Fields.GetByName("FirstName").Value
After:
Import.Fields.GetByExcelName("CN").Value = import.Fields.GetByName("FirstName").Value
Jonathan Meester
Hey Guys,
I just installed 3.2.0.0 and I'm running one of my profiles that has some code in it. All of my code is within AfterDictionaries. Every row of the file is producing the following error message:
The code hasn't changed since running it in 3.1.0.8.
I added a MsgBox to see if it was hitting my code, since I don't have a Line 0 and that isn't working either. Also, typically when I type in Public Overrides intellisense would typically help autocomplete the Sub AfterDictionaries, however Sub AfterDictionaries is no longer in the list.
Thanks,
Jonathan