You need to sign in to do that
Don't have an account?
Trailhead Challenge error id: SOLSGVKY
I keep getting the following error however my button meets all of the requirements and works.
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: SOLSGVKY

- To pass this challenge, create a custom button which opens a link to 'http://google.com/#q={CONTACTNAME}' - where {CONTACTNAME} is the current contact's name. Then add this button to the default 'Contact Layout'.
- The custom button must be named 'Google Link'.
- The custom button must be added to the 'Contact Layout' page layout.
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: SOLSGVKY
Sandeep Bhanot
Salesforce.com
PS. Is there any way to have Community Profiles Merged? If so, what historical information is/isn't inherited from the merged Profile to the Surviving Profile?
Trailhead allows you to use a different DE for your "profile" vs your "working environment." When you first log in, you are choosing your profile, however you can then connect any DE you want to Trailhead to check your work and complete the challenges. So if you find you need to move to a new DE to complete a challenge for whatever reason, there's no need to abandon your old profile. All the completed modules will be associated with your profile org
Sandeep
I still face the same isssue! Please see below;
Im not sure if the fix is already in place but i still face the issue, please suggest!
Thanks,
Balaji
I refreshed the page multiple times, but still it shows, when i click on using sobjects challenge link, it lands me on challenge page which says it is 100%.,
Thanks,
Balaji
Aplogies again for all the challenges in completing this challenge (sorry, I couldn't resist :) ).
Thanks
Sandeep Bhanot
Salesforce.com
I keep getting the following error:
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: CZSVKZJW
facing the same issue. created the custom button pointing to google search page with the current contact name dynamically populating. all working but the validation still fails. created several dev accounts but the issue still exists.
Eu estou enfrentando o mesmo problema também ... :(
Challenge Not yet complete... here's what's wrong:
The 'Google Info' custom button was not found. Make sure that it is a Detail Page Button (not link) and that its added to the page layout. If you are still having problems, ensure that you are NOT using Record types for the Contact object. This challenge will not work with Record types so you will need to sign up for a new DE org and use that instead for this module.
I am facing Too many SOQL queries: 101 error for following code but as per governor limit my SOQL Query is outside the for loop still getting this error and also showing following process builder error with this
( 09:59:49:020 EXCEPTION_THROWN [184]|System.DmlException: Upsert failed. First exception on row 0; first error: CANNOT_EXECUTE_FLOW_TRIGGER, We can't save this record because the “Update Oppty Lookup RelatedTo Events 2 test” process failed. Give your Salesforce admin these details. This error occurred when the flow tried to update records: LIMIT_EXCEEDED: System.LimitException: Too many SOQL queries: 101. You can look up ExceptionCode values in the SOAP API Developer Guide. Error ID: 1987318438-82422 (-64273350): [] )
Map<Id, Opportunity> oppdbmap = new Map<Id, Opportunity>(
[select Id, Booked__c, Initial_Appt_Date_Time__c, Initial_Appt_Time__c,
(select Id, Subject, ActivityDateTime from Events where What.Type = 'Opportunity' and ActivityDateTime != null and Subject != 'Cancelled Appointment' order by ActivityDateTime desc limit 1)
from Opportunity where Id in: oppevmap.keyset()]);
// if an existing event is more recent than a new one, we will use an existing one
for (Id oid: oppevmap.keyset()){
Event etempnew = oppevmap.get(oid);
Opportunity oppdb = oppdbmap.get(oid);
Event etempdb = oppdb == null ? null : oppdb.Events == null ? null : oppdb.Events.isempty() ? null : oppdb.Events[0];
if (etempdb != null && etempdb.ActivityDateTime != null){
if (etempnew == null || etempnew.ActivityDateTime == null || etempdb.ActivityDateTime > etempnew.ActivityDateTime){
oppevmap.put(oid, etempdb);
}
}
}
would anyone know how I can fix?
Thanks,
Shubham Kherde