Hi @Kiruthika P,
When using dynamic content in SFMC Growth Edition emails sent through a flow, ensure the flow's data extension or audience source matches the data extension used in the dynamic content rules, or that the data extension fields have the same names.
Feed
- Recent Activity
- Created Date
- Questions with an Accepted Answer
- Questions with No Accepted Answer
- Unanswered Questions
Divya Chauhan (Kcloud Technologies) Forum Ambassador
Today, 4:16 AM Hii @S K Yes, you can create a custom agent in your Salesforce org for your business using Agentforce, a low-code platform that lets you build and tailor AI agents to your specific needs with tools like Agent Builder.
Today, 4:17 AM Hi @Kiruthika P,
Best practices recommends having at least 100 records to effectively test email subject lines using Path Optimizer experiments in Journey Builder. This sample size helps ensure statistically significant results when determining the most effective subject line.
Apr 7, 2:38 PM Hi @Jitesh Bagul,
The lightning-helptext component in LWC is specifically designed to show a small info icon (i) with a tooltip when hovered, and
it doesn't support using an image or static resource as its content
. It's not customizable in terms of appearance or content format beyond plain text.
If you want to show an image (e.g., from a static resource) with tooltip behavior you can try below example, you need to load static resources with image.
HTML<template> <div class="product-tooltip"> <img src={infoIconUrl} alt="Product Info" class="product-info-icon" /> <span class="tooltip-text"> <img src={productImageUrl} alt="Product Preview" class="tooltip-image" /> </span> </div></template>
JS - import { LightningElement } from 'lwc';import infoIcon from '@salesforce/resourceUrl/productInfoIcon';import productImage from '@salesforce/resourceUrl/productImage';export default class ProductInfoTooltip extends LightningElement { infoIconUrl = infoIcon; productImageUrl = productImage;}
CSS -.product-tooltip { position: relative; display: inline-block;}.product-info-icon { width: 24px; height: 24px; cursor: pointer;}.tooltip-text { visibility: hidden; width: 220px; background-color: #ffffff; border: 1px solid #ccc; border-radius: 6px; padding: 10px; position: absolute; z-index: 10; bottom: 125%; left: 50%; transform: translateX(-50%); opacity: 0; transition: opacity 0.3s; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);}.tooltip-image { width: 100%; max-height: 120px; object-fit: contain;}.product-tooltip:hover .tooltip-text { visibility: visible; opacity: 1;}
カスタムボタンからレコードを作成する際、2つの参照項目にデフォルト値としてレコードをセットしたいと考えています。
標準オブジェクトA:取引先(Account)
カスタムオブジェクトB:案件(Deal)
カスタムオブジェクトC:記録(Log) ←ここにボタンを作成
Bの詳細ページに設置しているCの関連リストに「新規(自作)」というリストボタンを設置し、そこから記録レコードを作成したいと考えています。
このとき、Cの中にある「案件名」「取引先名」という項目に、デフォルトで参照レコードを設定したいです。
案件名は、ボタンを押したときの詳細レコードの案件、顧客名は、当該案件が参照している顧客です。
※BとAの間にも参照関係があります。
今できているのは、
・{!Deal__c.Id}としてBの案件名を初期値として入れること。
・{!Deal__c.Account__c}として、オブジェクトAの名称をテキストで取得すること。(Account__cは、Bの中にあるAの参照項目名です。)
だけです。Bに紐づくAの名称は取得できているため、どうにかしてこのAのsalesforceIDを取得したいのですが、どのようにすれば実現可能でしょうか。
{!Deal__c.
}
{!Deal__r.
}
としてもエラーとなりました。
画像がなくわかりづらくて申し訳ありません。
お知恵をお貸しいただけますと幸いです。
Today, 3:54 AM 私もこのURLハックと呼ばれる数式を使っていますが、何故か参照項目を指定するとIdを取得できないですね。Nameになっていると思われます。標準画面ではNameが表示されているので、Salesforceの仕様かもしれません。
Hi, I get this error: "We can’t find a custom field named ‘Type’ on the Program object." when completing the challenge, despite the fact that I have managed to follow/complete where possible for all previous units. For this particular challenge, I have created custom objects and fields where not available. My other challenges in 'Data Security' were successful in the same playground. Please advise.
#Trailhead Challenges
Code below;
public class AccountHandler {
public static void insertAccount(Integer numNewAccounts){
List<Account> addAccounts = new List<Account>();
Integer counter = 1;
while(counter <= numNewAccounts ){
Account a = new Account();
= 'Acme Inc ' + counter;
a.AccountNumber = 'A000' + counter;
addAccounts.add(a);
counter++;
}
insert addAccounts;
}
}
#Trailhead Challenges
Ruchit Patel (Cognizant) Forum Ambassador
Today, 3:47 AM can you share screenshot of error message you are getting? Thanks!
Hello, I have a validation rule that is not firing at all. It was working before I added in the PriorValue line. That was added as they only want to force those fields when moving from one stage to another in 1 stage increments, so if they go from stage 2 to 5 it would not fire. Its probably something simple that I am missing as I have been staring at it so long.....
AND(
ISCHANGED(StageName),
PRIORVALUE(StageName) = "1: Discovery",
ISPICKVAL(StageName, "2: Demo"),
$
<> "System Administrator",
$
= "Sales Opportunity",
OR(
ISBLANK(Compelling_Event__c),
ISBLANK(Champion__c),
ISBLANK(Decision_Criteria__c),
ISBLANK(Buying_Process_Understood__c),
ISBLANK(Identify_Economic_Buyer__c)
)
)
Ruchit Patel (Cognizant) Forum Ambassador
Today, 3:45 AM Some checks you can try
1. Logged in user is not System Admin
2. Picklist values are used correctly for
StageName. Make sure you are using API Names of the Stage and Not Labels
Hi, when I check my challenge, it says "We couldn’t find your quick action in the List View Search Layout for cases. Verify that the quick action was added to the case object’s Search Layout called List View. In the “List View Actions for Lightning Experience” section, check to see if the Replacement Owner quick action is listed in the Selected Quick Actions list."
It looks like the same issue as link below, but the screen has changed.
"
https://trailhead.salesforce.com/trailblazer-community/feed/0D54S00000G5InESAV"
As shown in the attached image, the solution 'Search Layouts for Salesforce Classic' is no longer available, and instead, there is 'List View Button Layout.' I have added the 'Replacement Owner' there, but it seems that the 'Check Challenge' cannot find it.
Could someone resolve this issue?
#Trailhead Challenges
Apr 7, 11:16 AM Can you please verify your steps with this? : https://www.youtube.com/watch?v=7tSr2VvPFHI
I need help ASAP! I am trying to complete my Spring 24' maintenance for my SF Admin cert but for some reason each time I try to launch the playground I have been getting the same error message for about 2 weeks now. I tried using different web browser and my iPad still no luck!!! Is anyone else experiencing this???
#Trailhead Challenges
Today, 3:36 AM Hi ,
Meanwhile I found the cause.
It seems that there were a few orgs linked to this Trailhead Challenge.
The one that was attempted to be launched was expired.
After spinning up a new org, it worked.
My product suggestion would be to include this in the error message that is displayed to the user.