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.

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
1 answer
0/9000

Hi, 

 

I'm generating a document using Docusign Gen For Salesforce. I use the repeat tags setup like this to display all the elements of a related list:

<# <Repeat Select="/Incorporation_form__c//Shares_Certificates__r”/> #>

text

<# <EndRepeat/> #>

 

Is there a way for me to make sure that the elements are ordered by a field. Something like the Order By states we would use in a SOQL statement? 

 

Thanks!

2 answers
  1. Today, 2:43 PM

    Hello, 

     

    The order by will sort the table no problem but when I try to add it to a repeat tag, it gives me an error. It's either I don't use the correct syntax or I need to use something else if I want to control the order of generation of the tables.

0/9000