• Srinivas A 17
  • NEWBIE
  • 10 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 3
    Replies

Hello,

I am using Lightning and I am trying to populate my contact and lead objects so that the activities available are Log a Call, New Event and New Task, however; when I click and drag the Salesforce1 Action "Log a Call", it will not populate on the different object layouts that I am trying to add it to.

What could be the problem?

Thanks, 

Katrina

In the challenge for the "Using Formula Fields" Trailhead module, I'm using the formula, TODAY()  -  LastModifiedDate, with the type set as Number (as specified in the challenge instructions, but I receive the following syntax  error: Error: Incorrect parameter type for operator '-'. Expected Number, Date, received DateTime.

I am a total admin n00b and would appreciate any feedback on the (probably obvious) element I'm missing here. Thanks!
I am getting error message while solving this challenge in Trailhead :

To complete this challenge, add a validation rule which will block the insertion of a contact if the contact is related to an account and has a mailing postal code (which has the API Name MailingPostalCode) different from the account's shipping postal code (which has the API Name ShippingPostalCode).Name the validation rule 'Contact must be in Account ZIP Code'.
A contact with a MailingPostalCode that has an account and does not match the associated Account ShippingPostalCode should return with a validation error and not be inserted.
The validation rule should ONLY apply to contact records with an associated account. Contact records with no associated parent account can be added with any MailingPostalCode value. (Hint: you can use the ISBLANK function for this check)

Error Message is :  There was an unhandled exception. Please reference ID: HKIZNLVZ. Error: Trailhead::TrailheadTimeOut. Message: Trailhead.view: failed to get a 200 response. Made 3 attempts each resulting in a 403 or 500 failure for url challenges?key=%5B%22trailhead.challenge.validation_rules.en.us.192%22%5D.

I am not sure what went wrong here.
My Validation Rule is on Contact Object  :

  AND ( NOT(ISBLANK( Account.Name)),
( MailingPostalCode <> Account.ShippingPostalCode))

Can anyone please help with this.