Hi,
I just noticed that the release notes for 4.23 says "Custom Questions & Contact record are now related and may be used as a RELATED LIST."
IAVA currently has custom code in Salesforce that pulls the Custom Questions from the C&P Data record's XML and uses the code to populate other fields on the Opportunity record. Below is a sample excerpt from the XML of a recent donation. The corresponding fields in Salesforce are then updated on the Contact and Opportunity objects.
So the question is, does the 4.23 update affect how the Custom Questions are posted to the XML of the C&P Data records? If so it will obviously disable the custom solution we have built, so we need to hold off on installing it until we figure out how to address that.
Thanks,
Sam
I just noticed that the release notes for 4.23 says "Custom Questions & Contact record are now related and may be used as a RELATED LIST."
IAVA currently has custom code in Salesforce that pulls the Custom Questions from the C&P Data record's XML and uses the code to populate other fields on the Opportunity record. Below is a sample excerpt from the XML of a recent donation. The corresponding fields in Salesforce are then updated on the Contact and Opportunity objects.
So the question is, does the 4.23 update affect how the Custom Questions are posted to the XML of the C&P Data records? If so it will obviously disable the custom solution we have built, so we need to hold off on installing it until we figure out how to address that.
Thanks,
Sam
<CustomFieldList>
<CustomField>
<FieldName>Contact.Veteran_Member__c</FieldName>
<FieldValue>False</FieldValue>
</CustomField>
<CustomField>
<FieldName>Opportunity.CampaignID</FieldName>
<FieldValue>701800000007e44</FieldValue>
</CustomField>
<CustomField>
<FieldName>Opportunity.Tracking_Code__c</FieldName>
<FieldValue>FoundDonPage</FieldValue>
</CustomField>
</CustomFieldList>
<CustomField>
<FieldName>Contact.Veteran_Member__c</FieldName>
<FieldValue>False</FieldValue>
</CustomField>
<CustomField>
<FieldName>Opportunity.CampaignID</FieldName>
<FieldValue>701800000007e44</FieldValue>
</CustomField>
<CustomField>
<FieldName>Opportunity.Tracking_Code__c</FieldName>
<FieldValue>FoundDonPage</FieldValue>
</CustomField>
</CustomFieldList>
Comment