• WHO WE ARE
  • WHAT WE DO
    • Salesforce
      • Implementations
        • Sales Cloud
        • Service Cloud
        • CPQ
        • Field Service Lightning
        • Field Service for SMEs
      • Developments
        • Salesforce Customization
        • Custom Application Development
        • AppExchange Product Development
      • Migrations
        • Classic to Lightning Migration
        • Other Systems to Salesforce Migration
      • Integrations
    • Data Science
      • BI Solutions
      • AI/ML solutions
      • Agentic AI
  • HOW WE DO
    • Delivery Model
    • Our Works
  • REACH US
    • Contact Us
    • Careers
  • BLOG
    • WHO WE ARE
    • WHAT WE DO
      • Salesforce
        • Implementations
          • Sales Cloud
          • Service Cloud
          • CPQ
          • Field Service Lightning
          • Field Service for SMEs
        • Developments
          • Salesforce Customization
          • Custom Application Development
          • AppExchange Product Development
        • Migrations
          • Classic to Lightning Migration
          • Other Systems to Salesforce Migration
        • Integrations
      • Data Science
        • BI Solutions
        • AI/ML solutions
        • Agentic AI
    • HOW WE DO
      • Delivery Model
      • Our Works
    • REACH US
      • Contact Us
      • Careers
    • BLOG
  • [email protected]
  • (+91) 44-49521562
Merfantz - Salesforce Solutions for SMEs
Merfantz - Salesforce Solutions for SMEs
  • WHO WE ARE
  • WHAT WE DO
    • Salesforce
      • Implementations
        • Sales Cloud
        • Service Cloud
        • CPQ
        • Field Service Lightning
        • Field Service for SMEs
      • Developments
        • Salesforce Customization
        • Custom Application Development
        • AppExchange Product Development
      • Migrations
        • Classic to Lightning Migration
        • Other Systems to Salesforce Migration
      • Integrations
    • Data Science
      • BI Solutions
      • AI/ML solutions
      • Agentic AI
  • HOW WE DO
    • Delivery Model
    • Our Works
  • REACH US
    • Contact Us
    • Careers
  • BLOG

Field Service Management

Get Recordtype Id by Name and Get Recordtype name by Id

  • July 28, 2017
  • Merfantz Editor
  • Salesforce Developments Tutorial
Try the below:- Get Recordtype Id by Name:-  Id devRecordTypeId= Schema.SObjectType.Account.getRecordTypeInfosByName().get(‘Development’).getRecordTypeId();  Here, ‘Development’ is the record type’s name. You shuld use ‘someone’. Also, you will have to specify your...
Continue Reading

How to Add Additional Fields in Web to Lead form Without Regenerating Web to Lead

  • July 28, 2017
  • Merfantz Editor
  • Salesforce Developments Tutorial
Add Additional fields in the Web to Lead form without regenerating, 1.Generating the HTML code from Web to Lead 2.Incorporate the new HTML into your web site 3.Adding fields via...
Continue Reading

How to Change Picklist Value Depend on Textbox Values in Salesforce

  • July 27, 2017
  • Merfantz Editor
  • Salesforce Admin Tutorial
How to change picklist value depend on textbox values ? We describe the solution dynamically change picklist value whenever textbox value is edited(without code). You need to create more...
Continue Reading

Lighting Design System for Apex Page Messages in Salesforce

  • July 27, 2017
  • Merfantz Editor
  • Salesforce Developments Tutorial
