Skip to main content The last day to register for a Salesforce or Tableau exam is June 30th. Learn more about the new Salesforce certification experience coming July 21st.

Feed

Connect with fellow Trailblazers. Ask and answer questions to build your skills and network.

I am unable to complete the challenge of cloning the Net Zero Cloud Manager perm set to create the Net Zero Cloud Manager - clone perm set because I receive the following errors: 

 

- ViewAllRecords on SustainabilityStakeholder requires ViewAllRecords on at least one of these objects: ContactViewAllRecords on SustainabilityStakeholder requires  

- ViewAllRecords on at least one of these objects: VehicleAssetEmssnSrc, StnryAssetEnvrSrc 

 

I am not able to edit the ootb Net Zero Cloud Manager perm set.  Has anyone faced this issue? 

 

Thanks! 

 

#Trailhead Challenges

0/9000

Hi, we are setting up our Tableau CLoud environment. I am working with the AWS team to setup the Activity Log for our Tableau Cloud sites 

But I am trying to figure out, what access we would need to setup on AWS for us to connect to these logs. 

If someone can also help with how we can build reports on top of this activity logs to build our analytics , that would be great. 

 

Apologies I am completely new to connecting to log files in S3 bucket 

 

#Tableau

0/9000

Hi! 

 

I hope this is a simple question for someone. We are currently leveraging the Send with DocuSign Action on Contact records in Salesforce. We have a use case for the Send with DocuSign Action on an Account, as well. Does the Send with DocuSign Action work on the Account Object?

 

Also, does anyone know if you Send with DocuSign from a Contact, is there a way to natively have the documents that were returned via DocuSign and that are available in the Files Related List of the Contact, ALSO be available in the Files Related List of the Account to which the Contact is primarily related?  

 

Thanks! 

 

#Docusign  #Docusign Integration

0/9000

Hello guys, 

I want to complete "Report Administration for Agentforce Readiness Superbadge Unit" but it gives me error every time its not a usual error it give like this 'Challenge Not yet complete... here's what's wrong: 

Whoops, looks like there was a problem. Please try again' .

 

Because of that I create a new Org but same thing I received its really frustrating please me help in this regard. 

 

Thanks and regards  

Palash 

 

#Trailhead Challenges  #Salesforce Developer  #Agentforce  #Trailhead Superbadges

3 answers
  1. Today, 8:52 PM

     Hi Palash, 

    I have faced a similar problem earlier. If you have already tried using another browser or incognito mode, you can try clearing your browser cache(this worked for me). Also, confirm you’re in the correct Trailhead Playground and logged in as System Admin. 

0/9000

My org has a custom Object called Proposals that we are converting to Quotes.  I exported all of the Proposals and then inserted them with the audit trail dates ( CreatedById, CreatedDate, LastModifiedById,  LastModifiedDate).  When I created reports to make sure they were identical for the two different Objects, they were a little different.  I found an example of an Opportunity that closed in Dec 2024, and the conversion rate for the converted Amount is the 2025 conversion rate.  So when the Quote I created yesterday (with a created date = 6/3/2024) synced with the Opportunity, the conversion rate was not the rate effective in December, it was the rate effective yesterday.  Is this a bug?  Is there a way to force the system to use the conversion rate that was effective on the day the Opportunity was closed?

1 answer
  1. Today, 1:45 PM

    Hi @Peter Martensen

    - conversion rate will apply for inserted opportunities based on current date (Even if you change audit trial fields and made it look like past one). For already closed one it reflects the date based on closure (Say you created an opportunity before and closed it yesterday) and here you have created an opportunity with past date. It will reflect current rates. 

     

    Thanks

0/9000
6 answers
0/9000

I need a area that says "support plan start date" as seen in instructions however there is nothing of the sort on my page for the account.  

 

#Trailhead Challenges

