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.

 

Even though i deleted and tried many times the error shows up 

and the error is showing near import of the count.js file 

ERROR: 

org.auraframework.throwable.AuraRuntimeException: Unable to retrieve metadata for descriptor: markup://c:__LightningMessageChannel__CountUpdated 

 

 

PLEASE HELP !!!!

Getting error in

 

 

Screenshot 2025-07-17 214347.png

 

 

 

 

 

 

#Trailhead Challenges

3 answers
0/9000

We can’t find the 'Chatter Post to Account Owner' element immediately after the 'Update Matching Account' element.

 

#Trailhead Challenges

1 answer
0/9000

I’m setting up an SMS double opt-in process in MobileConnect within SFMC. I came across the QueueMO API, which simulates an inbound SMS to trigger the confirmation message. 

My question is: 

Do I necessarily need to implement QueueMO for double opt-in if the opt-in is initiated via a web form? 

Or, 

Can I orchestrate the entire double opt-in flow (including sending the confirmation SMS and capturing the "YES" response) directly through Journey Builder? 

Would appreciate insights or references if anyone has achieved this using only Journey Builder! 

Thanks in advance!

0/9000

Hi all,

I’m setting up an SMS double opt-in process in MobileConnect within SFMC. I came across the QueueMO API, which simulates an inbound SMS to trigger the confirmation message.

My question is: 

 

Do I necessarily need to implement QueueMO for double opt-in if the opt-in is initiated via a web form?

 

Or, 

Can I orchestrate the entire double opt-in flow (including sending the confirmation SMS and capturing the "YES" response) directly through Journey Builder?

Would appreciate insights or references if anyone has achieved this using only Journey Builder!

Thanks in advance! 

 

#Marketing Cloud

0/9000

I am trying to create a joined report for Quotes and Orders and I am getting the error attached. Kinldy assist on how to resolve. 

Error Details

"An error occured when running this report. Ensure that Accessibility mode is turned off and that Multiblock reporting is enabled."

4 answers
  1. Oct 8, 2024, 10:28 AM

    Hello @Nyaradzai Martin Shoko

    Please follow the below steps and Disable Accessibility Mode on the user's record page.

     

    Setup-> Administration -> Manager Users -> Find the specific User -> Edit -> Uncheck the 'Accessibility Mode (Classic Only)'  checkbox.

     

    Thanks & Regards 

    Karan Jain

0/9000

Has anyone seen this error? Trying to create a joined report. Accessibility mode is turned off, but where do you enable Multiblock?Joined Report error

5 answers
  1. Jun 28, 2024, 8:35 PM

    To answer my own question for future reference: I discovered that I was working in an older org, and I needed to enable Joined Reports.

     

    Set up > Customize > Reports & Dashboards > Reports and Dashboards Settings

     

    On the User Interface Settings, scroll down to Report Builder Upgrade and click the Enable button

0/9000

I was doing the following exercise. In the second assertion below, I don't see "Value = "High"" in the search box. I have attached a screenshot below. not sure where i'm doing wrong here.   

 

I appreciate

your help.

Create Flow Tests- TrailBlazer Excercise-

 

 

 

 

The Case Priority value is High. 

Error message.png

 

 

Assertion- Value.png

i dont see "High" in the Value search. 

 

 

case priority value- High.png

 

 

 

 

#Trailhead Challenges  #Flow

6 answers
0/9000

Hello Experts, 

 

I have created an Automation rule and there was an update happend when i come to automation rules amd before going inde of rules and view rules i can see the count 42, After entering inside ican see 40 only which are total count.  

Any specific reason why differnces in count ?

1 answer
  1. Today, 4:39 PM

    hi @Narendra G - There can be a possibility that it's not refreshed. you can try pausing the automation rule and resuming the rule again. It should get synced.

0/9000
Since Lightning doesn't have the "Follow-Up Event" functionality from an Event that Classic does - I am trying to provide to my users who are clamoring for it. It is not possible (who new) to do this from a simple Global or Object quick action either (sigh) so I am creating a screen flow.  Running into an issue with the Subject field.  When I add the Picklist element to my Screen, I attempt to use the Picklist Choice Set variable option - but "Subject" is not found in the list of available fields.  Does anyone know why not?  Also - why the heck is this seemingly simple ask so difficult?
3 answers
0/9000

Hello! I am trying to create a validation that blocks all users, expect system admins and two specific users, from creating or moving an opportunity stage into 'Closed Won'. The validation is working by letting System Admins change and blocking other users, BUT it is also blocking the two specific user I do not want it to block. I have triple checked their user IDs and everything is correct, but modifying their actual IDs for security reasons   

 

Here is my validation so far :  

 

AND( 

ISPICKVAL(StageName, "Closed Won"), 

NOT( 

OR( 

$

Profile.Name

= "System Administrator", 

$

User.Id

= "000000000000000000", 

$

User.Id

= "000000000000000000" 

 

Any Tips?  

 

#Validation Rules  #Validation Rule

2 answers
  1. Today, 4:35 PM

    Hi @Kendell Bennick

     

    Make sure that other 2 users are not system admins. If they are not system admin it will block here. You need to add their Id seperately. 

     

    Instead of that you can use custom permissions which will be more beneficial rather than adding Ids in validation rule.  

     

    Formula - 

     

    AND( 

        ISPICKVAL(StageName, "Closed Won"), 

        NOT( 

            OR( 

                $

    Profile.Name

    = "System Administrator", 

                $

    User.Id

    = "005XXXXXXXXXXXX",  /* User 1 */ 

                $

    User.Id

    = "005YYYYYYYYYYYY"   /* User 2 */ 

            ) 

        ) 

     

     

    Thanks

0/9000