Welcome to my recap of Sitecore Symposium 2024! The week continued with numerous insightful sessions, informative workshops, and exciting new announcements. Here are my session notes and takeaways from the final day at Symposium, day three. Opening Keynote The morning kicked off on a high note with a special guest appearance by Brendan Hunt, who […]
Technology Partners
Perficient Joins Salesforce’s Agentforce Partner Network
Revolutionizing Business Operations with AI Agents We are thrilled to announce that Perficient has been added to the Agentforce Partner Network, a groundbreaking ecosystem introduced by Salesforce. This network is designed to revolutionize how businesses leverage AI agents to enhance customer success and operational efficiency. The Agentforce Partner Network brings together leading partners to build […]
Effortless Data Updates in Salesforce: Leveraging the Update Record Function in LWC
The updateRecord function in Lightning Web Components (LWC) is a powerful tool for Salesforce developers, allowing for seamless data updates directly from the user interface. This feature enhances user experience by providing quick and efficient updates to Salesforce records without the need for page refreshes. In this guide, we’ll explore how the update record function […]
Sitecore Symposium 2024: Day Two Recap
Welcome to my recap of Sitecore Symposium 2024! Day 2 at Symposium offered incredible insights and valuable information. There was no shortage of engaging sessions and thought-provoking discussions and we are so excited to bring these fresh perspectives back. Here are my session notes and takeaways from day two. Women in Digital Breakfast What an […]
Diwali and Salesforce: The Spark of Innovation in Modern Business
As the crisp autumn breeze fills the air, homes across India come alive with vibrant lights, delicious sweets, and the joy of gathering with loved ones. Diwali, the festival of lights, is not just a celebration of triumph over darkness; it’s a time to refresh, renew, and look toward a brighter future. This same spirit […]
Exploring Next.js Conf by Vercel: New Features in Version 15 and Their Significance
I’ve been working with Next.Js for a quite a while and have been watching its development with interest all this time. Last week I was happy attended Next.js Conf in San Francisco. Perficient was proud to sponsor the event, allowing us to showcase our Sitecore Practice alongside my colleague David Lewis from the Optimizely Practice. […]
Join Perficient at the Agentforce World Tour NYC!
We are thrilled to announce that Perficient will be participating in Agentforce World Tour NYC on November 20th, one of the most anticipated events in the Salesforce calendar. This event promises to be a day filled with groundbreaking AI innovations, insightful sessions, and hands-on experiences that you won’t want to miss. Event Details: Date: Wednesday, November 20, […]
3 Key Insurance Takeaways From InsureTech Connect 2024
The 2024 InsureTech Connect (ITC) conference was truly exhilarating, with key takeaways impacting the insurance industry. Each year, it continues to improve, offering more relevant content, valuable industry connections, and opportunities to delve into emerging technologies. This year’s event was no exception, showcasing the importance of personalization to the customer, tech-driven relationship management, and AI-driven […]
Streams with Tasks in Snowflake
Snowflake’s Stream Stream Stream is a CHANGE DATA CAPTURE methodology in Snowflake; it records the DML changes made to tables, including (Insert/Update/delete). When a stream is created for a table, it will create a pair of hidden columns to track the metadata. create or replace stream s_emp on table emp append_only=false; I have […]
A Comprehensive Guide to Creating Tabular Reports in Salesforce
Hello Trailblazers! Salesforce provides powerful reporting tools to help businesses analyze data, track performance, and make informed decisions. In the previous part of this blog we learnt about different types of reports available in Salesforce. Tabular Reports are the simplest and most straightforward way to display your data in rows and columns. They are often […]
Selector Layer in Apex: Enhancing Salesforce Access
What is the Selector Layer? The Selector Layer in Apex is a design pattern that acts as an intermediary between your application logic and various data sources, such as Salesforce objects or external systems. It encapsulates data access logic, promoting modularity, maintainability, and testability within your codebase. When to Create a New Selector Layer Class […]
Custom Salesforce Path LWC
Creating a seamless and intuitive user experience is crucial for any application. In Salesforce, a great way to guide users through different stages of a process is by using progress indicators. In this blog post, I’ll show you how to build a Custom Salesforce Path using the lightning-progress-indicator component in Lightning Web Components (LWC). This […]