3 answers
  1. Today, 8:37 PM

    There are two possible problems/ or things you have missed.

    1. The field is not added to the page layout. You can this by going to Object Manager>>Account>>Page Layouts>>Account Layout and search for the Support Plan Start Date. If this is not added to the Page layout do add this.
    2. The Field level security for the user profiles. Goto Object Manager>>Account>>Fields and Relationships>>Support Plan Start Date>>Set Field-Level Security. And make this field visible to all the profiles in your org.

    https://trailhead.salesforce.com/trailblazer-community/feed/0D54S00000CgvRfSAJ

    https://trailhead.salesforce.com/trailblazer-community/feed/0D54S00000JgRaP

     

    I was able to figure it out. The reason the Has Support option was missing was because it needed to be created in the previous module.

     

    https://trailhead.salesforce.com/trailblazer-community/feed/0D54S00000Pj4Yr 

0/9000

I have created a formula field 'Is US Based' and API Name 'Is_USA_Based__c'. 

and saved- once i verify the step, error displayed as  

'Step not yet complete in Data Cloud

We can't find the field ‘Is US Based’ (API Name includes ‘Is_US_Based__c’) associated with the Data Stream ‘Lead’. 

I disabled it to create again, Please reply, why it is not recognising created formula field and How to enable it. 

Not able to create a formula field with same name. 

existing one is disabled. and not recognised by  trailhead. 

Please do needful. 

 

#Trailhead Challenges  #Trailhead

3 answers
0/9000

I am signing in to my Developer Org but it's unfortunately not working and giving me back this error: Step not yet complete in grace.helmer+manufacturingtrailhead@salesforce.com

Make sure you created and connected to the Developer Edition org with Messaging.

 

 

#Trailhead Challenges

3 answers
0/9000

am try to earm point but is still  errors :"Challenge not yet complete in longnh77@abc.com

The 'AccountTrigger' isn't calling the AccountTriggerHandler class correctly. Double check the instructions and make sure you're using the isBefore or isInsert context variables in your trigger." 

-- Apex class:  

public class AccountTriggerHandler { 

    public static void CreateAccounts(List<Account> accounts) { 

        for (Account acc : accounts) { 

            acc.ShippingState = acc.BillingState; 

        } 

    } 

---Apex trigger: 

trigger AccountTrigger on Account (before insert) { 

    if (Trigger.isBefore && Trigger.isInsert) { 

        AccountTriggerHandler.CreateAccounts(Trigger.new); 

    } 

---- Apex Test class: 

@isTest 

public class AccountTriggerTest { 

    @isTest 

    static void testShippingStateCopiedFromBillingState() { 

        List<Account> accountList = new List<Account>(); 

        for (Integer i = 0; i < 200; i++) { 

            accountList.add(new Account(Name = 'Test Account ' + i, BillingState = 'CA')); 

        } 

 

        insert accountList; 

 

        // Fetch the inserted records to verify 

        List<Account> insertedAccounts = [SELECT Id, ShippingState FROM Account WHERE BillingState = 'CA']; 

 

        // Assert all ShippingState values 

        for (Account acc : insertedAccounts) { 

            System.assertEquals('CA', acc.ShippingState, 'ShippingState should be copied from BillingState'); 

        } 

    } 

 

-------------------- 

I try to use 3 org but still error :(( 

 

 

#Trailhead Challenges

1 answer
  1. Today, 8:26 PM

    Hi , 

     

     

    Use Trigger.isBefore and Trigger.isInsert like this:

    trigger AccountTrigger on Account (before insert) {

    if(Trigger.isBefore && Trigger.isInsert) {

    AccountTriggerHandler.CreateAccounts(Trigger.new);

    }

    }

     

    https://github.com/DataSolveProblems/Salesforce-Trailhead/blob/master/Write%20an%20Apex%20trigger%20that%20modifies%20Account%20fields%20before%20inserting%20records/AccountTrigger.apxt

     

     

    https://trailhead.salesforce.com/trailblazer-community/feed/0D54V00007T4QvcSAF

0/9000