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.

In DEBUG LOG this error is coming - The number of results does not match the number of interviews that were executed in a single bulk execution request.

public class InputWrapper {        @InvocableVariable(label='JSON Payload')        public String payload;    }    public class OutputWrapper {        @InvocableVariable public String firstName;        @InvocableVariable public String lastName;    }    @InvocableMethod(label='Parse Member JSON Payload')    public static List<OutputWrapper> parse(List<InputWrapper> inputs) {        List<OutputWrapper> results = new List<OutputWrapper>();        for (InputWrapper input : inputs) {            Map<String, Object> dataMap = (Map<String, Object>) JSON.deserializeUntyped(input.payload);            OutputWrapper result = new OutputWrapper();            result.firstName = (String)dataMap.get('Individual__dlm_FirstName__c');            result.lastName = (String)dataMap.get('Individual__dlm_LastName__c');                                 results.add(result);        }        return results;    }

This is the apex code format I am using to parse payload. Can anyone help on this.  

 

#Flow  #Data Cloud  #Flows  #Bulk Insert Records  #Platform Events Triggers  #Platform-events

2 answers
0/9000
  •  

    Unified Link 1

    • The field "SourceRecordId__c" for the object "UnifiedssotIndividualCcid__dlm" doesn't exist.
    • The element has an invalid reference to "UnifiedssotIndividualCcid__dlm.SourceRecordId__c".
  •  

    Unified Link 2

    • The field "UnifiedRecordId__c" for the object "UnifiedssotIndividualCcid__dlm" doesn't exist.
    • The field "ssot__DataSourceObjectId__c" for the object "UnifiedssotIndividualCcid__dlm" doesn't exist.
    • The element has an invalid reference to "UnifiedssotIndividualCcid__dlm.UnifiedRecordId__c".
    • The element has an invalid reference to "Unified_Link_1.UnifiedRecordId__c".
    • The element has an invalid reference to "UnifiedssotIndividualCcid__dlm.ssot__DataSourceObjectId__c".
  •  

    Reservation 1

    • The element has an invalid reference to "Unified_Link_2.SourceRecordId__c".

 

 

#Trailhead Challenges

0/9000

We are thinking about enabling Ideas in our site, but I can't find much info about this beyond the documentation. I'm looking to see if anyone else has enabled this and if so, curious to see how you're using it.

2 answers
  1. Today, 9:51 AM

    Hey @Courtney MacRae

     

     

    Ideas do not really work on Experience Cloud out of the box. We provide the most advanced app for Ideas on Experience Cloud - AC Ideas Ultimate . 

    We provide ton of features 

    -prioritisation 

    -deduplicatio 

    -JIRA integration 

    -support for LWR and Aura communities 

     

    https://www.youtube.com/watch?v=gyMjAw1DtTE

     

    https://www.youtube.com/watch?v=G3gy45eQVBU

     

    https://appexchange.salesforce.com/appxListingDetail?listingId=a0N4V00000FguKaUAJ

     

    https://advancedcommunities.com/products/ac-ideas-ultimate/

     

     

    Please

    get.in touch if interested.

0/9000

I began learning Salesforce development on Udemy. I stopped at the code-bulkification concept about 5 months ago and want to resume my journey again. However, when I tried resuming from code-bulkification, I realized that I had lost my proficiency in the development basics. Can anyone help me clear this roadblock in my journey? Thanks! 

2 answers
  1. Eric Burté (DEVOTEAM) Forum Ambassador
    Yesterday, 4:15 PM
0/9000

I'm doing the trail (in German: Steigern der Produktivität mit Salesforce AI) and the project ( Erweitern von Agentforce, um in natürlicher Dialogsprache auf Daten zu reagieren) 

 

There is now "new field". How do I get the field to proceed my project? 

 

 

I don't have the new field

 

 

 

#Trailhead Challenges

2 answers
  1. Today, 9:50 AM

    Hi Logesh M,  

    thanks for your feedback. 

     

    No not exactly. I clicked on "new version" and after this step I should click on "new" but the "new"-field is missing. 

     

0/9000

Hi everyone, 

We are currently working on developing an offline-capable Lightning Web Component (LWC) that displays related records of Object A on the detail page of Object B. The goal is to ensure that users can view and interact with these related records even when they are not connected to the internet.

Approach 1: Using GraphQL

Initially, I explored using GraphQL to fetch the related records. However, I encountered performance issues when the number of records exceeded 10. The response times became noticeably slower, which is not ideal for an offline experience.

Approach 2: Implementing Cacheable Apex

To address the performance concerns, I transitioned to using a cacheable Apex method. This approach improved performance by leveraging client-side caching, allowing for faster data retrieval. However, I faced a new challenge when attempting to update records using the updateRecords function from Lightning Data Service (LDS).

Issue with updateRecords in Offline Mode

When operating in offline mode, I observed that only 1 or 2 related records were being updated, despite the intention to update all 4 related records. This inconsistency in behavior suggests that the updateRecords function may not be fully compatible with offline scenarios, possibly due to limitations in how LDS handles data synchronization when offline.

Request for Guidance

I am seeking advice on how to effectively implement offline support for updating related records in LWC. Specifically, I would appreciate insights into:

  • Best practices for using LDS's updateRecords function in offline scenarios.
  • Alternative approaches for updating related records offline, such as utilizing the Mobile SDK's entity framework for offline data management.
  • Recommendations for ensuring data consistency and synchronization when transitioning between online and offline states.

Any guidance or resources you can provide would be greatly appreciated. 

Please let me know if codebase files are needed here.   

 

@Irfan Syed, @Adam Liechty, @Amber Craig, @Ashwin Nair, @Saket Agarwal

3 answers
0/9000
1 answer
  1. Eric Burté (DEVOTEAM) Forum Ambassador
    Today, 8:40 AM
0/9000

I want to attend this years Dreamforce and also do a bootcamp upfront. I read that on the third day there is a examination timeslot, but it is not clear for me which of the tracks lead up to a certification. Admin (Advanced) and Data Cloud Consultant I know, but for example the Flow builder or the Agentforce Specialist for Service track I am not aware of one. 

What certifications can be taken during the bootcamp? For the

Dreamforce exams

I know. 

 

I hope anyone knows, so I can better decide which bootcamp to take. 

 

Kind regards and hope to see you in SF. 

 

Wilbert

0/9000

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

We can't find that authentication credentials can dynamically adapt to new credentials when rotated for the 'Secure Research' external credential. 

 

In Named Credentials Superbadge Unit Challenge 1 getting this error.  

Can someone help in this? 

 

#Trailhead Challenges  #Trailhead Superbadges

11 answers
  1. Today, 8:46 AM

    Hi @Saumya Verma, I am running into the same issue... did you configure them on External Credential, or on both Named and External Credentials? 

0/9000

Challenge not yet complete in My Trailhead Playground 1

Make sure that ‘Contact Record Page’ has been upgraded to use Dynamic Forms. 

 

I have completed upgrading and also removed and replaced fields which are mentioned but still says that it is not upgraded to use dynamic forms. 

 

#Trailhead Challenges

5 answers
  1. Eric Burté (DEVOTEAM) Forum Ambassador
    Today, 8:42 AM

     @SRUJAN KUMAR GUDALA strange, could you please share some screenshots ? Eric

0/9000