Skip to main content The last day to register for a Salesforce or Tableau exam is June 30th. Learn more about the new Salesforce certification experience coming July 21st.

Feed

Connect with fellow Trailblazers. Ask and answer questions to build your skills and network.
0/9000
1 answer
0/9000

Hi everyone.  

I have a question regarding the Marketing Cloud's SAP domain that's configured.  

I got informed from my company that the domain that is used in Marketing Cloud vulnerable and I was asked to take action promptly.  

When I checked the domain inspection site (

https://www.ssllabs.com/ssltest/index.html

), the domain that is used in my MC, is using TLS 1.2 protocol.  

I think I should upgrade it to TLS 1.3 protocol.  

How can I upgrade it? Do I have to ask the Salesforce team?  

If there is someone who has had a similar experience, I would appreciate it if you could share the details. 

 

0/9000
1 answer
  1. Today, 6:50 AM

    Hello @Tejas Padol

    So let's start... Before we start, make sure you have:

    1. Salesforce CLI installed on your computer.
    2. VS Code set up with the Salesforce Extension Pack.
    3. A Salesforce project (SFDX) open in VS Code.
    4. You’re logged into your org (sfdx force:auth:web:login).
    5. Debug Logs are enabled for your user.

    Now, once all is set. 

     

    Step 1: Run your code to generate a log

    First, trigger the code that you want to debug. 

     You can do this by:

    • Running a test class
    • Executing anonymous Apex
    • Doing an action in the UI (like creating a record that fires a trigger)

    This will create a debug log in your org. 

     

    Step 2: Download the log into VS Code

    In the VS Code terminal, run: 

    sfdx force:apex:log:get --number 1 

    This pulls the latest log file into the logs/ folder of your project. 

     

    Step 3: Open the log with Replay Debugger

    In VS Code:

    • Open the .log file from the logs folder.
    • Right-click and choose “Start Debugging”  

       OR  

       Press F5 while the log file is open.

    This starts the Apex Replay Debugger session. 

     

    Step 4: Set breakpoints in your Apex code

    Open the Apex class (or trigger) you're trying to debug.

    Click on the left side of the line number to set a breakpoint — this is where the debugger will pause so you can check what’s going on. 

     

    Step 5: Use the debugger tools

    At the top, you’ll see familiar buttons like: Continue, Step Over, Step Into, Step Out, and Stop. 

     

    Step 6: Find the issue

    As you step through, look for:

    • Any unexpected null values
    • Logic not being executed
    • Incorrect calculations
    • Or anything that doesn’t behave as expected

    Step 7: Re-test and debug again 

     

    NOTE - Add System.debug() statements in your code. 

     

    I hope that helps. 

     

    Thanks and regards 

    Amit Kumar

0/9000

Hi everyone, 

 I'm trying to configure a custom domain for my Experience Cloud (or LWR) site using the recommended Salesforce CDN option. 

 

I'm a bit confused about how exactly to set this up in my DNS provider (aws route 53). 

Has anyone successfully configured this recently and could share any tips or gotchas? I'm also using a sandbox for initial testing — does that affect the validation process?

Thanks in advance! 

 

#CRM Configuration  #Salesforce Admin  #Salesforce Platform

2 answers
  1. Today, 6:45 AM

    Configuring a custom domain for your Salesforce Experience Cloud (LWR) site with Salesforce CDN involves two main steps: first, adding your domain in Salesforce Setup, where you'll receive a CNAME target. Second, you'll create a CNAME record in your DNS provider (like AWS Route 53) pointing your custom domain to this Salesforce-provided target. Finally, you'll set up a custom URL in Salesforce to link your domain to your specific Experience Cloud site. Sandboxes work similarly for validation, just ensure you select the correct associated org during the domain setup in Salesforce. The key is precise CNAME entry and allowing for DNS propagation time.

0/9000

I have attend the TDX-Event in Bangalore.but somehow i have missed the Coupon email.Can you Resend the emai to whom can i reach out do please let me known poc for this? 

 

#Certifications

1 answer
0/9000

I have screen flow to enter case details. In screen compoent, I have created couple of picklist fields.  

There are two picklist field Creative Type and Length 

My requirement is: 

If Creative Type = Carting, let user to select value from Length field. However if Creative type = "Credit", Length should have auto populate value "10" and disable it. It is working fine. I created another picklist component with only value with "10" and apply conditional visiblit based on Creative type.  

 

The problem is: 

if User select Carting as Creative Type and Length = 15 and click on Next button. Now if click on Previous screen, and change creative type to "Credit", lenght picklist is disable to edit but it is blank. It suppose to show value 10 and disable. How can I bring value 10 when user click on previous button.   

It works perfectly when you enter Credit for the first time. it just does not work when you click on previous button incase of select another option . 

I hope I am making sense.

below is loom video link if you can access.  

https://www.loom.com/share/46e7d6e468734613a3f4d7086f22b886?sid=f53a2192-eafe-4c11-812a-4bf9a39b303e

1 answer
  1. Today, 6:41 AM

    Hello @Suchitra Khanal,  

    The issue is specifically when:

    1. User selects Carting >> selects Length = 15 >> clicks Next.
    2. Then clicks Previous >> changes Creative Type to Credit.
    3. Now, the disabled Length picklist is visible, but its value is blank instead of showing 10.

    This happens because the disabled picklist field (for Credit) is shown based on conditional visibility, but its value is not automatically assigned again when navigating back using the Previous button. Screen flow does not re-run logic or set default values again when going back to a screen using navigation buttons. So the Length field doesn’t update unless the user explicitly triggers logic. 

     

    You can use a Formula or Assignment between the screens to assign the value based on the selection. 

     

    I hope that helps. 

     

    Thanks & Regards 

    Amit Kumar 

0/9000

Hi,

A couple of our clients had problems with updating API versions. However, we're able to resolve it. We would like to finish this change, as the clients are not sure if everything is correct. We've enabled the change using Release updates. Is there anything else we could do to enforce the change or the only way is to wait till May, 2026 release?

 

Thank You in advance

Jan Strzemiński

3 answers
0/9000