function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Anuj ShahAnuj Shah 

Getting Error in Lightening process Builder while submitting challenge in trailhead

Hello Guys,
Here i got this error can you tell me what shold i do and what does it mean.
"There was an unexpected error in your org which is preventing this assessment check from completing: System.DmlException: Update failed. First exception on row 0 with id 00128000003d6pbAAA; first error: FIELD_CUSTOM_VALIDATION_EXCEPTION, Billing postal code and shipping postal code must be same.: "

here are some scrren shots that will give more information
User-added image

User-added image
 
Best Answer chosen by Anuj Shah
shahnarendra4ushahnarendra4u
Hi Anuj, 

Can you check your validation rules on Account or Contact, As Amit said, i see from exercise from Formula and Vallidation Rules->Validation Rules, validation rule was crearted, which you need to deactivate, then your problem will go off. 

Thanks 
Narendra Shah

All Answers

Amit Chaudhary 8Amit Chaudhary 8
I hope you also created one validation rule Validation rules for Trailhead Quiz. Please deactivate that and try

AND( NOT(ISBLANK(AccountId)), MailingPostalCode != Account.ShippingPostalCode )

Please mark as solution if this will help you.

Thanks
Amit Chaudhary
shahnarendra4ushahnarendra4u
Hi Anuj, 

Can you check your validation rules on Account or Contact, As Amit said, i see from exercise from Formula and Vallidation Rules->Validation Rules, validation rule was crearted, which you need to deactivate, then your problem will go off. 

Thanks 
Narendra Shah
This was selected as the best answer
Anuj ShahAnuj Shah
Thanks Amit Chaudhary  and Narendra Shah. Both of your suggestion work well.