• Albert van Gink
  • NEWBIE
  • 15 Points
  • Member since 2017

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 4
    Replies
Hi,
An error occured verifying the Salesforce Trailhead challenge

Customize a Sales Path for Your Team
Work with opportunities in the kanban view

https://trailhead.salesforce.com/projects/customize-a-sales-path-for-your-team/steps/work-with-opportunities-in-the-kanban-view

Error: Challenge Not yet complete... here's what's wrong: 
Couldn’t find filters for the opportunities with the correct information. Please double check the instructions.

Other strange things:
The Filter Logic is not mentioned.
I do not see the United Oil Plant Standby Generators opportunity/card
and i cannot save the list view...

Any idea's how to complete this challenge?

Thank you and regards, albert
 
Hi,

Trailhead: https://trailhead.salesforce.com/projects/quickstart-lightning-components/steps/quickstart-lightning-components3

Problem saving MyContactList.cmp.
Field_Integrity_Exception: Failed to save MyContactList.cmp: Invalid definition for null:MyContactListComponent: null: Source

MCLC.apxc:
public class MyContactListController {
@AuraEnabled
public static List<Contact> getContacts(Id recordId) {
   return [Select Id, FirstName, LastName, Email, Phone From Contact Where AccountId = :recordId];
}
}

MCL.cmp:
<aura:component controller="MyContactListComponent" implements="flexipage:availableForRecordHome,force:hasRecordId" access="global" >
<aura:attribute name="recordId" type="Id" />
<aura:attribute name="Account" type="Account" />
<aura:attribute name="Contacts" type="Contact" />
<aura:attribute name="Columns" type="List" />
<force:recordData aura:id="accountRecord"
                  recordId="{!v.recordId}"
                  targetFields="{!v.Account}"
                  layoutType="FULL"
                  />
<lightning:card iconName="standard:contact" title="{! 'Contact List for ' + v.Account.Name}">
    <!-- Contact list goes here -->
</lightning:card>
</aura:component>

User-added image

Anyone any idea or suggestion to help?

Thank you, regards, albert
Hi,
An error occured verifying the Salesforce Trailhead challenge

Customize a Sales Path for Your Team
Work with opportunities in the kanban view

https://trailhead.salesforce.com/projects/customize-a-sales-path-for-your-team/steps/work-with-opportunities-in-the-kanban-view

Error: Challenge Not yet complete... here's what's wrong: 
Couldn’t find filters for the opportunities with the correct information. Please double check the instructions.

Other strange things:
The Filter Logic is not mentioned.
I do not see the United Oil Plant Standby Generators opportunity/card
and i cannot save the list view...

Any idea's how to complete this challenge?

Thank you and regards, albert
 
I keep recieving this error code. I have done and redone all the steps. This is also a new dev or I am doing  this in.User-added image
Hi,
An error occured verifying the Salesforce Trailhead challenge

Customize a Sales Path for Your Team
Work with opportunities in the kanban view

https://trailhead.salesforce.com/projects/customize-a-sales-path-for-your-team/steps/work-with-opportunities-in-the-kanban-view

Error: Challenge Not yet complete... here's what's wrong: 
Couldn’t find filters for the opportunities with the correct information. Please double check the instructions.

Other strange things:
The Filter Logic is not mentioned.
I do not see the United Oil Plant Standby Generators opportunity/card
and i cannot save the list view...

Any idea's how to complete this challenge?

Thank you and regards, albert
 
Hi,

Trailhead: https://trailhead.salesforce.com/projects/quickstart-lightning-components/steps/quickstart-lightning-components3

Problem saving MyContactList.cmp.
Field_Integrity_Exception: Failed to save MyContactList.cmp: Invalid definition for null:MyContactListComponent: null: Source

MCLC.apxc:
public class MyContactListController {
@AuraEnabled
public static List<Contact> getContacts(Id recordId) {
   return [Select Id, FirstName, LastName, Email, Phone From Contact Where AccountId = :recordId];
}
}

MCL.cmp:
<aura:component controller="MyContactListComponent" implements="flexipage:availableForRecordHome,force:hasRecordId" access="global" >
<aura:attribute name="recordId" type="Id" />
<aura:attribute name="Account" type="Account" />
<aura:attribute name="Contacts" type="Contact" />
<aura:attribute name="Columns" type="List" />
<force:recordData aura:id="accountRecord"
                  recordId="{!v.recordId}"
                  targetFields="{!v.Account}"
                  layoutType="FULL"
                  />
<lightning:card iconName="standard:contact" title="{! 'Contact List for ' + v.Account.Name}">
    <!-- Contact list goes here -->
</lightning:card>
</aura:component>

User-added image

Anyone any idea or suggestion to help?

Thank you, regards, albert
For the Create and enable compact layout challenge, I'm receiving the following error message:

Challenge Not yet complete... here's what's wrong: 
Could not find a compact layout for the Event object with the label 'Showing Mobile Layout'.

Here's the Showing Mobile Layout compact layout that I created:

User-added image

What am I doing wrong? Thanks.