Skip to main content

Latest Post

Agentforce: One Agent, Six Layers

 The Big Picture (Start Here) ⚡ 1-Minute Summary •   An agent understands language, decides what to do, and acts. A chatbot only answers. •   Every example in this notebook uses one company: Meridian Power. Same company, every module. •   Learn the 360 Card first (0.5). It is the shape of every good answer: rule, gain, price, limits. Module map MODULE 0 root: 'What is Agentforce, and how do the modules fit together?' ├─ 0.1 The map: one agent, six layers ├─ 0.2 Meridian Power — the example company ├─ 0.3 Key terms in plain words ├─ 0.4 The rename map (2024-2026) └─ 0.5 The 360 Card — how to answer any question 0.1   The Map: One Agent, Six Layers 💬 In plain words:   Agentforce looks like many products. It is not. It is one agent with six layers stacked under it. Each layer answers one question, and each module of this notebook lives on one layer. 📌 Example:   A customer types "my power is out." Identity decides whose dat...

SalesForce.com Icons Available for Use at one place

 

Salesforce Icons at One place.

Here is the place where you can find saleforce icons for your formula fields, page messages.

How ot Use these Icons?

IF( Amount > 100, IMAGE("/img/icon/bridge32.png", "Green"),
       IF ( Amount > 50, IMAGE("/img/icon/campaignmember32.png", "Yellow"),
          IMAGE("/img/msg_icons/securityconfirm48.gif", "Red")))


<apex:image value="/img/arrow_dwn.gif" />


Sample Images of progress bar.-
Progress bar in field salesforce
Progress Bar on Field
due date error on task
Due date Error on Field



View saleforce Icons...


Salesforce Icons at one place
Salessforce Icons at One place

Popular Posts

Upload document using rest api from apex class salesforce

 Here is working class example to upload file from apex salesforce.

Salesforce LWC Code for Multi-Select Lookup

Introduction: In Salesforce Lightning Web Components (LWC), implementing a multi-select lookup field can enhance the user experience and provide greater flexibility for selecting multiple related records. In this blog post, we will walk through the process of creating a multi-select lookup field using LWC. We will cover the required code snippets and provide step-by-step instructions to help you implement this functionality in your Salesforce org.