-
ChatterFeed
-
0Best Answers
-
1Likes Received
-
0Likes Given
-
4Questions
-
3Replies
Cannot complete Collaborative Forecasts Configuration - Create Forecast Reports
I am working on the "Create Forecasting Reports" section of the "Collaborative Forecasts Configuration" module. I have complete the challenge steps in my dev org, but I am still receiving an error that the challenge cannot be validated.

Here is the custom report type, as configured in my dev org.

From what I can tell, everything seems to be configured correctly. Any suggestions as to why this will not validate correctly?
Here is the custom report type, as configured in my dev org.
From what I can tell, everything seems to be configured correctly. Any suggestions as to why this will not validate correctly?
-
- Daniel Dlugos
- January 29, 2018
- Like
- 0
- Continue reading or reply
Inaccuracy in "Discover Multiple Currency Settings" in the "Company Wide Org Settings" Module
The Discover Multiple Currency Settings lesson has a piece of inaccurate information.
Step 3 in the instructions to activate multiple currencies seems to be incorrect. It reads:
To enable and apply multiple currencies:
Step 3 in the instructions to activate multiple currencies seems to be incorrect. It reads:
To enable and apply multiple currencies:
- From Setup search for Company Information in the Quick Find, then select Company Information.
- Click Edit.
- Check Activate Multiple Currencies.
-
- Daniel Dlugos
- January 24, 2018
- Like
- 0
- Continue reading or reply
LEX Rollout Specialist - Cannot complete step 6
I am working on the LEX Rollout Specialist superbadge, and I am unable to validate step #6. Here is the error I am getting:

I began the superbadge by creating a new trailhead playground, and I have not had any problems completeing the first 5 steps. How do I resolve this problem?
I began the superbadge by creating a new trailhead playground, and I have not had any problems completeing the first 5 steps. How do I resolve this problem?
-
- Daniel Dlugos
- January 10, 2018
- Like
- 0
- Continue reading or reply
Simple test class for apex trigger on task
I'm just learning the basics of Apex, and I could use a little help writing a test class for a basic trigger I have that prevents users from deleting tasks. I've been at this for over a week now, and I've just hit a wall with it.
Could anyone help me out with a test class for this? I'll be sure to make it best answer :)
Thanks in advance.
Could anyone help me out with a test class for this? I'll be sure to make it best answer :)
Thanks in advance.
trigger NoDeleteOnTask on Task (before delete) { if(trigger.isDelete){ Set<Id> allowedProfileIds = new Set<Id>(); for(Profile p :[SELECT Id FROM Profile WHERE (Name = 'System Administrator' )]){ allowedProfileIds.add(p.Id); } for (Task a : Trigger.old){ if(!allowedProfileIds.contains(UserInfo.getProfileId())){ a.addError('Task\'s can\'t be deleted. Please contact the system administrator if you require further assistance.'); } } } }
-
- Daniel Dlugos
- October 17, 2017
- Like
- 1
- Continue reading or reply
Simple test class for apex trigger on task
I'm just learning the basics of Apex, and I could use a little help writing a test class for a basic trigger I have that prevents users from deleting tasks. I've been at this for over a week now, and I've just hit a wall with it.
Could anyone help me out with a test class for this? I'll be sure to make it best answer :)
Thanks in advance.
Could anyone help me out with a test class for this? I'll be sure to make it best answer :)
Thanks in advance.
trigger NoDeleteOnTask on Task (before delete) { if(trigger.isDelete){ Set<Id> allowedProfileIds = new Set<Id>(); for(Profile p :[SELECT Id FROM Profile WHERE (Name = 'System Administrator' )]){ allowedProfileIds.add(p.Id); } for (Task a : Trigger.old){ if(!allowedProfileIds.contains(UserInfo.getProfileId())){ a.addError('Task\'s can\'t be deleted. Please contact the system administrator if you require further assistance.'); } } } }
-
- Daniel Dlugos
- October 17, 2017
- Like
- 1
- Continue reading or reply
Einstein Prediction Builder - unable to locate in Developer Org
I just created a salesforce developer org per the instructions and connect to trailhead but locate the Einstein Predition Builder in Setup. I also see the following message under Einstein in setup:
Einstein.ai Key Management Welcome to the Einstein.ai Key Management page. To connect to the service, click the link in your welcome email or contact support.
Any guidance to resolve is appreciated! I've tried logging out and back in, creating a second developer org and neither resolved the issue.
- Todd Carr 6
- February 07, 2018
- Like
- 0
- Continue reading or reply
LEX Rollout Specialist - Cannot complete step 6
I am working on the LEX Rollout Specialist superbadge, and I am unable to validate step #6. Here is the error I am getting:

I began the superbadge by creating a new trailhead playground, and I have not had any problems completeing the first 5 steps. How do I resolve this problem?
I began the superbadge by creating a new trailhead playground, and I have not had any problems completeing the first 5 steps. How do I resolve this problem?
- Daniel Dlugos
- January 10, 2018
- Like
- 0
- Continue reading or reply
Simple test class for apex trigger on task
I'm just learning the basics of Apex, and I could use a little help writing a test class for a basic trigger I have that prevents users from deleting tasks. I've been at this for over a week now, and I've just hit a wall with it.
Could anyone help me out with a test class for this? I'll be sure to make it best answer :)
Thanks in advance.
Could anyone help me out with a test class for this? I'll be sure to make it best answer :)
Thanks in advance.
trigger NoDeleteOnTask on Task (before delete) { if(trigger.isDelete){ Set<Id> allowedProfileIds = new Set<Id>(); for(Profile p :[SELECT Id FROM Profile WHERE (Name = 'System Administrator' )]){ allowedProfileIds.add(p.Id); } for (Task a : Trigger.old){ if(!allowedProfileIds.contains(UserInfo.getProfileId())){ a.addError('Task\'s can\'t be deleted. Please contact the system administrator if you require further assistance.'); } } } }
- Daniel Dlugos
- October 17, 2017
- Like
- 1
- Continue reading or reply