• Tomasz J. Omelczuk
  • NEWBIE
  • 10 Points
  • Member since 2017

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 1
    Replies
I have an issue related to challenge 2 from Service Cloud Specialist super badge. when I click on "Check Challenge" button I received following error message: "Challenge Not yet complete... here's what's wrong:
We can't find the Case Page Layout for the Cloud Technical Team Lifecycle. Review the steps to ensure you create the Case Page Layout for the Cloud Technical Team.
" and I'm not sure if I miss layout name in badge description or there is any different reason of failing this challenge    
Welcome all,

I try to pass module Create a HelloWorld Lightning Component  but I'm facing following error: "Challenge Not yet complete... here's what's wrong: The 'HelloWorld' component does not contain the correct code." however I cannot find this error here are my codes 

helloWorld.cmp:
<aura:component controller="HelloWorldController" implements="flexipage:availableForAllPageTypes"> 
<aura:attribute name="greeting" type="String" default="World" />
<lightning:input name="Greeting" label="Greeting" value="{!v.greeting}"/>
 <aura:handler name="init" value="{!this}" action="{!c.doInit}" />
 Hello, {!v.greeting}!
</aura:component>

apex HelloWorldController : 
public with sharing class HelloWorldController {
@AuraEnabled
public static User getCurrentUser() {
return [SELECT Id, FirstName, LastName FROM User WHERE Id = :UserInfo.getUserId() LIMIT 1];
 }
 }

and js HelloWorldController:
({
doInit : function(component, event, helper) {
var action = component.get("c.getCurrentUser");
action.setCallback(this, function(response) {
var user = response.getReturnValue();
component.set("v.greeting", user.FirstName);
})
$A.enqueueAction(action);
}
})

The worst thing in this situation is that I check in my org and everything works as it should. 
I am now trying to finish the challenge in module - Quick Start: Einstein Prediction Builder: Create a Formula Field to Predict.
https://trailhead.salesforce.com/projects/prediction_builder/steps/prediction_builder_formula_field?trailmix_creator_id=00550000006yDdKAAU&trailmix_id=admin-keynote-dreamforce-2017

I've created the Einstein Prediction Builder trailhead playground but could not find the custom object: Candidate.

Please advise. thanks.