Skip to main content

#TrailblazerCommunity176 discussing

I am inline of doing consumer goods cloud certification. I am not able to find exam prep trail link. can someone please point? Thanks. 

 

#TrailblazerCommunity

5 answers
0/9000

Hi Trailblazer Community,

I am trying to complete the badge "This Badge Requires a New Custom Predictive Models in Model Builder Playground", but I'm unable to proceed because the playground creation is failing.

I am receiving the following errors:

And when I click Create Playground, I get:

What I have already tried:

  • Refreshed the page
  • Logged out and logged back in
  • Tried a different browser
  • Cleared browser cache
  • Waited and retried

 

Unable to Create Predictive Models in Model Builder Playground

 

 

Unfortunately, the issue still persists.

Has anyone else experienced this problem recently? Is there any workaround, or is this a known issue that requires a fix from the Trailhead team?

Any help would be appreciated. 

 

Thank you! 

 

#Trailhead Challenges  #Trailhead  #Data360  #Data Cloud  #TrailblazerCommunity

13 answers
0/9000

Comunidad buenas tardes, 

Quien ha rendido el examen de Administrador de Salesforce Certificado en español? Quisiera saber la complejidad del mismo, y si tienen algun curso efectivo de preparación en español por favor.. Gracias 

 

#Salesforce Admin  #TrailblazerCommunity  #Certifications

1 answer
  1. Aug 21, 4:46 PM

    Hola Juan, 

     

    El examen en sí (preguntas del examen) sí está disponible en español (LATAM), así que podés rendirlo directamente en ese idioma sin problema, la traducción del examen la hace Salesforce oficialmente. 

     

    Para preparación, el trailmix oficial de Salesforce es este, y también tiene versión en español (LATAM): 

    https://trailhead.salesforce.com/es-MX/users/strailhead/trailmixes/prepare-for-your-salesforce-administrator-credential

     

     

    Un detalle importante: aunque el trailmix esté en español, los desafíos prácticos (hands-on challenges) por ahora solo están traducidos en un grupo limitado de módulos prioritarios (japonés, español LATAM y portugués BR), el resto sigue solo en inglés. Si al hacer un challenge en español te falla la validación, probá cambiando el idioma/región de tu Trailhead Playground a inglés (US) y repetilo con las instrucciones en inglés, a veces la traducción del challenge queda desactualizada respecto al inglés original. 

     

    Sobre la complejidad, la Guía Oficial del Examen (Exam Guide) en Trailhead es el recurso más confiable para saber exactamente qué porcentaje de preguntas corresponde a cada tema (seguridad, automatización, datos, etc.), vale la pena revisarla antes de armar tu plan de estudio. 

     

    Referencia:

    https://trailhead.salesforce.com/content/learn/modules/trailhead-in-your-language/use-translation-resources-in-your-learning-journey

0/9000

Hey #AwesomeAdmins - Setup with Agentforce is GA!   

 

 

On April 15 at True to the Core,

@Zachary Banks

asked a simple but important question about Setup with Agentforce. 

 

Yesterday, May 26, just 41 days later, we announced General Availability and provided an answer to his question - we will not consume Agentforce Credits. 🚀 

 

That timeline matters because it reflects something I’m incredibly proud of: we’re listening. 

 

Huge thank you to everyone who shared feedback, asked hard questions, and helped shape the product along the way. The community input genuinely influenced the direction of what we built. 

 

 

Read more about the GA announcement here:

https://admin.salesforce.com/blog/2026/setup-with-agentforce-is-generally-available

37 comments
  1. Yesterday, 12:46 PM

    That is Great, this would help a lot of admin activity to complete in short time.

0/9000

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

2 answers
  1. Yesterday, 5:08 AM

    Hi @Deepak Sharma, great question. 

    In most real-world Salesforce development scenarios, I usually prefer Map<Key, List<T>> when grouping SOQL results because it provides quick access to records based on a key and keeps the code clean and maintainable. 

    For example, grouping Contacts by Account: 

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

      

    for (Contact con : [  

        SELECT Id, AccountId, Name  

        FROM Contact  

        WHERE AccountId != null  

    ]) {  

        if (!contactsByAccount.containsKey(con.AccountId)) {  

            contactsByAccount.put(con.AccountId, new List<Contact>());  

        }  

        contactsByAccount.get(con.AccountId).add(con);  

    }  

     

    I would mainly use List<List<T>> when there is no meaningful key and the requirement is more about processing records in ordered groups or chunks, such as splitting records into batches. 

    From a governor-limit perspective, the collection type itself is usually not the biggest concern. The important things are SOQL/DML limits, heap size, bulkification, and avoiding SOQL/DML inside loops

    So my rule of thumb would be: 

    • Group and lookup by key ->Map<Key, List<T>> 
    • Process ordered chunks/batches -> List<List<T>> 
    • Store unique values ->Set<T> 
    • Need aggregate/grouped results directly from SOQL -> GROUP BY 

    Thanks for bringing up this practical topic. These collection choices make a big difference in keeping Apex code scalable and maintainable. 

