Skip to main content

Posts

Showing posts with the label salesforce

What is Salesforce ? Who is salesforce developer?

  1. Introduction to Salesforce Definition : Salesforce is the #1 Cloud-based CRM (Customer Relationship Management) platform that helps businesses manage relationships with customers, automate business processes, and analyze performance. Founded : 1999 by Marc Benioff. Type : SaaS (Software as a Service). Tagline : "No Software" – because everything runs on the cloud, without local installations. 2. Why Salesforce? Traditional CRMs were expensive and required servers, installations, and IT staff. Salesforce revolutionized CRM by moving everything to the cloud . Benefits: 🚀 Faster implementation ☁️ Cloud-based (accessible anywhere) 🔄 Customizable without coding (point-and-click tools) 🤝 Strong ecosystem & AppExchange (marketplace like Google Play for Salesforce apps) 🔐 Security & scalability 3. Salesforce Products & Cloud Offerings Salesforce is not just CRM; it has multiple clouds (modules) for different busine...

RestFul API in Salesforce Create & Consume both

 Restful API in Salesforce Create & Consume both @RestResource(urlMapping='/MyService/*') global with sharing class RestAPIService {     @HttpGet     global static String doGet() {         List<countryies__c> obj = [Select ID,Name from countryies__c];         String data='';         for(countryies__c item:obj)         {             data += 'ID is '+ item.id + 'Name is ' + item.Name + '\n';         }         return data;     }     @HttpPost     global static String doPost(String name) {        countryies__c obj = new countryies__c();         obj.Name=name;         insert obj;                  return 'Country ' + name + ' Added';     }     @HttpPut  ...

Creating Lightning Pages in Salesforce

  🚀 Complete Tutorial: Creating Lightning Pages in Salesforce 🔹 1. What are Lightning Pages? Lightning Pages are customized layouts in the Lightning App Builder where you can drag-and-drop components (standard, custom, or AppExchange) to design record pages, home pages, and app pages. Think of it like page builder for Salesforce — no code needed, just drag-and-drop. 🔹 2. Types of Lightning Pages App Page → A one-page app with custom dashboards, lists, or reports. Home Page → Custom homepage for different profiles. Record Page → Customized layout for a specific object (e.g., Account, Contact, or a custom object). 🔹 3. Step-by-Step: Create a Lightning Page Step 1: Open Lightning App Builder In Salesforce, click the ⚙️ Gear Icon (top right). Select Setup . In Quick Find, type App Builder . Click Lightning App Builder . Step 2: Create a New Lightning Page Click New . Choose the page type: App Page (dashboard-like view) Home Pa...

Introduction to Salesforce | What is Salesforce by Shiva Sir

 🎓 Salesforce Full Course – Lecture 1: Introduction to Salesforce Audience: Beginners, Students, Career Switchers Objective: Build foundational understanding and inspire interest in Salesforce careers. 🧩 Section 1: What is Salesforce? 📌 CRM – Customer Relationship Management CRM is a business strategy and tool used to manage relationships with customers. Used to track leads, sales, customer complaints, support history, etc. Real-life example: Replacing a Kirana shop's notebook with an organized digital system. 📌 What is Salesforce? World’s #1 cloud-based CRM platform. Helps businesses manage sales, service, marketing, and more from one place. Cloud-based: No installation needed—just a browser and internet. Trusted by 150,000+ companies worldwide, including many Indian companies. Easy to build apps using clicks (drag-and-drop), not just code. 🧩 Section 2: History and Ecosystem of Salesforce 📌 Background Founded in 1999 by Marc Benioff. Pioneer of the “Software as a Service (Sa...

CRUD Operation in Salesforce using Custom Object, Visualforce, and APEX Controller with MVC Design Pattern

CRUD Operation in Salesforce using Custom Object, Visualforce, and APEX Controller with MVC Design Pattern This tutorial provide step by step implementation to perform CRUD Operation into Course Object. In Salesforce development, building applications that follow standard architectural principles is essential for maintainability, scalability, and clarity. One of the most powerful combinations is implementing CRUD operations (Create, Read, Update, Delete) on a Custom Object using Visualforce Pages , Apex Controllers , and adhering to the MVC (Model-View-Controller) Design Pattern . Step1st: Create Course Object using Admin Dashboard it contain Name, Mode(PICKLIST), Fees, CourseId as an ExternalId. Step2nd: Create APEX Controller to perform CRUD Operation similar this public class CourseController {     public Course__c course1 { get; set; }     public List<Course__c> course { get; set; }     public Id selectedCourseId { get; set; }     publ...

Top 100 Salesforce Interview Question

Top 100 Salesforce Interview Question  🧠 General & Conceptual Questions 1. What is Salesforce? 2. What is CRM, and how does Salesforce implement it? 3. Differentiate between Salesforce.com and Force.com. 4. What are the different types of clouds in Salesforce? 5. Explain the Salesforce architecture. 6. What are the different editions of Salesforce? 7. What is the AppExchange? 8. What is a sandbox? What are its types? 9. What is metadata in Salesforce? 10. What are Governor Limits? 🔐 Security & Access Control 11. What is a Profile? 12. What is a Role? 13. Differentiate between Profiles and Roles. 14. What are Permission Sets? 15. What is a Permission Set Group? 16. What is Field-Level Security? 17. What is Organization-Wide Default (OWD)? 18. What are Sharing Rules? 19. What is Manual Sharing? 20. What is the Role Hierarchy? 🧱 Data Modeling 21. What are Standard and Custom Objects? 22. What is a Record Type? 23. What is a Page Layout? 24. What is a Compact Layout? 25. Wha...

APEX Introduction

 APEX Introduction It is Object oriented programming language that is used to provide custom code to create business logic and database operation. APEX is also used to create salesforce triggers that will work automatically , before and after database operation(Insert, Update, Delete). Apex provide SOQL and SOSL to manage database operation. 📘 Apex Arrays & Collections – Complete Tutorial 1. Introduction In Apex , data structures are very important because Salesforce apps often deal with records, lists, and sets of data . Apex provides Collections to store and manipulate groups of values or objects. 👉 Collections in Apex: List (like an Array in Java/C#) Set Map ⚡ Note: Unlike Java/C#, there is no fixed-length array in Apex. Instead, List<T> is used as a dynamic array. 2. Arrays in Apex (List<T>) What is an Array? An Array (or List) is an ordered collection of elements, indexed starting at 0 . You can store primitive types (Integer, String, Boolean) ,...

Most important Salesforce Admin Interview Question?

   Salesforce Admin Interview Questions Here is a list of some Top 55 Salesforce Admin Interview Questions: What is cloud Computing? What is Paas, Saas, Iaas? What is Sandbox and the Type of Sandbox in Salesforce? What is Object in Salesforce? What are the different types of object relations in Salesforce. What is a Master–Detail relationship in Salesforce? What is a junction object in Salesforce? How many LR(lookup relationship) fields can be created in an object? What is a Roll-up Summary field How many way to create What is a Roll-up Summary field What is field dependency What is the difference between role and profile What are Permission sets? What is use of muting permission set in permission set group How many ways we can share a record? What are Audit Fields in Salesforce? What is an Audit trail? What is a Queue in Salesforce? What is a Public Group Difference between static and dynamic dashboards in Salesforce? What are the different types of reports available in Sales...