• Swamy Naren
  • NEWBIE
  • 20 Points
  • Member since 2018

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 2
    Replies
Hi all actually one of my friend's sales force account is not redirecting to actual account instead of that we are getting below attached page login to trailhead through sales force is not happening.I will be atteching screenshots of trailhead error page. help me out in resolving the issue.


User-added imageUser-added image
 Thanks in advance
Hi All, 

I am getting following error message: 

Challenge not yet complete... here's what's wrong:
A field with an API Name 'Match_Billing_Address__c' does not exist on the Account object

my code is as follows:


trigger AccountAddressTrigger on Account (before insert, before update) {
     for(Account a : Trigger.New) {
        if(a.Match_Billing_Address__c==true){a.ShippingPostalCode=a.BillingPostalCode;}
    }
}

 Thanks in Advance
Hi all actually one of my friend's sales force account is not redirecting to actual account instead of that we are getting below attached page login to trailhead through sales force is not happening.I will be atteching screenshots of trailhead error page. help me out in resolving the issue.


User-added imageUser-added image
 Thanks in advance
Hi All, 

I am getting following error message: 

Challenge not yet complete... here's what's wrong:
A field with an API Name 'Match_Billing_Address__c' does not exist on the Account object

my code is as follows:


trigger AccountAddressTrigger on Account (before insert, before update) {
     for(Account a : Trigger.New) {
        if(a.Match_Billing_Address__c==true){a.ShippingPostalCode=a.BillingPostalCode;}
    }
}

 Thanks in Advance