-
ChatterFeed
-
3Best Answers
-
2Likes Received
-
0Likes Given
-
4Questions
-
45Replies
Superbadge - Reports and Dashboard
Hi guys,
I am not able to import list of hobbies in hobbies__c object.
where to get list of hobbies to import in hobbies__c. In list of contacts excel sheet there is no column for hobbies, so from where i should imported list of hobbies.
-
- Bijendra Kumar Singh
- July 09, 2016
- Like
- 0
- Continue reading or reply
Reports & Dashboards Specialist Superbadge - Issue in Reports and Dashboard Security
Hi, I am facing below error. Can anyone share what might be the reason for this error, I have created the required public groups and set the security as mentioned in the challenge (screenshots below)

I have already created public groups in the Org

and set the security requirements


I have already created public groups in the Org
and set the security requirements
-
- Asrar Rafique
- July 07, 2016
- Like
- 0
- Continue reading or reply
Superbadge - Create contact and hobby reports
I seem to have no clue what's wrong in the report which I created. As per the requirement - Summarize the report by Account Name, the contact’s Full Name, and show the Hobby Name." Here I do not understand Full Name, as in the report we only get First Name, Last Name.
The error says -
Challenge Not yet complete... here's what's wrong:
The 'Lightning Hobbies by Contact' report does not appear to have either the correct report type or (most likely) the correct columns.
I have summarized the report by Account Name, then by Last Name. Another column shown is Hobbies Name. The report filter is on Hobby Type (the bucket field) = Outdoor Activities and it is locked.
Does anyone know whats wrong?
The error says -
Challenge Not yet complete... here's what's wrong:
The 'Lightning Hobbies by Contact' report does not appear to have either the correct report type or (most likely) the correct columns.
I have summarized the report by Account Name, then by Last Name. Another column shown is Hobbies Name. The report filter is on Hobby Type (the bucket field) = Outdoor Activities and it is locked.
Does anyone know whats wrong?
-
- goabhigo
- June 12, 2016
- Like
- 2
- Continue reading or reply
Invoking user interaction flow based on record conditions
Here is the use case:
Before we close-won any opportunity we need to associate atleast two opportunity contact roles; if there are less or no contacts associated then a flow screen is pop-up for the rep to input or select contacts and then it gets added to opportunity contact role.
Since the visual flow is user-interaction driven can I achieve this using a button (referring VF page); however question here is can i invoke this flow based on a condition...just before opportunity is marked as CLOSED WON?
Looking for solutions..
Thanks
Before we close-won any opportunity we need to associate atleast two opportunity contact roles; if there are less or no contacts associated then a flow screen is pop-up for the rep to input or select contacts and then it gets added to opportunity contact role.
Since the visual flow is user-interaction driven can I achieve this using a button (referring VF page); however question here is can i invoke this flow based on a condition...just before opportunity is marked as CLOSED WON?
Looking for solutions..
Thanks
-
- Ajay Anikar H R
- November 03, 2016
- Like
- 0
- Continue reading or reply
Debug Logs - NOT Showing up any entries
All,
Debug log - Not showing any entries, i was wondering if anyone else faced similar issue before.
I can confirm the settings is correct and when i drilldown on other screen (either accounts or contacts), nothing up in the logs.
any idea ?
Debug log - Not showing any entries, i was wondering if anyone else faced similar issue before.
I can confirm the settings is correct and when i drilldown on other screen (either accounts or contacts), nothing up in the logs.
any idea ?
-
- Ajay Anikar H R
- June 29, 2016
- Like
- 1
- Continue reading or reply
Superbadge: Security Specialist Module
Hello,
Part of the module is where you create couple of profiles with object level permissions. Accordingly i have set the right permissions for account object (R/E/VA), Opportunity (R/C/E) -- NO VIEW ALL for Field Sales Profile.
Everytime i check the challenge am getting below error; any help.
Error:
Challenge Not yet complete... here's what's wrong:
The Field Sales User does not appear to have the correct object permissions for Accounts and Opportunities.
Part of the module is where you create couple of profiles with object level permissions. Accordingly i have set the right permissions for account object (R/E/VA), Opportunity (R/C/E) -- NO VIEW ALL for Field Sales Profile.
Everytime i check the challenge am getting below error; any help.
Error:
Challenge Not yet complete... here's what's wrong:
The Field Sales User does not appear to have the correct object permissions for Accounts and Opportunities.
-
- Ajay Anikar H R
- June 10, 2016
- Like
- 0
- Continue reading or reply
Superbadge - Reports and Dashboard - Marketing Dashboard
Hello There.,
Am getting below error while completing the Marketing Dashboard challenge as part of Superbadge (Reports & Dashboards Specialist); i have also provided the screenshot of what i have completed. Spent couple of hours to understand where its breaking but couldn't get the cause of it. looking forward ..
error:The 'Marketing Manager' dashboard does not have the correct headers and titles for the chart components.
Am getting below error while completing the Marketing Dashboard challenge as part of Superbadge (Reports & Dashboards Specialist); i have also provided the screenshot of what i have completed. Spent couple of hours to understand where its breaking but couldn't get the cause of it. looking forward ..
error:The 'Marketing Manager' dashboard does not have the correct headers and titles for the chart components.
-
- Ajay Anikar H R
- June 10, 2016
- Like
- 1
- Continue reading or reply
Debug Logs - NOT Showing up any entries
All,
Debug log - Not showing any entries, i was wondering if anyone else faced similar issue before.
I can confirm the settings is correct and when i drilldown on other screen (either accounts or contacts), nothing up in the logs.
any idea ?
Debug log - Not showing any entries, i was wondering if anyone else faced similar issue before.
I can confirm the settings is correct and when i drilldown on other screen (either accounts or contacts), nothing up in the logs.
any idea ?
-
- Ajay Anikar H R
- June 29, 2016
- Like
- 1
- Continue reading or reply
Superbadge - Reports and Dashboard - Marketing Dashboard
Hello There.,
Am getting below error while completing the Marketing Dashboard challenge as part of Superbadge (Reports & Dashboards Specialist); i have also provided the screenshot of what i have completed. Spent couple of hours to understand where its breaking but couldn't get the cause of it. looking forward ..
error:The 'Marketing Manager' dashboard does not have the correct headers and titles for the chart components.
Am getting below error while completing the Marketing Dashboard challenge as part of Superbadge (Reports & Dashboards Specialist); i have also provided the screenshot of what i have completed. Spent couple of hours to understand where its breaking but couldn't get the cause of it. looking forward ..
error:The 'Marketing Manager' dashboard does not have the correct headers and titles for the chart components.
-
- Ajay Anikar H R
- June 10, 2016
- Like
- 1
- Continue reading or reply
trigger to update related records
Hi,
I need to have a trigger to update 'Rating' of an Account to 'Cold', if it's related opportunity is staged to 'Qualification'.
We should use MAP here.
I have tried the below code. But, it is not updating the record of account
trigger mapAccount on Opportunity (before insert,before update) {
List<Opportunity> ol=[select id,Account.rating from Opportunity where id in: Trigger.new and StageName='Qualification'];
Map<ID,Opportunity> mp=new Map<ID,Opportunity>();
System.debug('----------');
for(Opportunity o:ol){
o.Account.rating='Cold';
mp.put(o.id, o);
System.debug('Rate--'+o.Account.rating);
}
System.debug(mp.values());
}
Could someone help me.
I need to have a trigger to update 'Rating' of an Account to 'Cold', if it's related opportunity is staged to 'Qualification'.
We should use MAP here.
I have tried the below code. But, it is not updating the record of account
trigger mapAccount on Opportunity (before insert,before update) {
List<Opportunity> ol=[select id,Account.rating from Opportunity where id in: Trigger.new and StageName='Qualification'];
Map<ID,Opportunity> mp=new Map<ID,Opportunity>();
System.debug('----------');
for(Opportunity o:ol){
o.Account.rating='Cold';
mp.put(o.id, o);
System.debug('Rate--'+o.Account.rating);
}
System.debug(mp.values());
}
Could someone help me.
- Soumya Choudhury
- November 15, 2017
- Like
- 0
- Continue reading or reply
Email security issues
Does salesforce provide something like email masquerading ? Where email will be going from xyz=example@salesforce.com ? ?
The reason for having Email masquerading is , our domain has a security rule where email coming from outside our network will not be accepted if they have our same domain as ours. Salesforce sends the most of outbound emails from user's email address configured in Salesforce. As this email is coming from salesforce (outside of network ) and has domain of our company , this will be not allowed to enter into our network and will be filtered by our servers .
Is there any way to overcome this ? Can email relays play a role here ? ?
The reason for having Email masquerading is , our domain has a security rule where email coming from outside our network will not be accepted if they have our same domain as ours. Salesforce sends the most of outbound emails from user's email address configured in Salesforce. As this email is coming from salesforce (outside of network ) and has domain of our company , this will be not allowed to enter into our network and will be filtered by our servers .
Is there any way to overcome this ? Can email relays play a role here ? ?
- Saurabh Kulkarni 37
- November 04, 2016
- Like
- 0
- Continue reading or reply
How to tell where a view all permission is coming from
I am having an issue with a permission to an object for a certain user. They should only be able to view the objects that they created. The OWD is set to private and his profile does not have any access to this particular object. I went through all of the permission sets, but there are a lot, so I am not certain where it is allowing them to view all of the objects in that object's own tab under view all.
Is there a better or easier way to troubleshoot and determine where they are getting the access to view all of the data of the particular object? They can view ones that the admin created.
Thanks!
Is there a better or easier way to troubleshoot and determine where they are getting the access to view all of the data of the particular object? They can view ones that the admin created.
Thanks!
- JJames
- August 19, 2016
- Like
- 1
- Continue reading or reply
Shield Platform Encryption trailhead error: The Contact Mobile Phone field does not appear to be encrypted.
I have this field encrypted and there is data in there.
Please advise.
Please advise.
- Dan Hew
- July 14, 2016
- Like
- 1
- Continue reading or reply
How can upload workflows from Eclipse to Sandbox?
Hello
We refreshed our sandbox from PROD and now we have some before refreshing .workflow files that we need to upload to our refreshed sandbox. Is this possible? Please, let me know how proceed as I am strugling to do so. I am using force.com Eclipse. I tried moving the needed *.worflow files to the src\workflow folder and upload them to the sandbox but it is not happening.
Thanks
We refreshed our sandbox from PROD and now we have some before refreshing .workflow files that we need to upload to our refreshed sandbox. Is this possible? Please, let me know how proceed as I am strugling to do so. I am using force.com Eclipse. I tried moving the needed *.worflow files to the src\workflow folder and upload them to the sandbox but it is not happening.
Thanks
- Jose Zuniga
- July 13, 2016
- Like
- 0
- Continue reading or reply
Challenge Using Report Formats - When is matrix report not a matrix report?
I am a newbie and stuck on this challenge in the Basic Reporting Section "Using Report Formats" I am stuck and need help.
Here is the link I am working on. https://na3.salesforce.com/00O50000004rixg/e?retURL=%2F00O50000004rixg
The challenge is as follows:

