Skip to main content A new Salesforce certification experience is coming July 21st. Discover how exams will be delivered in Pearson VUE, what it means for you, and ways to prepare. Learn more.

Feed

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

I'm receiving an error for challenge 3, although I've done everything right. But I'm probably missing the obvious. Please help.     Challenge Not yet complete... here's what's wrong:  We can’t find the 'Executive Performance and AI Readiness' dashboard with the proper viewer configuration.   

5 answers
  1. Today, 5:24 PM

    If still encountering this issue, please change View Dashboard As. 

    I've resolved that by that configuration. 

    If still encountering this issue, please change View Dashboard As. I've resolved that by that configuration.

     

     

0/9000

I have a recurring issue where client users who only have access to one community / experience are somehow being directed to and trying to log in to a different community.  

I have set the default experience for the user profile but it hasn't helped. 

Has anyone else had this issue?

2 answers
  1. Today, 5:07 PM

    There is a standard Apex Class "CommunitiesLandingController" in Each Org which tells where a Site User need to be redirected. I don't know whether this will help you or not. If Amir Kumar's suggestions didn't work, try this one.

0/9000

Enhance Agentforce to Act on Data with Conversational Language in that module in flow label  after selecting Unified Link 1 and choosen Data Cloud Object.next default option dropdown  is  not working and For Object, choose Unified Link Individual ccid giving "select valid option only". 

 

#Trailhead Challenges

0/9000
  1. Click the Setup icon, then click Setup.
  2. Type flows in the search, then click Flows (under Process Automation).
  3. Click Create Check-in Guest Event.
  4. Click the Unified Link 1 element, then click Edit Element.
  5. For Data Source, choose Data Cloud Object.
  6. For Data Space, choose default.
  7. For Object, choose Unified Link Individual ccid

    Be sure to choose the right object, there are a few that have similar names.

in the above flow  in data cloud object For Data Space, choose default. the default option is not present at that place  and also Unified Link Individual ccid also not present

 

 

#Trailhead Challenges

0/9000
0/9000

1: Few questions are not similar to trailhead quiz is that true? 

2: Other than trailhead, are there other websites where we can get the study material to clear the exam? 

3: Please provide some link to attend the mock test 

4: I am planning to take an exam from webassessor please reply to me if anybody has tried/cleared the exam via webaccessor  

 

#Certifications

0/9000

I have some very rear request from business to build and automate a report via apex code. Is this possible in salesforce or if yes then how please help me out.

4 answers
  1. Today, 3:03 PM

    Also, for Reports & Dashboard, I would suggest using the CRM Analytics Slack App for this. When you have standard ways to do something, why go the custom route. :) 

0/9000

Step not yet complete in My Trailhead Playground 1

We can't find the formula field 'Commission__c' on the Opportunity object. 

 

#Trailhead Challenges

3 answers
  1. Today, 3:01 PM

    so wired i called tha good names  

    and i did everything good 

    int even show me that i cant do that name again 

0/9000

Executing the method 'getAccount' from the Apex class 'AccountManager' failed. Either the service isn't configured with the correct urlMapping, is not global, does not have the proper method name or does not return the requested account and all of its contacts. 

 

@RestResource(urlMapping='/Accounts/*/contacts')

global with sharing class AccountManager {

@HttpGet

global static AccountWrapper getAccount() {

RestRequest request = RestContext.request;

String fullURI = request.requestURI;

// Extract the Account Id from the URL: /Accounts/{id}/contacts

String trimmed = fullURI.replace('/services/apexrest/Accounts/', '');

String accountId = trimmed.substring(0, trimmed.indexOf('/contacts'));

// Query the Account with its related Contacts

Account acc = [

SELECT Id, Name, (SELECT Id, Name FROM Contacts)

FROM Account

WHERE Id = :accountId

LIMIT 1

];

// Prepare the response

AccountWrapper wrapper = new AccountWrapper();

wrapper.accountId = acc.Id;

wrapper.accountName = acc.Name;

wrapper.contacts = new List<ContactWrapper>();

for (Contact con : acc.Contacts) {

wrapper.contacts.add(new ContactWrapper(con.Id, con.Name));

}

return wrapper;

}

// Response wrapper class for Account

global class AccountWrapper {

public String accountId;

public String accountName;

public List<ContactWrapper> contacts;

}

// Response wrapper class for Contact

global class ContactWrapper {

public String contactId;

public String contactName;

public ContactWrapper(String id, String name) {

this.contactId = id;

this.contactName = name;

}

}

}

 

#Trailhead Challenges #Trailhead

2 answers
0/9000