- Mark as New
- Bookmark
- Subscribe
- Permalink
- Email to a Friend
- Report Inappropriate Content
Problem - If you are getting the below error when sending the Quote to Zuora-
If you found my answer helpful, please give me a kudo ↑
Help others find answers faster by accepting my post as a solution √
Solved! Go to Solution.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Email to a Friend
- Report Inappropriate Content
Solution - I added the debug logs to figure out the reason for this error and in this specific case the error was thrown right after it was quering the contacts data from Zuora. Query which was getting executed and was seen in the logs is as below-
SELECT FirstName, LastName, WorkEmail, WorkPhone, Address1,Address2, County, City, State, Country, PostalCode FROM Contact WHERE AccountId = '2c92c0f9695dd20601695f9bebe90707'
When I looked at this Account in Zuora and then the Sold To contact, I see that Address1 was NULL when Address2 had some value in it which was the reason for "Argument cannot be null" error was thrown. When the value from the Address2 was deleted since there was no address for this contact yet, the issue was resolved.
If you found my answer helpful, please give me a kudo ↑
Help others find answers faster by accepting my post as a solution √
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Email to a Friend
- Report Inappropriate Content
Solution - I added the debug logs to figure out the reason for this error and in this specific case the error was thrown right after it was quering the contacts data from Zuora. Query which was getting executed and was seen in the logs is as below-
SELECT FirstName, LastName, WorkEmail, WorkPhone, Address1,Address2, County, City, State, Country, PostalCode FROM Contact WHERE AccountId = '2c92c0f9695dd20601695f9bebe90707'
When I looked at this Account in Zuora and then the Sold To contact, I see that Address1 was NULL when Address2 had some value in it which was the reason for "Argument cannot be null" error was thrown. When the value from the Address2 was deleted since there was no address for this contact yet, the issue was resolved.
If you found my answer helpful, please give me a kudo ↑
Help others find answers faster by accepting my post as a solution √