My steps are as follows:
1. I grouped the Lead Source and the Rating which made it a summary format
2. I then changed it to the matrix report setting and moved "Rating" to the Column Header and moved "Lead Source" to the row header.
Then I saved my file.
Screen Shot of summary

Screen Shot of Detail

Additional detail : I deleted my first try which I guess now was a mistake. I am now just renaming the file with a number at the end as suggested. So I am at "Matrix of Leads2" for my submission name. Not sure if this is the issue as it maybe trying to look for "Matrix of Leads" and seeing my first file. I am stuck and I cannot figure out what obvious thing I am missing? Any help is appreciated.
Thanks
Here is the link I am working on. https://na3.salesforce.com/00O50000004rixg/e?retURL=%2F00O50000004rixg
The challenge is as follows:
My steps are as follows:
1. I grouped the Lead Source and the Rating which made it a summary format
2. I then changed it to the matrix report setting and moved "Rating" to the Column Header and moved "Lead Source" to the row header.
Then I saved my file.
Screen Shot of summary
Screen Shot of Detail
Additional detail : I deleted my first try which I guess now was a mistake. I am now just renaming the file with a number at the end as suggested. So I am at "Matrix of Leads2" for my submission name. Not sure if this is the issue as it maybe trying to look for "Matrix of Leads" and seeing my first file. I am stuck and I cannot figure out what obvious thing I am missing? Any help is appreciated.
Thanks
- John Holstein
- July 10, 2016
- Like
- 0
- Continue reading or reply
Superbadge - Reports and Dashboard
Hi guys,
I am not able to import list of hobbies in hobbies__c object.
where to get list of hobbies to import in hobbies__c. In list of contacts excel sheet there is no column for hobbies, so from where i should imported list of hobbies.
- Bijendra Kumar Singh
- July 09, 2016
- Like
- 0
- Continue reading or reply
Reports & Dashboards Specialist Superbadge - Issue in Reports and Dashboard Security
Hi, I am facing below error. Can anyone share what might be the reason for this error, I have created the required public groups and set the security as mentioned in the challenge (screenshots below)

