Skip to main content Stream TDX Bengaluru on Salesforce+. Start learning the critical skills you need to build and deploy trusted autonomous agents with Agentforce. Register for free.

Feed

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

In this trailhead step: https://trailhead.salesforce.com/content/learn/projects/connect-data-cloud-to-copilot-and-prompt-builder/bring-external-data-into-the-contact-page-layout?trail_id=unlock-your-data-with-data-cloud

 

I have successfully completed the "Enable Data Streams" section, adding the "AIPlusData" Data Bundle to my org.  However, in the next section, each time I attempt to "Create New Ruleset" (under Identity Resolutions), the Primary DMO picklist is empty, and the dialog displays the error, "Mappings from Data Streams to the standard Cloud Information Model objects such as Individual and Contact Points are required." 

 

This doesn't make sense, since the data bundle included the CRM Contact object and mappings to the Standard DMO objects, including Individual and each of the Contact Point objects.  I reviewed the Data Stream mappings for the Contact Home DLO, and did note one warning for Contact Point Phone because the Formatted E164 Phone field wasn't mapped.  I mapped it and refreshed the stream, but no change in the error message.

 

This is a new "Data Cloud and Einstein 1 Playground" created directly from this trail, today, with no other activity besides following the steps in this Trail.

11 answers
  1. Nov 4, 2024, 5:56 PM

    for me it looks like the DMOs are still in the processing status which I assume is my issue

     

    for me it looks like the DMOs are still in the processing status which I assume is my issue

0/9000

I have a field complaint reason that has depency picklist attached.  I added some values to the depency picklist but I now can get them to show up on the dependcy list so I an include them in the list.  I also can't figure out how to show the full list I select on the depency list on the page layout.   

 

#Salesforce Admin  #Sales Cloud  #Salesforce Developer

2 answers
0/9000

I have a requirement to show the related contact of the same account on the contact detail page and when ever there is change in contact data, upon save it should refresh the related contact which a LWC component. 

 

#Salesforce Developer  #TrailblazerCommunity  #Salesforce  #LWC

4 answers
  1. Today, 7:15 AM

    @Chakori Rashmi

     

    Try like this using wire 

    import { LightningElement, api, wire } from 'lwc'; 

    import { getRecord, getFieldValue } from 'lightning/uiRecordApi'; 

    import getRelatedContacts from '@salesforce/apex/ContactController.getRelatedContacts'; 

    import { refreshApex } from '@salesforce/apex'; 

     

    import ACCOUNT_ID_FIELD from '@salesforce/schema/Contact.AccountId'; 

     

    const FIELDS = [ACCOUNT_ID_FIELD]; 

     

    export default class RelatedContacts extends LightningElement { 

        @api recordId; 

     

        accountId; 

        wiredContactsResult; 

     

        // Get AccountId of current Contact 

        @wire(getRecord, { recordId: '$recordId', fields: FIELDS }) 

        contactRecord({ data, error }) { 

            if (data) { 

                this.accountId = getFieldValue(data, ACCOUNT_ID_FIELD); 

            } 

        } 

     

        // Fetch related contacts from Apex 

        @wire(getRelatedContacts, { accountId: '$accountId', contactId: '$recordId' }) 

        wiredRelatedContacts(result) { 

            this.wiredContactsResult = result; 

        } 

     

        // Handle Save Success - refresh related contacts 

        handleSuccess() { 

            refreshApex(this.wiredContactsResult); 

        } 

     

0/9000

Hi Trailblazers 

 

I am currently stuck at the challenge 1 as it won't pass. 

 

The error that I am getting is  

 

Challenge Not yet complete... here's what's wrong:

The WellnessJourneyRewardsBatch Apex class can't make callouts to an external system.

 

However I was able to run an anonymous apex call that has returned status 201 with no issues. So it's not an issue related to NamedCredentials or the permissionset. Please see attached the code that worked. 

 

I would appreciate if someone had encountered an issue like this to please help me with it. 

 

thanks 

Pradeep 

 

#Trailhead  #Trailhead Challenges

5 answers
  1. Today, 7:14 AM

    Hi, @Pradeep Nair

    That's great news! I'm glad you managed it and can now move forward. 

    If any of my previous answers were helpful, please mark it as the Accepted Answer.  

     

    Sincerely, 

    Mykhailo Vdovychenko 

    Bringing Cloud Excellence with IBVCLOUD OÜ

0/9000

Hi, 

I am going through the Prompt Builder Templates Superbadge Unit in section : Build an AI-Generated Summary of Related Records. 

 

I have completed the following steps and also ensured that the session settings were correct, and I still don't see the Interest Summary field I have created when trying to create the new prompt template. What could be wrong please? 

 

"Your strategy is to create a custom rich text field on the Contact record that will hold an AI-generated summary of all related Fitness records. Create a custom field on Contact called Interest Summary (with the API name Interest_Summary__c), using any description and help text you’d like. 

 

Create a new prompt template called Summarize Client Goals that will generate text for the new summary field, with description text reflecting the purpose of the template. 

 

Tip: If you can’t find the field you just created, make sure you’ve read the Help article and followed the Additional Configuration step about Session Settings." 

 

#Trailhead Challenges

3 answers
0/9000

Hello team,  

I am trying to complete PD1 and after complete challenge i got error mentioned blew. 

I need help to find out solution. 

 

Challenge not yet complete in Wise Badger Playground

We can't find the debug log with the string ‘Hello’. 

 

#Trailhead Challenges

9 answers
  1. Today, 6:59 AM

    @kanchan kanchan That's great news! I'm glad you managed it and can now move forward. 

    If any of my previous answers were helpful, please mark it as the Accepted Answer.  

     

    Sincerely, 

    Mykhailo Vdovychenko 

    Bringing Cloud Excellence with IBVCLOUD OÜ

0/9000
Hello everyone. I just have a question about trying to create a report in Salesforce lightning. I added a picture as an example of what I am trying to do, I'm not sure if it is possible. I want to compare our current closed won deals (won totals) against our sales target by Quarter. I figured out how to make 3 columns as shown in the picture, but it won't let me make a 4th, which is needed as their are 4 quarters in a fiscal year. Also, it is only showing Q1 (which we are in) even though we obviously do not have closed won deals in the future, I would still like Q2 Q3 and Q4 on the chart though the data will show zero. Does anybody have any tips or ideas on how I can make this report? Thanks in advance

 

create an actual vs target report by quarter
7 answers
  1. Today, 6:58 AM

    how did you create the target data?

0/9000

Hi all,

There is a requirement where the client wants to choose a date and on saving the record, the date should be displayed in MM/DD format and the year needs to be omitted. As far as I know, the Salesforce date field does not provide the flexibility to accommodate this format.

 

One Solution would be to create a text field and enforce a validation rule so that the user has to enter the date in the MM/DD format. I would like to know if there is any other solution to implement this?

 

Appreciate all your inputs.

5 answers
  1. Steven Trumble (Skie) Forum Ambassador
    Feb 11, 2024, 7:23 PM

    I'd just make a formula field that returns text.

    MONTH(date field) + "/" + DAY(date field)

0/9000

I solved the last step und have resetet my password & connected to the new Playground but cant check for proving?! What can i do? 

https://trailhead.salesforce.com/de/content/learn/projects/quick-start-build-your-first-agent-with-agentforce/configure-an-agentforce-service-agent

 

Thanks for quick help 

 

#Trailhead Challenges

12 answers
0/9000