Skip to main content Salesforce and Tableau exam registrations are now closed through July 21st. Learn more about the new Salesforce certification experience coming soon.

Feed

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

Is there any way we can add LWC component in Utility bar without adding its Label & Icon in order to make it hidden in Utility Bar ?

3 answers
  1. Today, 8:25 PM

    I found better solution now :  

     

    When u add utility Items on Utility bar Label is required field but you can add Zero Width Space character.    Copy it from this link :

    https://unicode-explorer.com/c/200B

    .     

     

    paste  it in label field. This will not be visible to end user. 

    Do not  select icon which is optional anyway. 

    keep Panel width, height minimum &  

    Now this LWC is hidden on Utility bar, it will still clickable but apparently not visible 

     

     

0/9000

I'm working on the "Lighting Experience Customizations" for the "Customize Record Page Components and Fields" challenge, but I'm running into a couple of issues.

  1. My page doesn’t look the same as in the challenge. It’s asking for the Related and Details tabs to be on the same row so I can switch between them easily, but I can't figure out how to get that setup. Any idea what I might be missing or what I need to change?
  2. I'm a bit confused about what to do once I fix the first issue. It says to "use the contact layout as the source for the fields," but I don't see anything showing up that I can use, and there’s nothing I need to remove. Can you walk me through what comes next?

  

How do I

 

 

Screenshot 2025-07-05 at 12.53.45 PM.png

 

 

 

#Trailhead Challenges

0/9000

while @mention Customer, there are two customers with same First and Last name, so I am not able to differentiate whom to select. Is there a way to expose any other info along with their Full name i.e, alias or Ttitle , so that one can easily identify whom to select 

2 answers
  1. Today, 8:05 PM

    @Kundan Kumar Jha - Swapping the First & Last name does not make a good digital experience for an end user, especially when it comes to a portal which connects a business with their customers and also drives its business. Appreciate your suggestion, but this will not work for us.

0/9000

I am thinking the right answers are B and C, but I am not pretty sure about this. Is there anyone who can help me to find out the answer for this question? 

 

A customer is developing a new eCommerce section of their website and plans to leverage transactional data in customer journeys. 

Which two Marketing Cloud features will support this effort? Choose 2 answers

A. Data Designer

B. Cloud Pages

C. Web Analytics Connector

D. Content Builder

8 answers
  1. Lukas Lunow (CloudWise) Forum Ambassador
    Today, 7:58 PM
    @Swapnil Khangar Web Analytics Connector does none of this. It is mainly used to automatically append URL parameters (such as utm_campaign) to all the email links, making attribution and reporting easier in Google Analytics: https://digitalmarketingoncloud.com/reporting/understanding-tracking-across-marketing-cloud-and-google-analytics/
0/9000

I know how to open the fields panel of a dataset and "add" a derived measure or dimension. All it does is add the field name I provide but there is no data associated with it and it can't be used in queries. How do I set up derived dimensions/measures? Is there documentation or videos related to this aspect of CRMA?

3 answers
  1. Today, 7:04 PM

    I don't know where to find more information about derived measures and dimensions - but consider it to be mainly useful when you create (derive) new dimensions or measures in a SAQL statement.

    Let's say you calculate a winrate in SAQL in several places of your dashboard, so it's not part of the dataset itself. If you want to make sure that the winrate is always displayed as %, you can add a derived measures with name winrate and assign the number format for percentage - as soon as the name of the derived measures matches the projection name of the measure in SAQL, the number format will be applied.

    Same is for derived dimensions, where you could assign colors to given values. Unfortunately, the creation of the values (called members) has to be done in a json editor - the UI to do this is still missing.

0/9000

Hi, 

We have a landingpage where people can subscribe to a newsletter, and on it we have a lead-form. 

One of the required fields is the 'status' field.  

But we can't expect clients to choose their own lead status. 

Is there a way to pre-fill this or another work-around?  

Thanks!

2 answers
  1. François Perret (Bamsoo) Forum Ambassador
    Today, 7:27 PM

    @André Denzler

     

    Hi André, 

    Yes, you are correct, you should not expose Lead Status in your Form. The Status Field may actually be mandatory in the Create Record activity. That being said, its value does not have to come from the Form, so you may simply set it in the Flow with the value you wish. 

     

    Hope this helps 😎 

    #SharingIsLearning

     

    François. 

     

    PS : In order other Trailblazers to be pointed directly the correct answer, please do not forget to click “Accept this answer” below the correct one.

0/9000

HI All, 

 

This must be fairly common. We are using the new MIAW chat, and when a customer sends an attachment, we would like it to be linked to both the case and the account. 

 

I appreciate this might require some custom development with a flow or APEX just wanted to understand the correct process. 

Thank you, 

GC 

 

#Salesforce Developer  #Messaging Session

3 answers
  1. Today, 7:26 PM

    Hi @Giancarlo Amati

    - I have done same kind of automation last year for one of our accounts. For this you need to simply write a trigger on ContentDocumentLink object - because this object is acting as a junction between your contentDocument(File) and any other Object (LinkedEnitity) like case or account via LinkedEntityId field. 

    You need to first filter out the contentDocumentLink record which is incoming from Chat (you can make use of LinkedEntityId here as it will be of MessagingSession recordId) and then you just need to insert 2 new ContentDocumentLink record adding LinkedEntityId for Case and Account (you can get Case Id and Account Id from MessagingSession record). 

    This way you can easily link the same File with MessagingSession, Case and Account records. This is tried and test approach. Hope this will solve your problem. 

     

    Also, you can try for Flow if you want to go via No code approach. I like pro code approach coz it gives more flexibility so I went with trigger approach.  

    Also, not sure if we can write a record triggered flow on ContentDocumentLink Object. I'll leave that POC for you :) 

     

    Hope this solves your problem. Thanks!

0/9000