Hello! Im having an error when creating a Recurring Donation in NPSP, the error is the following
"npsp.TDTM_RecurringDonation: execution of AfterInsert
caused by: System.QueryException: No such column 'Nombre_de_la_donacion__c' on entity 'npe03__Recurring_Donation__c'. If you are attempting to use a custom field, be sure to append the '__c' after the custom field name. Please reference your WSDL or the describe call for the appropriate names.
(System Code)"
I assume that there is a query going on somewhere that is calling fields that dont exist, where can i find this query?
Thanks on advance!!
As of my knowledge there's an issue with a query in the npsp.TDTM_RecurringDonation class or trigger. This error message indicates that there's an attempt to reference a field called 'Nombre_de_la_donacion__c' on the npe03__Recurring_Donation__c object, but that field doesn't exist or isn't spelled correctly.
And if it didn't work then in developer console we have shortKey ctrl+Shift+h. After pressing it in the search area you can write keyword Like FROM npe03__Recurring_Donation__c. So based on the keyword you can find the query written on the object npe03__Recurring_Donation__c in the apex code.
Hope this would be helpful.