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
Nathan BruhnNathan Bruhn 

Process Automation Specialist Superbadge 'Challenge Not yet complete'

I am seeing the following error when attempting to check the first challenge in the Process Automation Specialist Superbadge:

Challenge Not yet complete... here's what's wrong: 
There was an unexpected error while verifying this challenge. Usually this is due to some pre-existing configuration or code in the challenge Org. We recommend using a new Developer Edition (DE) to check this challenge. If you're using a new DE and seeing this error, please post to the developer forums and reference error id: SJNXHSJT

I am using a brand new DE org. Has anyone seen something similar for this superbadge?
Elie.RodrigueElie.Rodrigue
Also having the same issue with different error reference ide. Using brand new DE.User-added image
Elie.RodrigueElie.Rodrigue
I just figured it out. You need not to add NYY to your validation rule and make sure that the validation rule output the error on the proper field, not the top of the page.
Nathan BruhnNathan Bruhn
Hi Elie, what do you mean 'You need not to add NYY to your validation rule'?
Suman KunduSuman Kundu
Hi Nathan,
I have created two validation rules in Lead object
1) Country Validation:
AND(Country != '', 
Country != 'US', 
Country != 'USA', 
Country != 'United States' 
)
Error Location: Country Field 
2) State Validation
OR(LEN( State )!=2, 
NOT(CONTAINS("AL:AK:AS:AZ:AR:CA:CO:CT:DE:DC:" & 
"FL:GA:GU:HI:ID:IL:IN:IA:KS:KY:" & 
"LA:ME:MD:MH:MA:MI:FM:MN:MS:MO:" & 
"MT:NE:NV:NH:NJ:NM:NY:NC:ND:MP:" & 
"OH:OK:OR:PW:PA:PR:RI:SC:SD:TN:" & 
"TX:UT:VT:VA:VI:WA:WV:WI:WY", State)))
Error Location: State Field

Also I have created two queues and lead assignment rules as described in the requirement.
I hope it will resolve the issue.
Graham ReidGraham Reid
I was getting a failure until I changed error location from 'top of page' to state field.
Tony White (BNE)Tony White (BNE)
Hint: Using the developer console you can see what data is being used, so you can better understand what they are sending to test.