Skip to main content A new Salesforce certification experience is coming July 21st. Discover how exams will be delivered in Pearson VUE, what it means for you, and ways to prepare. Learn more.

Feed

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

I am doing the Agentforce for Service Superbadge Unit in that 3rd challenge, I am not able to add a new action Topic even though the agent is deactivated already, but I did not get the add new button in it.  

 

please help me out 

I am not able to add new Action Topic

 

 

 

#Trailhead Challenges  #Trailhead Superbadges

3 answers
  1. Today, 6:10 AM

    I’m also facing same issue

    I try all the possible solutions that mentioned in slack and trailhead. Still not working.

    Created multiple orgs, deactivated thing

0/9000

I'm currently working on a Flow that counts the number of records created today, in the last 3 days, and in the last 7 days

 

To start, I created a Flow that retrieves all the Call records logged through the "Log a Call" button and stores the number of calls made today in the "Calls Today"

field. 

 

I also created two formula resources: one to get the start of today, and another to get the start of tomorrow. In the Flow, I use these to filter records where the CreatedDate is greater than or equal to the today variable and less than the tomorrow

variable. 

 

My today formula: 

 

DATETIMEVALUE(TEXT(TODAY())) 

 

My tomorrow formula: 

DATETIMEVALUE(TEXT(TODAY() + 1) ) 

 

So i put this conditions: 

Flow Roll up Summary based in different dates.

 

However when I test my flow, it is saying that it can't find the value 

Screenshot 2025-05-17 at 21.37.17.png

 

Can you guys give me some light of what I'm doing wrong? 

 

 

 

#Salesforce Flow  #Flow  #Sales Cloud  #Salesforce Developer

1 answer
  1. Steven Trumble (Skie) Forum Ambassador
    Today, 6:05 AM

    You don't need created tomorrow... That the future. Nothing is created in the future.

    Your today formula is returning a date time. You are using the EQUALS comparator so it will only find a record if the date time is exactly the same. Very unlikely. You instead should see if created date equals flow.currentdate (Or create a formula that returns a DATE like TODAY() ).

0/9000

Hi All, 

 

 In Experience Cloud, I'm using the standard Tableau view component. I'm able to pass the {!recordId} parameter without any issues. However, I want to pass the 

record Name instead. I tried using {!object.Name}, but it doesn't work. Also, I noticed that the advanced filter option isn't showing

 in Experience Cloud. Is there any way to pass the record's Name to the Tableau component? Also Im trying to embed tableau using tableau embedapi in lwc, its loaded in dom but not showing in UI.  

 

Standard Component option

how to add public tableau using embedapi in lwc

 

Below is given tableau code to its working in html 

 

<script type="module" src="https://public.tableau.com/javascripts/api/tableau.embedding.3.latest.min.js"></script><tableau-viz id="tableauViz"         src='https://public.tableau.com/views/Superstore_embedded_800x800/Overview'        toolbar="bottom" hide-tabs></tableau-viz>

 

here is the screenshot 

 

oJfyPzA4.png

 

The same im trying on lwc i have added script in static resources and loaded using loadscript and once library initialized querying div class and appending an child when i console i see its showing created element but its not visible on screen

 

template.html

<template>    <div class="container" lwc:dom="manual">    </div>    </template>

 

js 

 

import { LightningElement } from 'lwc';import tableauEmbedding from "@salesforce/resourceUrl/tableau";import { loadScript } from "lightning/platformResourceLoader";export default class TableauLwc extends LightningElement {    tableauInitialized = false;     renderedCallback() {    if (this.tableauInitialized) return;    this.tableauInitialized = true;    loadScript(this, tableauEmbedding)      .then(() => {        this.initViz();      })      .catch((error) => {        console.error("Failed to load Tableau JS", error);      });  }  initViz() {    console.log("Initializing Tableau Viz");    const container = this.template.querySelector(".container");    console.log("Container: ", container);    const viz = document.createElement("tableau-viz");    viz.setAttribute("src", "https://public.tableau.com/views/Superstore_embedded_800x800/Overview");    viz.setAttribute("toolbar", "bottom");    container.appendChild(viz);    console.log("Viz: ", viz);  }}

 

console.screenshot 

 

zuW6vm5n.png

 

KenT0uGy.png

 

#Experience Cloud  #LWC  #Salesforce  #Analytics  #Salesforce Developer  #Trailhead Challenges

0/9000
10 answers
0/9000

Hi All,     I’m trying to filter a report using URL parameters for a Salesforce Experience (Community) user, following the approach outlined in this LinkedIn article by Bill Wu. I’ve added a filter on the report with the field "Name equals empty" and passed the value through the URL as suggested. However, the report isn't filtering the records as expected. I also tried using the "Id" field, but that didn’t work either. How can I correctly apply URL parameters to filter report data for Experience users?     https://d4c0000000dfouay--projectbud.sandbox.my.site.com/partners/s/report/00OEa000005KfqXMAS/budget-plan-summary-by-category?%3FreportFilters=%5B%7B%22column%22%3A%22PROJ_HEADERS__c.NAME%22%2C%22operator%22%3A%22equals%22%2C%22value%22%3A%22{Project.Name}%22%7D%5D      

 

@* Experience Cloud * 

2 answers
0/9000

Create a Partner Portal, Enable Partner Account and Users, and Add Members 

の以下ハンズオンを実施しています。 

この時「All Sites」のメニューが表示されないのですが、どうしたら良いでしょうか? 

Now that you’ve enabled digital experiences and increased the number of partner user roles, let’s set up a bare-bones partner portal. You should have been redirected to the All Sites page in Setup, but if not, enter Digital Experiences in Quick Find, and select

All Sites

 

#Trailhead Challenges

0/9000

I have an record from which we are sending emails to our business partners.  Those partners need to open the email and reply to it with the requested documentation.  If they respond to the Salesforce email, will the response go back to the record and if there is an attachment, will the attachment go back to the files section of the record?

9 answers
  1. Today, 3:24 AM

    After working in Riskonnect, I see that this functionality does not exist in Riskonnect as it does in Salesforce.  Riskonnect uses an Email Service to address these types of issues. 

     

0/9000
2 answers
  1. Today, 3:19 AM

    @Srinivasa Reddy Somu Upon using the above suggestion, my user received this error: 

    • You do not have the level of access necessary to perform the operation you requested. Please contact the owner of the record or your administrator if access is necessary.

    I use the Riskonnect platform so I'm assuming ownership of files can't be shared. 

     

    I do appreciate the suggestion.

0/9000