0/9000

Within work queue, it used to be possible to delete/mark as read individual items from "my feed". Now, our agents have to open each notification individually to "read" it and remove the notification. 

 

They get so many per day that it's not possible to go in to each one each time. It seems this changed recently but i see nothing about this anywhere.  

 

#Salesforce Admin  #Work Queue  #Salesforce  #TrailblazerCommunity

6 answers
  1. Aug 19, 7:08 PM

    @Curtis Hale and @Kundan Kumar Jha  

     

    I had a case in for this issue. Here is the response from Salesforce Support: 

      

     "Based on our investigation, the current behavior appears to be working as designed following a recent product update. We confirmed that this is not related to user permissions, profiles, or configuration changes in your Salesforce org. 

     

    The update introduced changes to the My Feed experience, including: 

     

    The red “X” previously used to dismiss individual feed items is no longer displayed. 

    The Open Count is also no longer shown. 

     

    Users can continue to view and filter their My Feed notifications; however, the option to manually dismiss individual items is no longer available in the updated experience. 

     

    This behavior is consistent across users and has also been observed in other Salesforce orgs following the update. Based on the information currently available, it does not appear to be an org-specific issue or product defect. 

     

    Additional information about the related product changes is available in the Salesforce Release Notes: 

     

    https://help.salesforce.com/s/articleView?id=release-notes.rn_sales_sales_engagement_on_core.htm&release=262&type=5

     

    We understand that the removal of the dismiss option affects how your users manage their daily notifications, and we appreciate you bringing this change to our attention." 

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

Dear Community, 

 

I am not able to access my LSC Trail ORG. It was extended till 2027 JUNE 1st by Partner support team but now I am seeing below error:  

"Sign up failed. No assigned org found for the provided email and event code". 

 

I raised the Support case but didn't help. 

 

Any body faced this issue or any inputs to resolve this issue? 

 

Thanks, 

Guru 

Not able to access LSC trial ORG

 

 

LSC Trial Org extended.png

 

@Trailblazer Salesforce @Salesforce Trailhead @Life Sciences Trailblazer Group -Virtual

  

 

#Trailhead  #Salesforce Developer  #TrailblazerCommunity  #Trailhead Challenges

1 answer
  1. Aug 19, 7:56 AM

    That specific error, 'No assigned org found for the provided email and event code,' almost always means you are going through the sign-up flow again for an org that already exists, rather than just logging into it. A sign-up link / event code is one-time: it provisions the org once and will not re-run, and extending the org's expiration does not re-arm the sign-up link. So the flow you used to create it originally will not work a second time. 

     

    Two things to try: 

    1. Do not re-sign-up, log in directly. Go to

    login.salesforce.com

    (or the org's My Domain URL if you have it) and sign in with the username you created for that LSC org (usually your email with a suffix, and the org has its own password). If you do not remember it, use 'Forgot Your Password' on that login page against the username. The org still exists (it was extended to 2027), so direct login is the path, not the sign-up link. 

    2. Confirm you are using the exact email the username is tied to. The error keys on 'email + event code,' so an alias or different-case email will not match. 

     

    If direct login genuinely fails (the username is not recognized at all), then the org may have been unassigned on the backend despite the extension, and re-signup cannot fix that. In that case escalate back through the SAME Partner Support channel that extended it to 2027 (not general Trailhead support), and give them the org Id and the original sign-up/event details, they can see whether the org is still assigned to your Trailblazer account. 

     

    Most likely it is number 1 though, the org is fine and you just need to log in directly instead of re-running sign-up. 

     

    Hope that gets you back in!

0/9000
1 answer
  1. Aug 18, 6:44 PM

    Hi @Julie Maris Kemena

     

    Yes, the Personal Best feature has been

    retired/removed from the standard bundle in recent versions of the ActivityLWC package. It was decoupled to optimize performance and reduce SOQL query overhead.

    If needed, the functionality must now be implemented as a separate, custom LWC card rather than an out-of-the-box setting.

0/9000

Welcome to the #TrailblazerCommunity! 👋 Take a moment to introduce yourself below. 💙 

 

Tell us all about YOU:

What are you passionate about? 

What are you looking to learn? 

Where are you located? 

 

Feel free to connect with others in the thread! 👇 

 

UPDATE: To mute this post, click on the arrow on the top right then "Mute."

2,013 comments
0/9000