I have already created public groups in the Org

and set the security requirements


I have already created public groups in the Org
and set the security requirements
- Asrar Rafique
- July 07, 2016
- Like
- 0
- Continue reading or reply
Reports & Dashboards - Superbadge : Contacts without Hobbies
Hi All,
Maybe I am missing something but I am going around in cirlces with the Contacts without Hobbies report. I have:
1. Created a custom report type to get Contacts without hobbies
2. Created an Account Value bucket field
3. Create a % Open Opps Formula
4. Added First Name, Last Name, Total Opp Value, Open Opp Value, Phone, Email, %Open Opps to the report
5. Summarised by Account Value then Account
And im still getting an error:
Challenge Not yet complete... here's what's wrong: The 'Contacts Without Hobbies' report is not configured correctly.
I have added screenshots of all the pieces - hoping someone else has hit this issue



Maybe I am missing something but I am going around in cirlces with the Contacts without Hobbies report. I have:
1. Created a custom report type to get Contacts without hobbies
2. Created an Account Value bucket field
3. Create a % Open Opps Formula
4. Added First Name, Last Name, Total Opp Value, Open Opp Value, Phone, Email, %Open Opps to the report
5. Summarised by Account Value then Account
And im still getting an error:
Challenge Not yet complete... here's what's wrong: The 'Contacts Without Hobbies' report is not configured correctly.
I have added screenshots of all the pieces - hoping someone else has hit this issue
- Scott_Gassmann
- June 17, 2016
- Like
- 1
- Continue reading or reply
Superbadge - Create contact and hobby reports
I seem to have no clue what's wrong in the report which I created. As per the requirement - Summarize the report by Account Name, the contact’s Full Name, and show the Hobby Name." Here I do not understand Full Name, as in the report we only get First Name, Last Name.
The error says -
Challenge Not yet complete... here's what's wrong:
The 'Lightning Hobbies by Contact' report does not appear to have either the correct report type or (most likely) the correct columns.
I have summarized the report by Account Name, then by Last Name. Another column shown is Hobbies Name. The report filter is on Hobby Type (the bucket field) = Outdoor Activities and it is locked.
Does anyone know whats wrong?
The error says -
Challenge Not yet complete... here's what's wrong:
The 'Lightning Hobbies by Contact' report does not appear to have either the correct report type or (most likely) the correct columns.
I have summarized the report by Account Name, then by Last Name. Another column shown is Hobbies Name. The report filter is on Hobby Type (the bucket field) = Outdoor Activities and it is locked.
Does anyone know whats wrong?
- goabhigo
- June 12, 2016
- Like
- 2
- Continue reading or reply
Superbadge: Security Specialist Module
Hello,
Part of the module is where you create couple of profiles with object level permissions. Accordingly i have set the right permissions for account object (R/E/VA), Opportunity (R/C/E) -- NO VIEW ALL for Field Sales Profile.
Everytime i check the challenge am getting below error; any help.
Error:
Challenge Not yet complete... here's what's wrong:
The Field Sales User does not appear to have the correct object permissions for Accounts and Opportunities.
Part of the module is where you create couple of profiles with object level permissions. Accordingly i have set the right permissions for account object (R/E/VA), Opportunity (R/C/E) -- NO VIEW ALL for Field Sales Profile.
Everytime i check the challenge am getting below error; any help.
Error:
Challenge Not yet complete... here's what's wrong:
The Field Sales User does not appear to have the correct object permissions for Accounts and Opportunities.
- Ajay Anikar H R
- June 10, 2016
- Like
- 0
- Continue reading or reply