• Harpreet Ajimal
  • NEWBIE
  • 0 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 11
    Replies
Stuck on challenege 5

here is the error message I get:

Challenge Not yet complete... here's what's wrong: 
The 'Lightning Hobbies by Contact' report does not appear to have a locked filter.


Check out my screen shot, what am i doing wrong here???

User-added image
I'm receiving the following error on challenge #6 of the Lightning Superbadge:

Challenge Not yet complete... here's what's wrong: 
There was an unexpected error in your org which is preventing this assessment check from completing: System.DmlException: Delete failed. First exception on row 0 with id 0035000002hUBgRAAW; first error: DELETE_FAILED, Your attempt to delete Sam the ninja could not be completed because it is associated with the following adventure packages.: null, null : []

Looking at the Developer Console, it looks like the code which checks the system is forgetting to delete the Adventure Package records before deleting the Contact. Has anyone else run into this issue?

Thank you!
I am on Step 6 and getting an error, does anyone have input on this. Thanks in advance!!

I chose the Opportunity Object to start my Process - when record is created or edited 

entry criteria {Opportunity}.StageName equals cancelled 

Immediate Actions 

Update Record - [Opportunity].Fullfillments_r 

Criteria for Updating 

Schedule Date Less than Reference [Opportunity.CreatedDate 
Status Equals Cancelled 

Set New fields

Adventure Package Cost reference [Opportunit].Amount 
 
Has anyone completed this trail? I am stomped on challenge number 3, regarding created the process for fulfillment. Any pointers or guidance would be appreciated.
 
On this module, specifically on the Apex Rest Callout unit, I feel like this following challenge instruction could be misleading.

    •    The 'getAnimalNameById' method must call https://th-apex-http-callout.herokuapp.com/animals/:id, using the ID passed into the method. The method returns the value of the 'name' property (i.e., the animal name).

If someone physically copies that link, removes id but leaves in : then the challenge review will not pass because the request link will post as 
https://th-apex-http-callout.herokuapp.com/animals/:99
instead of the correct 
https://th-apex-http-callout.herokuapp.com/animals/99

The first incorrect link will still perform get for the request, but just blank values in the json response.