• maheswar kondala
  • NEWBIE
  • 15 Points
  • Member since 2021

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 2
    Likes Given
  • 0
    Questions
  • 3
    Replies
If anyone gets this error message: "The dashboard configuration that allows users to see only their own data is incorrect"...
error message

The solution is to check The Dashboard Viewer radio button in the dashboard settings--in the "View Dashboard As" section.
Hi!,
I am having trouble with the above Trailhead module.

Here is my Challenge:
Create a custom list view
Lance Park, one of Ursa Major Solar’s sales reps, wants to see a list of opportunities that are in the late stages of negotiation or have high probability to close, or both. Step into Lance’s shoes and make that happen.
  • Use the App Launcher to open the Sales app
  • Create a list view for opportunities named High Probability Opportunities
  • Let all users see the list view
  • The list should show only opportunities whose stage is Proposal/Price Quote and Negotiation/Review, and whose probability is greater than or equal to 50%.
I already created a custom list view namely - High Probability Opportunities as under:
On this page :https://na50.lightning.force.com/one/one.app#/sObject/Opportunity/list?filterName=00B6A0000030MhaUAE

The error that I am getting is:
Challenge Not yet complete... here's what's wrong: 
The 'High Probability Opportunities' list view does not appear to be configured correctly. It should show only opportunities whose stage is 'Proposal/Price Quote' and 'Negotiation/Review', and whose probability is greater than or equal to 50%.


Can anyone help me?

Thanks,
 
I am getting this error, but cannot figure out how to correct it.  System.DmlException: Insert failed. First exception on row 0; first error: INVALID_OR_NULL_FOR_RESTRICTED_PICKLIST, Direction: bad value for restricted picklist field: backwards: [Direction__c]
If anyone gets this error message: "The dashboard configuration that allows users to see only their own data is incorrect"...
error message

The solution is to check The Dashboard Viewer radio button in the dashboard settings--in the "View Dashboard As" section.
Hello All,
I have completed this challenge.

1-For this first you need to create a helper formula field(type-percent) 
Percent Completed :
(DATEVALUE( CreatedDate ) - CloseDate )/100


2- Then you need to create the actual formula field (type- text) by using the helper formula field.
Opportunity Progress :

IF( Percent_Completed__c <=25,"Early", 
IF(Percent_Completed__c <=75,"Middle", 
"Late"))

Thanks,
Nida