Skip to main content

#Trailhead612 debatiendo

 Hi Trailblazer Community, 

I’m working on the Trailhead project “Enhance Agentforce to Act on Data with Conversational Language.” 

I’m trying to open the Create Check-in Guest Event Flow from Setup → Flows, but Flow Builder shows this error: 

 

The Flow is available and shows 

Draft – Version 1

. I’ve also tried refreshing and reopening it, but the issue persists. 

  

Has anyone faced this issue or knows how to resolve it without recreating the Flow?

 

https://trailhead.salesforce.com/content/learn/projects/connect-data-cloud-to-copilot-and-prompt-builder/enhance-copilot-to-act-on-data-with-conversational-language

Unable to Open “Create Check-in Guest Event” Flow – Error ID -1608130020

  

Thanks! 

  

#Data360  #Trailhead Challenges

 

 

#Trailhead

2 respuestas
  1. Hoy, 15:19

    the banner indicates or backend buy on the trailhead side where the team is actively working to resolve assessment or playground request errors

0/9000

Following the instructions in "Enable Digital Experiences and Set Up Messaging" I keep getting this message when clicking the "Verify step to earn 100 points": 

"Step not yet complete in MIAW Org

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

 

Since I'm new to Salesforce and the Digital Experiences I'm not sure what went wrong and how to fix it. 

I tried to delete and start over - but when trying to delete the routing configurations it says I don't have permission to do that action - so I'm kind of stuck at this point. 

 

#Trailhead Challenges  #Trailhead  #Digital Experience  #Messaging

0/9000
1 respuesta
  1. Eric Burté (DEVOTEAM) Forum Ambassador
    Hoy, 13:37

    Hello @Eduardo Vitor if you want a field with auto numbering, please do not select a formula field (as shown in the screenshot) but an auto number field type instead (when creating the field). You would be then able to determine the format of this auto number. Eric

0/9000
Deepak Sharma ha preguntado en #Apex

Hi Trailblazers, 

 

In an Apex implementation, I need to group and process records dynamically and I’m evaluating nested collection approaches such as:

List<List<String>> groupedData;

and

Map<String, List<String>> groupedData;

For record grouping, Map<Key, List<T>> seems more practical, but I’d like to understand:

  • When would List<List<T>> be a better choice in a real-time project?
  • Are there any performance or governor-limit considerations?
  • What approach do you generally prefer when grouping SOQL results?

Would appreciate any real-world examples or best practices.

Thanks !!.  

 

#Apex  #Salesforce Developer  #Trailhead  #TrailblazerCommunity

1 respuesta
  1. Hoy, 12:51

    Hi Deepak - for grouping, Map<Key, List<T>> is almost always the right call. List<List<T>> is rarely right for grouping because you lose the key (no O(1) lookup - you would have to scan to find a group). 

     

    When to prefer each: 

    - Map<Key, List<T>>: anytime you group BY something, e.g. Map<Id, List<Contact>> keyed by AccountId. O(1) lookup, keys auto-dedup, and it is the bulkification backbone in triggers. 

    - List<List<T>>: only when there is no meaningful key and the split is positional - fixed-size chunks for a callout that takes N records per request, or partitioning work across async jobs. You just iterate the sublists, never look up by key. 

     

    Governor / performance: 

    - The limit that actually bites is HEAP (6 MB sync / 12 MB async), driven by how many records you hold in memory, not the collection shape. Map's key overhead is negligible. 

    - Map's real win is avoiding nested loops: correlating two lists via a Map is O(n); scanning a List<List<>> to find a group re-introduces O(n-squared). That is the real consideration. 

    - Neither changes SOQL/DML limits - those depend on bulkifying, which you do either way. 

     

    Pattern I use for grouping SOQL results: 

    Map<Id, List<Contact>> byAcct = new Map<Id, List<Contact>>(); 

    for (Contact c : [SELECT Id, AccountId FROM Contact]) { 

      if (!byAcct.containsKey(c.AccountId)) byAcct.put(c.AccountId, new List<Contact>()); 

      byAcct.get(c.AccountId).add(c); 

     

    Two more: for a true parent-child group, a subquery like [SELECT Id, (SELECT Id FROM Contacts) FROM Account] groups it at the query level - often cleaner. And for two dimensions, Map<Key1, Map<Key2, List<T>>> stays keyed and O(1). 

     

    Net: default to Map<Key, List<T>> for grouping; reach for List<List<T>> only for keyless chunking. 

     

    If this helps, please mark it as the Best Answer so it helps the next person - thanks :)