We can show the Apex Page Messages. Apex Class: public class Messages{     public MessagesController(){         ApexPages.addmessage(new ApexPages.message(ApexPages.severity.FATAL,'Enter Account name'));         ApexPages.addmessage(new ApexPages.message(ApexPages.severity.ERROR,'This is not valid'));         ApexPages.addmessage(new ApexPages.message(ApexPages.severity.WARNING,'It should be correct format'));...
Continue Reading

Weekday and Weekend Calculation Using Formula Field in Salesforce

  • July 27, 2017
  • Merfantz Editor
  • Salesforce Developments Tutorial
To find whether the record creation Date is Weekday or Weekend it would be simple formula., CASE (MOD ( CreatedDate – DATE (1900, 1, 7), 7), 0, “Weekend”, 6,...
Continue Reading

How to Clone the Object Dynamically with All Fields in Salesforce

  • July 27, 2017
  • Merfantz Editor
  • Salesforce Developments Tutorial
We already have the function deep clone to clone the fields. It has been done via SOQL query(i.e selected fields only cloned). We need a dynamic clone of the...
Continue Reading

How to Create Buttons Using Formula field in Salesforce

  • July 27, 2017
  • Merfantz Editor
  • Salesforce Admin Tutorial
We can create buttons using formula field. First, we need to create a button image Save this image in Documents object Use this image for creating a formula field...
Continue Reading

How to Count Number of Selected Items in a Multi-picklist

  • July 27, 2017
  • Merfantz Editor
  • Salesforce Admin Tutorial
If we want to see how many selected items in a multi picklist, it would be simple See the below, IF(INCLUDES( Multi_Picklist__c , “value 1”), 1, 0) + IF(INCLUDES(...
Continue Reading

Can We Schedule the Opportunity Amount Instead by Opportunity Product Scheduling in Salesforce

  • July 27, 2017
  • Merfantz Editor
  • Salesforce Admin Tutorial
Can we schedule the Opportunity Amount instead by Opportunity Product scheduling? Yes, We have a solution for this. We can schedule the Total Opportunity Amount by divide and Repeat...
Continue Reading

How to Create Custom Button with Popup Message using Javascript in Salesforce

  • July 27, 2017
  • Merfantz Editor
  • Salesforce Developments Tutorial
If we want to show the popup message by clicking the button, Then Click “ok” redirect to another Page and “Cancel” reloads the same page on Javascript. if (confirm(‘Are...
Continue Reading

How to Redirect to Lightning Page from Visualforce Page

  • July 27, 2017
  • Merfantz Editor
  • Salesforce Developments Tutorial
Standard Page URL and Lightning page URL both are totally different. If we want to redirect the page to lightning just given the URL like the below, (‘/one/one.app?source=aloha#/sObject/{!sobject.Id}/view’)  ...
Continue Reading

Drag and Drop Functionality using Visualforce Page in Salesforce

  • July 27, 2017
  • Merfantz Editor
  • Salesforce Developments Tutorial
Sometimes, We have strucked in a script like drag and drop, here is the simple and easy code. Use below code to achieve this process. <apex:page > <html lang=”en”>...
Continue Reading

Posts pagination

Previous 1 … 4 5 6 7 Next

Search

Categories

✨ Salesforce Admin Tutorial

✨ Salesforce Developments Tutorial

✨ Salesforce News

✨ SFDC FREE Training

Salesfore Training Course

Salesforce Admin Training Part I

✨ Salesforce Intro
✨ Creation field and objects
✨ Formula field and Field Mapping
✨ Object relation
✨ Junction Object
✨ Tab with Object
✨ Type of Buttons

Salesforce Admin Training Part II

✨ User creation
✨ Profile Setup
✨ Sharing Rules
✨ OWD
✨ Record Level Access

Salesforce Admin Training Part III

✨ Field Update
✨ Validation
✨ Process Builder
✨ Time Based Work Flow
✨ Visual flows

Salesforce Development Training

✨ Page Creation
✨ Apex Class Creation
✨ SOQL basics
✨ Trigger Creation
✨ Test Class Creation
✨ Component Creation
✨ Batch Class Creation
✨ Lightning Basics

Recent Posts

  • Comprehensive Overview of Salesforce Agent-Force Platform
  • Salesforce GraphQL: Revolutionizing Data Queries in CRM
  • Unlocking the Power of Dynamic Forms in Salesforce Lightning App Builder
  • Einstein Activity Capture: Boosting Productivity & Relationship Intelligence
  • Let Einstein Help You Build – Salesforce Flow

Recent Posts

Comprehensive Overview of Salesforce Agent-Force Platform
Comprehensive Overview of Salesforce Agent-Force Platform June 12, 2025
Salesforce GraphQL Revolutionizing Data Queries in CRM
Salesforce GraphQL: Revolutionizing Data Queries in CRM June 6, 2025
Unlocking the Power of Dynamic Forms in Salesforce Lightning App Builder
Unlocking the Power of Dynamic Forms in Salesforce Lightning App Builder May 29, 2025
Einstein Activity Capture Boosting Productivity & Relationship Intelligence
Einstein Activity Capture: Boosting Productivity & Relationship Intelligence May 22, 2025
Let Einstein Help You Build - Salesforce Flow
Let Einstein Help You Build – Salesforce Flow May 15, 2025

Categories

  • Field Service Management
  • Merfantz Developments
  • Salesforce
  • Salesforce Admin Tutorial
  • Salesforce Agentforce
  • Salesforce Consulting
  • Salesforce Consulting Services
  • Salesforce CPQ
  • Salesforce Development & Implementation
  • Salesforce Developments Tutorial
  • Salesforce Integration
  • Salesforce Lightning
  • Salesforce Migration
  • Salesforce Releases & News
  • Salesfore Training Course
  • SFDC Training Part I
  • SFDC Training Part II
  • SFDC Training Part III
  • SFDC Training Part IV
  • Uncategorized

Tags

agentforce CRM Customization CRM Implementation CRM Platform Transition Customer Relationship Management Customized Salesforce Implementation Einstein AI Fieldax Field Service Management flow How To Use Transform (Beta) Element In Salesforce Flow Javascript lightning web component LWC Merfantz Features Merfantz Technologies Salesforce salesforce batch apex class Salesforce best practices Salesforce Consulting Salesforce CPQ Partner Salesforce Customization Salesforce customization tips Salesforce Development Salesforce Development & Implementation Salesforce Development Services Salesforce experts Salesforce Features Salesforce Implementation Salesforce Implementation Services Salesforce Integration Salesforce Integration Companies Salesforce Integration Consultant Salesforce Lightning Salesforce Lightning Components Salesforce Lightning Development Salesforce Migration Salesforce Outsource salesforce sales cloud Salesforce tips Salesforce Tutorial SFDC Implementation Spring'24 update User Profiles Visualforce
Merfantz Technologies is a leading Salesforce consulting firm dedicated to helping small and medium enterprises transform their operations and achieve their goals through the use of the Salesforce platform. Contact us today to learn more about our services and how we can help your business thrive.

Discover More

Terms and Conditions
Privacy Policy
Cancellation & Refund Policy

Contact Info

  • No 96, 2nd Floor, Greeta Tech Park, VSI Industrial Estate, Perungudi, Chennai 600 096, Tamil Nadu, INDIA
  • (+91) 44-49521562
  • [email protected]
  • 9:30 IST - 18:30 IST

Latest Posts

Comprehensive Overview of Salesforce Agent-Force Platform
Comprehensive Overview of Salesforce Agent-Force Platform June 12, 2025
Salesforce GraphQL Revolutionizing Data Queries in CRM
Salesforce GraphQL: Revolutionizing Data Queries in CRM June 6, 2025
Unlocking the Power of Dynamic Forms in Salesforce Lightning App Builder
Unlocking the Power of Dynamic Forms in Salesforce Lightning App Builder May 29, 2025

Copyright @2023 Merfantz Technologies, All rights reserved