• Trailhead Stranger
  • NEWBIE
  • 58 Points
  • Member since 2017

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 6
    Replies
Hi everyone, 
I'm almost gonna finish this Trail and I'm super excited. Yay!!
But... There's something that I need to do first.
Find out where's the arrow?!

Arrow

Here's the two screenshots of the Order Total by Flavor that I did and I cannot see any arrow. 

User-added image

User-added image

Could someone help me out please? :)
Hi everyone, 
I'm almost gonna finish this Trail and I'm super excited. Yay!!
But... There's something that I need to do first.
Find out where's the arrow?!

Arrow

Here's the two screenshots of the Order Total by Flavor that I did and I cannot see any arrow. 

User-added image

User-added image

Could someone help me out please? :)
public class OlderAccountsUtility
{
    public static void updateOlderAccounts()
    {
        List<Account> lstacc = [SELECT ID,Description FROM Account ORDER BY CreatedDate ASC LIMIT 5];
        
        for(Account acc : lstacc)
        {
            acc.Description = 'Heritage Account';
        }
        
        try
        {
        update lstacc;
        }
        catch(exception e)
        {
        }
    }
}


when i execute this code it is giving an error:
"Challenge Not yet complete... here's what's wrong: 
The 'updateOlderAccounts' method did not update account records as expected "

PLease help me with this
Hello Everyone:

I am on a trailhea module for Accounts and Contact relationships.  I know the answer is probably in front of my face.  However, I am not seeingit.  Please help.

From the Greendot Media account record, use the Related Contacts related list to add a relationship with John Smith.
I have been able to get similar ones to work (based on prior challenges) but I am struggling here.  Probably a newbie mistake somewhere.  Any help would be appreciated!  Thanks, Aron

-> Page (Gives Error: Unknown property 'String.Id error)

<apex:page controller="NewCaseListController">
    <apex:form >
        <apex:pageBlock title="Case List" id="Case_list">
            <!-- Case_list -->
         <apex:repeat value="{!Case}" var="case">
            <apex:outputLink value="{!Case.Id}">{!Case.Id}</apex:outputLink>
            <apex:outputLink value="{!case.CaseNumber}">{!case.CaseNumber}</apex:outputLink>
        </apex:repeat>      
        </apex:pageBlock>
    </apex:form>
</apex:page>

-> Class

ublic class NewCaseListController {

    public String getCase() {
        return null;
    }


    public String getCases() {
        return null;
    }

private String sortOrder = 'CaseNumber';
public List<Case> getNewCases() {
    List<Case> results = Database.query(
        'SELECT Id, CaseNumber ' +
        'FROM Case ' +
        'WHERE Status = New ' +
        'ORDER BY ' + sortOrder + ' ASC ' +
    );
    return results;
    }
}
Hi Experts,
I am trying to solve this challenge but not able to solve because of salesfore license issue. Salesforce only allows 2 'Salesfoce' license for DE. Is there a way to solve this challenge? Please help.

Create a Profile and Permission Set to properly handle field access
The Marketing Coordinator and Account Manager both require access to view and update Account Records, but only the Account Manager should be able to see and edit certain fields. Specifically, only the Account Manager should be able to see and edit the Rating field. The Marketing Coordinator should not be able to see or edit the Rating field. Create one profile and one permission set with the appropriate field-level security to solve for this use case.The profile must be named 'Basic Account User' and result in an API name of 'Basic_Account_User'. It should use the 'Salesforce' user license type.
The permission set must be named ‘Account Rating’ and result in an API name of 'Account_Rating'.