• Mujahid Islam Khan
  • NEWBIE
  • 25 Points
  • Member since 2018

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 7
    Questions
  • 5
    Replies
Challenge Requirements
Create a work type named Drill Cable Holes that creates a service appointment automatically and estimates that the drilling takes 1 hour
Add 1 Drill as a required part

I had done all the steps but I am getting below error

Challenge Not yet complete... here's what's wrong:
Could not find one 'Drill' as a required part.

Infect I added one 'Drill' as a required part. I am attaching screenshot.Add 1 Drill as a required part
Use Schema Builder to create a custom field for the Property object
DreamHouse brokers often visit properties with their clients. They want to see on the property record where the property is located. Use Schema Builder to add a street address field to the Property object.
Field data type: Text Area
Field label: Street Address
Always require a value in this field in order to save a record: Selected
I have completed all the steps listed but getting same error.
Challenge Not yet complete... here's what's wrong: 
The field 'Street_Address__c' either does not exists on the Property__c object or it is not of type textarea.

please help me.
I am also sharing screenshot of this field.
Thanks
Mujahid KhanField label: Street AddressType
This challenge seems simple enough but I'm stuck and any help would be appreciated. 
So the Challenge is Create a validation rule to check that a contact is in the zip code of its account. here is the question below:
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 (hint: you can use the ISBLANK function for this check) can be added with any MailingPostalCode value


My work is..
Rule Name Contact_must_be_in_Account_ZIP_Code Active [Checked]
Error Condition Formula AND(
2
NOT( ISBLANK( AccountId ) ),
3
MailingPostalCode <> Account.ShippingPostalCode
4
)
Error Message: Invalid Zip Code


I am getting below error

Challenge Not yet complete... here's what's wrong:
The validation rule failed to enforce the business logic

Could you help on it.
I am doing Business Administration Specialist badge. I have completed all steps which has been mentioned in challenge. But I am getting an error 

Challenge Not yet complete... here's what's wrong: 
Could not find a dashboard with a name 'Adoption Features'.

Infect, Adoption Features is also available in Playground.
I can't progress pass the first stage on this project.  I got the error: Could not authenticate with the IBM Bluemix service. Please validate your credentials (also below).  I have deleted and created new one but getting same error again & again.
 
In GitHub, go to the flow-demo repository you forked earlier. Click the Public folder to open it, then click the index.html file.

I am unable to see Public folder and not able to see My repository or This computer option in Github.. Could you assist the steps for the same
I had my actual Gmail on Webassessor.com. I am doing Trailhead using Myname@companyname.com(not Actual email just a login name). But I verified Myname@companyname.com account using actual Gmail id(Which  I use on Webassessor).  So, I have question

1. Whatever I will complete on  Myname@companyname.com trailhead then It must show on my webassessor account then What I have to do.
2. Before using Myname@companyname account, I had done many badges using an old Email address which is not exist so can I merge that account on here.
Use Schema Builder to create a custom field for the Property object
DreamHouse brokers often visit properties with their clients. They want to see on the property record where the property is located. Use Schema Builder to add a street address field to the Property object.
Field data type: Text Area
Field label: Street Address
Always require a value in this field in order to save a record: Selected
I have completed all the steps listed but getting same error.
Challenge Not yet complete... here's what's wrong: 
The field 'Street_Address__c' either does not exists on the Property__c object or it is not of type textarea.

please help me.
I am also sharing screenshot of this field.
Thanks
Mujahid KhanField label: Street AddressType
I had my actual Gmail on Webassessor.com. I am doing Trailhead using Myname@companyname.com(not Actual email just a login name). But I verified Myname@companyname.com account using actual Gmail id(Which  I use on Webassessor).  So, I have question

1. Whatever I will complete on  Myname@companyname.com trailhead then It must show on my webassessor account then What I have to do.
2. Before using Myname@companyname account, I had done many badges using an old Email address which is not exist so can I merge that account on here.
I'm having trouble on this solution as well.  I'm pretty sure I've completed all of the steps but am getting the
"Could not find a properly routed case. Ensure that you've setup Omni-Channel correctly by following the requirements."
error as well.  The issue I seem to be having is that after changing ownership of the case to the queue "High Priority", I am not getting a notification in the Omni-Channel widget box to accept.  It just says "You have no active requests".  Does anyone have any suggestions? 
This challenge seems simple enough but I'm stuck and any help would be appreciated. 

So the Challenge is Create a validation rule to check that a contact is in the zip code of its account. here is the question below:
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 (hint: you can use the ISBLANK function for this check) can be added with any MailingPostalCode value

Here is my  work.. Any help would be appreciated.. thanks, 

Rule Name Contact_must_be_in_Account_ZIP_Code Active [Checked]
Error Condition Formula AND( BillingPostalCode = ShippingPostalCode )
Error Message Billing zipcode does not match the Shipping Zipcode Error Location Billing Zip/Postal Code