• Ankit Jain 2909
  • NEWBIE
  • 60 Points
  • Member since 2018

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 4
    Replies
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 have created
1.AnimalLocator User-added image



2.AnimalLocatorMock
User-added image

3.AnimalLocatorTest

User-added image


error i am getting

User-added image

please help me
Hi All,

Can anyone please help me with bellow challenge.


Create an Apex trigger for Account that matches Shipping Address Postal Code with Billing Address Postal Code based on a custom field.
For this challenge, you need to create a trigger that, before insert or update, checks for a checkbox, and if the checkbox field is true, sets the Shipping Postal Code (whose API name is ShippingPostalCode) to be the same as the Billing Postal Code (BillingPostalCode).The Apex trigger must be called 'AccountAddressTrigger'.
The Account object will need a new custom checkbox that should have the Field Label 'Match Billing Address' and Field Name of 'Match_Billing_Address'. The resulting API Name should be 'Match_Billing_Address__c'.
With 'AccountAddressTrigger' active, if an Account has a Billing Postal Code and 'Match_Billing_Address__c' is true, the record should have the Shipping Postal Code set to match on insert or update.

For above challenge i tried with following code but looks like it doesnt mach the requirement.

trigger AccountAddressTrigger on Account (before insert, before update) {
    for(Account a : Trigger.new){
        If (a.Match_Billing_Address__c = true) {
            /*ShippingPostalCode = BillingPostalCode;*/
        }   
    } 

}

Please help me

Can any body help me what are the differences between SOAP API and REST API..?