0/9000

I completed the "Prepare for Your Administrator Certification Exam (CRT101)" course on August 10–11, 2026, and I still haven't received my certification voucher via email. What should I do? 

 

#Certifications  #Trailhead  #Virtual Courses  #MuleSoft Training & Certification

0/9000

 Hi, 

Could you please give me a

hint

on how to center (if possible) all values in the table? 

I want to

align them all vertically. Right now it depends on

the width of the numbers. 

I know it's not strictly a table as it's continuous, but it must stay as is  

 

#Tableau Desktop & Web Authoring  #Trailhead  #Salesforce

3 respuestas
  1. Hoy, 8:53

     This would be a valid solution if I had only two columns. In my case, as shown in the screenshot, there are many columns. In one of them, I am showing three values with ▼ ▲ symbols between them. If the values were the same size, they would align correctly, but they are not. I have no clue how to fix it.

0/9000

Hello Everyone, 

I am looking for a

voucher for the Salesforce Platform Developer I (PD1) certification. If anyone has a free or discounted voucher available, I would really appreciate it if you could kindly share it with me.

Email: vijaykokate38@gmail.com

#Free Vouchers #Discount Voucher #Salesforce Developer #Salesforce Platform  #Trailhead Challenges #Voucher Coupon    #Discount Vouchers #Voucher Code #Trailhead Challenges #Trailhead

0/9000

Unable to Reset Password After Changing Email – Lightning Login Trailhead Challenge

Hi Trailblazers 👋

I’m currently working on the Trailhead challenge “Enable Lightning Login and Test Using the Salesforce Authenticator App”, and I’m stuck while trying to log in as Brochan Pane.

Here’s the issue I’m facing:

  1. I changed the email address for Brochan Pane successfully.
  2. I received the email verification link on the new email address.
  3. I clicked the verification link and verified the new email successfully.
  4. However, when I try to reset Brochan Pane’s password, the password reset email is still being sent to the old email address.
  5. Because I don’t have access to the old email address, I’m unable to reset the password and continue with the Lightning Login challenge.

I have tried changing the email again and verifying it, but the password reset email still goes to the previous email address.

Has anyone faced this issue in a Trailhead Playground?

 

Is there any additional setting or step required to make Salesforce send the password reset email to the newly verified email address?

Any guidance would be greatly appreciated. 

Thanks in advance!

 

 

#Trailhead Challenges  #Salesforce Admin  #Trailhead

16 respuestas
  1. 19 ago, 23:26

    @Sahil Gupta

     is cancel option showing besides Lightning Login in Brochan's user record? 

     

    If this is also the same, then I think the setup is correct. Not sure why the challenge is failing. 

     

    Last option would be to sign up for a new org from the 

    link -> Change Brochan's email to your email and also set the password -> Enable the Lightning Login option from setup -> Create the two PS as asked in the module: Lightning Login User 

    MFA Authorization for Break Glass Admin 

    -> Assign both the PS to Brochan -> Enroll Brochan to Lightning Login and login as passwordless 

     

    Try to validate the challenge again. Just validate the specific module where you are stuck, no need to validate the previous steps which are passed already. These are the steps I followed yesterday and it passed the challenge. Good luck. 

     

    Thanks. 

    Abhishek

0/9000

Not able to find Get Celebration Details flow in the Refine Your Prompt Template for Accurate Agent Replies of Agentblazer Legend 2026 

 

Not able to find Get Celebration Details flow in the Refine Your Prompt Template for Accurate Agent Replies of Agentblazer Legend 2026

 

 

 

#Trailhead Challenges  #Trailhead  #Agentforce

4 respuestas
0/9000

What’s your favorite Salesforce feature for improving productivity?  

I’m exploring different Salesforce features and looking for ways to make everyday workflows more efficient. There are so many tools available that it can be difficult to know which ones are actually worth using.

What Salesforce feature, automation, or integration has made the biggest difference in your day-to-day work? 

 

#Trailhead Challenges  #Trailhead  #Agentforce  #Salesforce Developer  #Tableau Desktop & Web Authoring  #TrailblazerCommunity

0/9000