Hello,
I'm trying to implement a dynamic date range in the date element. I would like the user to select a date from 01-01-(current year - x years) to today.
#Salesforce Developer
Hello,
I'm trying to implement a dynamic date range in the date element. I would like the user to select a date from 01-01-(current year - x years) to today.
#Salesforce Developer
I’m working with a Procurement record that has a lookup field to Budget Line.
From the Procurement record, I have a related list button “New Good & Service: Contract Deliverables” (this is a record type on the Good & Service object).
On the Good & Service object:
Goal:
When clicking the
New Deliverable button from the Procurement related list, I want:
Question:
What’s the best way to achieve this auto-population for the Budget Line field?
Would love to hear best practices or recommended approaches 🙏
@Nisha Makwana, this can be done with a custom list button with URL parameters. (You might hear this in the Trailblazer Community as a URL hack button.) There's a detailed explanation and example in this Medium article.
You'll want to create the New Deliverable button in the Good & Service object in Setup. Select the Display Type as List Button and the Content Source as URL.
Your URL will be as follows:
/lightning/o/Good_Service__c/new?nooverride=1&recordTypeId=XXXXXXXX&backgroundContext={!URLENCODE('lightning/r/Procurement__c/{!Procurement__c.Id}/view')}&navigationLocation=RELATED_LIST&defaultFieldValues=Procurement__c={!Procurement__c.Id},Budget_Line__c={!Procurement__c.Budget_Line__c}
In the URL, ensure that the API name of the Good & Service object is correct. You'll also want to replace XXXXXXXX in the recordTypeId parameter with the actual ID of the Deliverable record type.
💻 True to the Core Deep Dive: Security and User Access Recap
Thank you to everyone who joined True to the Core Deep Dive today, and to Salesforce product leaders @Mahesh Shivalingappa, @Pete Thurston, and @Larry Tung for sharing updates and answering all your great questions.
🎥 Missed the session?
You can watch the full session on demand here.
.
💬 Still have questions?
Drop them in the comments below. We’ll do our best to get you answers!
📝 Shape future TTTC Deep Dive topics!
Please take a moment to fill out this quick survey about the session and help shape future session topics.
🔗 Resources shared during the session:
• Setup with Agentforce Admin Blog
• TDX 2026 session "User Management Roadmap: What's New and What's Coming"
• TDX 2026 session "Simplify User Access with Setup with Agentforce"
• Platform Sharing Architecture
• Setup with Agentforce for Admins badge on Trailhead
• User Management page on admin.salesforce.com
#True To The Core @IdeaExchange #AwesomeAdmins #Salesforce Developer #Architects
@Salesforce Admins Live Sessions, @* Release Readiness Trailblazers *, @* Salesforce Platform *, @* Trailhead Official *, @Trailblazer Community Cove, @Admin Addicts, @* Salesforce Developers *@TDX for Admins, @Architect Trailblazers
Hi 👋
I’ve launched a basic version of *
Field Insight Pro*, a Chrome extension
for Salesforce users to find where fields are used before making changes.
✅ Helps identify field references
✅ Reduces risk during refactors and deprecations
✅ Works with your active Salesforce session
Full features are coming soon.
Check next version Release note:
👉 Add to Chrome:
Let us know your feedback — it’ll help shape the next release! #Salesforce Admin #Salesforce Developer #Trailhead Challenges #Salesforce Field Service
Question - does this lock peeps out of orgs who are using an anonymized VPN? Per recent security updates, anonymized vpns are blocked for any connected app or API login. I was locked out of multiple sandboxes due to using inspector reloaded browser plugin and a VPN so if this plugin uses the same "read" permissions, peeps WILL get locked out if using an anonymized VPN. So I'm curious what mechanism you implemented to access metadata for this app.
Hi Everyone! im currently working in a SF org consolidation/migration project and would appreciate inputs, best practices or lessons learned from anyone who has handled a similar setup.
Current high-level scenario:
One important requirement is:
A few questions I’d love community guidance on:
Would really appreciate any architecture guidance, references or real-world experiences from others who have gone through this. Thanks in advance!
#Data Management #Salesforce Developer #Architects #Org Migration #TrailblazerCommunity
Hi Kirst,
Org consolidation with security separation is a common challenge. Maybe this video on
metadata migration will be helpful to you.
There are also out of the box AppExchange solutions built specifically for multi-org consolidation scenarios that can handle metadata migration, duplicate management, and security governance as part of the process.
If helpful, I'm happy to connect and discuss your specific setup.
Hi Everyone,
We have a scenario below:
After clicking on a button, it will show a form where it will ask lot of questions and user has to provide the inputs. Lets say users goes in offline mode or logged out from application. Once user reopens the application in offline mode and clicked on the button, the form will resume from where he left. The LWC component is not getting launched from Offline mode. LWC component launches from online mode.
Is there any work around for this?
#Architects #Enterprise Architecture #Salesforce Developer
Hello Saikat,
As per my knowledge, Salesforce Mobile App has very limited offline capabilities, especially for custom LWC components. Standard LWCs generally do not work properly in offline mode unless they are built specifically with offline-supported architecture or used within FSL Mobile. One possible workaround could be saving the form progress locally (like browser storage/local storage) while online and syncing once the user reconnects, but native resume behavior in offline mode is not fully supported in standard Salesforce Mobile App. You may also explore using Aura components or custom mobile solutions depending on the requirement complexity. Hope this helps!
Hello everyone! I'm facing an issue with the "Browse Products" component in Salesforce Revenue Cloud/PCM.
The Problem:
Images are visible on the standard Product records, but the Product Catalog shows only empty placeholders.
Has anyone encountered this "empty image" issue in the Product Catalog Management?
Thanks in advance!
#Revenue Cloud #Salesforce CPQ & Billing #Salesforce Developer #AppExchange
@Yurii Hartovanets this is not a product record issue. Seeing the image on the standard Product page does not always mean the Product Catalog/Browse Products component can use it.
For PCM/Browse Products, check the product’s image/display URL setup. If the image is only uploaded as a Salesforce File on the Product record, the catalog component may still show a placeholder. Use a real HTTPS image URL that the component can access, such as a public/static resource URL or an externally hosted image URL.
Also check that the URL opens directly in a browser without needing a Salesforce login. If the URL depends on session access, permissions, or a file preview page, it may work on the record page but fail in the catalog view.
After updating the image URL, rebuild the Product Catalog index. PCM uses indexed product data for browse/search views, so product data changes may not appear until the index is rebuilt.
I have created custom flow "Activities: Match Email to Records flow" copying standard flow based on business requirement, and apex trigger on Email Message, but for some reason custom flow is not firing. @* Salesforce Developers * #Salesforce Admin #Salesforce Developer #Flow
It can be frustrating when a Flow that looks perfect on paper refuses to fire in practice, especially when dealing with the EmailMessage object. Because EmailMessage interacts with both Enhanced Email and the automated threading engine, it behaves differently than a standard record like an Account or Contact.
Here are the most likely culprits for why your custom "Match Email to Records" flow isn't triggering:
1. The Trigger Conflict
Since you mentioned you also have an Apex Trigger on EmailMessage, there is a high probability of a race condition or an "order of execution" conflict.
2. "Enhanced Email" Settings
Salesforce handles emails differently depending on whether Enhanced Email is turned on.
3. Check the Flow Entry Criteria
If you copied the standard flow, check the Entry Conditions.
4. The "Automated Process" User
Flows triggered by incoming emails (like Email-to-Case) often run under the Automated Process user.
Debugging Steps
Is this flow intended to catch emails coming in via Email-to-Case, or emails sent manually via the "Send Email" button in Salesforce?
Introducing Agentforce for Scale — Now Generally Available
Performance investigation shouldn't require five dashboards, three browser tabs, and a support case. Starting today, it doesn't.
Agentforce for Scale is the first AI agent purpose-built for Salesforce's Scalability suite — and it's now GA for all customers with Foundations and Scale product licenses like Scale Center or Scale Test.
What it does:
Org Performance Analysis — Ask "how is my org performing?" and get instant Row Lock, Apex, and Governor Limit diagnostics with guided investigations
Live Scale Test Monitoring — Say "analyze my RPS" during a test and receive real-time peak analysis, instability detection, and auto-generated Test Health Reports
Intelligent Q&A — Get instant, contextual answers from across Scale Test, Scale Center, and ApexGuru documentation
The bottom line: What used to take hours of manual correlation now takes a single question.
See it in action:
6-Min Demo Video
How to enable: Setup → Agentforce Agents → New Agent → select "Agentforce for Scale" template -
Full User Guide
Join the Learning Series:
Sign up here
— 60-min enablement sessions with the product and engineering team. First session in early June.
Official Help & Training Documentation
@Karishma Lalwani @Ravi Raina @Dheeraj Mohan
#Salesforce Developer
My Salesforce Journey & Agentforce Achievement
For the past few months, I have been actively learning Salesforce through Trailhead, and it has been a truly valuable journey for me. This platform has given me an excellent opportunity to develop my skills and gain practical knowledge.
Through the J2S (Journey to Salesforce) program, I have learned a lot and significantly improved my understanding. This time, I officially participated in the program, and it has been an incredibly enriching experience for me.
I am also proud to share that I have successfully completed the “Become an Agentforce” program. Achieving this milestone feels truly rewarding, and I am happy to share it as an important accomplishment in my learning journey.
This experience has not only strengthened my technical knowledge but also boosted my confidence. Overall, this journey has been very meaningful for me, and I am excited to continue learning, growing, and building my career in the Salesforce ecosystem.
#Trailhead #Salesforce Developer #Salesforce Admin #Agentforce #Trailhead Challenges #Sales Cloud #Tableau Desktop & Web Authoring #Salesforce #TrailblazerCommunity #Nonprofit