SlideShare uma empresa Scribd logo
1 de 31
Development In
Salesforce
Introduction
Presented By:
Chetna Purohit
Salesforce.com
• Salesforce is the worlds' first and most popular CRM
system headquartered in San Francisco. With more than 82,000
companies and 100,000+ customers rely on this dynamic, web-based, low-
cost CRM platform.
• It was founded in March 1999 by former Oracle executive Marc Benioff
Salesforce.com has its services translated into 16different languages and
currently has 82,400 regular customers and over 2,100,000 subscribers
• Salesforce CRM provides a complete solution for that includes feature-rich
solutions for marketing, sales, services, partner management and
community management.
2
3
Salesforce CRMbenefits
• Low cost, low riskcloud based solution software service to
buy.
• Complete solution includes feature-rich solution for
marketing, sales, service, partnermanagement and
community management.
• Fast result because it drain resources on high value, low
cost and focus on innovation
4
Salesforce CRM is pay as-you-go. Different
pricing edition plans are available.
Contact Manager $5 /user/Month
Group $15 /user/Month
Professional $65 /user/Month
Unlimited $250 /user/Month
5
Salesforce is divided into different sets of tools referred to as "clouds”
•Sales Cloud
•Service Cloud
•Collaboration Cloud
Sales Cloud- Sales Cloud helps to sell products and Services, manage connection with
customer, and close more deals. Sales Cloud include Chatter, Social Contact,
Marketing and Leads, Data.com, Opportunities and quotes, Approval and Work
process, Files and Libraries, Analytics and Forecasting, Partner Management,
AppExchange, Email and calendaring
6
Collabration Cloud - Collabration cloud consist of Salesforce Chatter and
Radian6 service cloud which helps to connect with co-workers, customers,
and partners to share experience and information across.
Service Cloud - Service cloud increase agent productivity, reduces service
costs, and gain better visibility into Service Organization. It includes Customer
Portal, Live Agent, Contract and entitlement
7
Custom Cloud - Custom Cloud is infrastructure used to for building customized cloud
application development for automation, analytics and approval processes.
8
9
10
Salesforce.com, Inc. offers a family of products, and has thousands of
clients who use its service, but each company’s secure Web site is
separate from the other Web sites and might look different to suit their
unique needs like
• Sharing Rules / Org-Wide Default
• Approval Processes
• Junction Object
• Master-Detail / Lookup relationships
• Report / Report Types / Dashboards
• Data Loader / Import Wizard
• Formula Fields
• Analytical Snapshot
• Workflows
• Encrypted Fields / External Ids
• Governor Limits
11
General steps for building Salesforce.com
1. Creating Application Description
2. Add Relationships
3. Use Formulas and Validations
4. Automating Process using Workflow
5. Creating Approval Process
6. Creating Reports and Dashboards
7. Adding Programming Logic to Apex
8. Adding tests to your apps
9. Building Custom user Interface using Visual Force
10. Creating Public Web pages using Sites
13
1.Creating Application
• Creating field
• Fields can be set as unique, required or as external id. A
required field is always displayed in the edit page.
• A field of type external id is a record id from another system.
• Fields of type number, text and email can be set as external
id.
• Objects can have upto 500 custom fields.
• Each object can have up to three external ids
14
• Creating Record
• Record types allow you to offer different business processes, picklist values,
and page layouts to different users based on their profiles.
• Record types can be used in various ways, for example: Create record types
for opportunities to differentiate your regular sales deals from your
professional services engagements and offer different picklist values for each.
<CustomObject
xmlns="http://soap.sforce.com/2006/04/metadata">
<recordTypes>
<fullName>My First Recordtype</fullName>
</recordTypes>
</CustomObject>
15
2. Adding Relationships
• Creating Object
• Objects logically correspond to database tables in a relational database.
• Objects can be Standard orCustom. Standard are objects are predefined
by Salesforce like Accounts, Case, Contact etc
• Custom objects store information that is unique and important to your
organization. Custom objects are created by developers based upon
application requirements.
• Custom objects are reportable and search-able.
• Creating Record
The record type can be text or auto-number. Auto-number can take
values like A-{0001}, A-{0002} etc
16
Object Relationships
There are two main type of relationships in Salesforce
• Master-detail Relationship: It is Parent-Child relationship that
controls behaviour of detail object. They are tightly coupled. Maximum 2
Master-Detail relationship can be created in Salesforce for detail object
• Lookup Relationship : It is type of relation which link two objects together,
but has no effect on deletion or security. They are loosely coupled. Max 25
lookup relationship per child can be created.
17
3. Using Formula and Validation
18
19
salesforce.com
proprietary/confidential: customer
4.Automating Process using Workflow
• Setting of Workflow Rule
• Test the Workflow Rules
• Creating Approval Process
• Create an Email Template
• Create an Approval Process
• Create a Custom Profile
• Create a User
• Test the Approval Process
20
5. Workflow and Approval Process
•Involve automating business process Ex: Triggeran
alert
•Help us create business logic based on rules:
•Workflow rules can assign tasks users to update fields
orsend email alerts
•Approval processes allow users to submit sensitive
records like new contracts orpurchase orders for
approval
21
6. Creating Reports and Dashboards
a) Report Types:
 Tabular – Simple data listing without subtotals
 Summary – Data listing plus sorting and subtotaling of data
 Matrix – Summarizes data in a grid against X and Y axis
(similar to pivot table)
 All reports can be customized / personalized for individual reporting
needs
 Reporting engine limits the view of data to two sometimes three
object relationships
 "Smart" totaling means that duplicate data is counted only once in
any subtotal or total.
22salesforce.com
proprietary/confidential: customer
Report of Enterprise CRM Solution
23
b) Creating Dashboard
 Dashboards can only be created by Summary and
Matrix reports
 Security for Dashboards exists at the folder level
Recruiting App Dashboard of Enterprise CRMSolution
25
7. Adding Programming Logic to Apex
• Apex is a powerful object-oriented language, with many of the features
typically found in similar languages such as Java.
• Apex class consists features of the general language, such as arrays,
iteration, and querying the database.
• Apex is a development platform for building software as a service (SaaS)
applications on top of Salesforce.com's customer relationship
management (CRM) functionality.
• Apex allows developers to access Salesforce.com's back-end database
and client-server interfaces to create third-party SaaS applications.
• Apex includes an application program interface (API) that developers can
use to access user data on Salesforce.com.
26
8. Adding tests to your app
27
•Create an Apex Trigger Definition
• Defining List Variable
• Iterate Through the List and Modify
• Test the Trigger
Visual Force
shot
9. Building Custom user Interface using Visual Force
• Enable Visualforce Development Mode
• Create a Visualforce Page
• Add a Style sheet Static Resource
• Add a Controller to the Page
28
Visual Force
Visualforce is used to present the data to users. Salesforce’s Visual force
use MVC Design Pattern that used for managing your web application.
MVC pattern contains below three modules:
• Model
• View
• Controller
• Model: It describes what schema and data does Salesforce uses to
represent the system completely.. For example if the task is related to
business logic or handling Database you will write Bean classes or Java
classes, these classes comes under MODEL
• View: View describe how the schema and data is represented.  All the
representation type stuff like JSP page, HTML page, CSS, page layouts
style sheets
• Controller: It describe how the interface actions. Controllers are
used to perform the actions whenever users interact with visual force.
29
10. Creating Public Web pages using Sites
•Create Catalog Page
• Register a Force.com Domain Name
•Create a Force.com Site
•Configure and Test the Site
•Bonus Step—Updating the Page with AJAX
30
How Salesforce is Useful
• Salesforce.com offers a conclusive concept to deliver an easy to
use CRM Software as a service using a dynamic, scale free
cloud computing approach.
• This satisfies the customer demand and leverages cost
benefits for the customers of Salesforce.com.
• Salesforce does a lot to create a productive, collaborative
CRM environment.
• The success of Salesforce.com is based on an excellent
management, a clear company strategy and a business
model, which uses cutting edge technology combined with a
developer community and an easy to use platform, which is
delivered in a very cost effective manner
31
Thank you 
32

Mais conteúdo relacionado

Mais procurados

What Is Salesforce? | Salesforce Training - What Does Salesforce Do? | Salesf...
What Is Salesforce? | Salesforce Training - What Does Salesforce Do? | Salesf...What Is Salesforce? | Salesforce Training - What Does Salesforce Do? | Salesf...
What Is Salesforce? | Salesforce Training - What Does Salesforce Do? | Salesf...Edureka!
 
Session 1: INTRODUCTION TO SALESFORCE
Session 1: INTRODUCTION TO SALESFORCESession 1: INTRODUCTION TO SALESFORCE
Session 1: INTRODUCTION TO SALESFORCESmritiSharan1
 
Salesforce Tutorial for Beginners: Basic Salesforce Introduction
Salesforce Tutorial for Beginners: Basic Salesforce IntroductionSalesforce Tutorial for Beginners: Basic Salesforce Introduction
Salesforce Tutorial for Beginners: Basic Salesforce IntroductionHabilelabs
 
Salesforce online training || Salesforce Integration | salesforce lightning
Salesforce online training || Salesforce Integration | salesforce lightningSalesforce online training || Salesforce Integration | salesforce lightning
Salesforce online training || Salesforce Integration | salesforce lightningsuresh
 
Salesforce administrator training presentation slides
Salesforce administrator training presentation slides Salesforce administrator training presentation slides
Salesforce administrator training presentation slides Salesforce Associates
 
Introduction to Salesforce | Salesforce Tutorial for Beginners | Salesforce T...
Introduction to Salesforce | Salesforce Tutorial for Beginners | Salesforce T...Introduction to Salesforce | Salesforce Tutorial for Beginners | Salesforce T...
Introduction to Salesforce | Salesforce Tutorial for Beginners | Salesforce T...Edureka!
 
Introduction to Salesforce Platform - Basic
Introduction to Salesforce Platform - BasicIntroduction to Salesforce Platform - Basic
Introduction to Salesforce Platform - Basicsanskriti agarwal
 
Salesforce intro session_for_students_v2
Salesforce intro session_for_students_v2Salesforce intro session_for_students_v2
Salesforce intro session_for_students_v2Stephen Edache Paul
 
Salesforce complete overview
Salesforce complete overviewSalesforce complete overview
Salesforce complete overviewNitesh Mishra ☁
 
Salesforce Sales Cloud: Best Practices to Win More Deals
Salesforce Sales Cloud: Best Practices to Win More DealsSalesforce Sales Cloud: Best Practices to Win More Deals
Salesforce Sales Cloud: Best Practices to Win More DealsCloud Analogy
 
Introduction to Salesforce.com
Introduction to Salesforce.comIntroduction to Salesforce.com
Introduction to Salesforce.comEdureka!
 
Technology in Society-CRM-(Salesforce)-Business Strategy
Technology in Society-CRM-(Salesforce)-Business Strategy Technology in Society-CRM-(Salesforce)-Business Strategy
Technology in Society-CRM-(Salesforce)-Business Strategy Victoria University
 
Salesforce.com Overview
Salesforce.com OverviewSalesforce.com Overview
Salesforce.com OverviewEdureka!
 
Salesforce Marketing Cloud overview demo
Salesforce Marketing Cloud overview demoSalesforce Marketing Cloud overview demo
Salesforce Marketing Cloud overview demoAdama Sidibé
 
What Is Salesforce CRM? | Salesforce CRM Tutorial For Beginners | Salesforce ...
What Is Salesforce CRM? | Salesforce CRM Tutorial For Beginners | Salesforce ...What Is Salesforce CRM? | Salesforce CRM Tutorial For Beginners | Salesforce ...
What Is Salesforce CRM? | Salesforce CRM Tutorial For Beginners | Salesforce ...Edureka!
 
Salesforce Service Cloud - An overview
Salesforce Service Cloud - An overviewSalesforce Service Cloud - An overview
Salesforce Service Cloud - An overviewAjay Balakrishnan
 

Mais procurados (20)

What Is Salesforce? | Salesforce Training - What Does Salesforce Do? | Salesf...
What Is Salesforce? | Salesforce Training - What Does Salesforce Do? | Salesf...What Is Salesforce? | Salesforce Training - What Does Salesforce Do? | Salesf...
What Is Salesforce? | Salesforce Training - What Does Salesforce Do? | Salesf...
 
Session 1: INTRODUCTION TO SALESFORCE
Session 1: INTRODUCTION TO SALESFORCESession 1: INTRODUCTION TO SALESFORCE
Session 1: INTRODUCTION TO SALESFORCE
 
Salesforce Tutorial for Beginners: Basic Salesforce Introduction
Salesforce Tutorial for Beginners: Basic Salesforce IntroductionSalesforce Tutorial for Beginners: Basic Salesforce Introduction
Salesforce Tutorial for Beginners: Basic Salesforce Introduction
 
Salesforce online training || Salesforce Integration | salesforce lightning
Salesforce online training || Salesforce Integration | salesforce lightningSalesforce online training || Salesforce Integration | salesforce lightning
Salesforce online training || Salesforce Integration | salesforce lightning
 
Salesforce administrator training presentation slides
Salesforce administrator training presentation slides Salesforce administrator training presentation slides
Salesforce administrator training presentation slides
 
Why Salesforce is the best CRM
Why Salesforce is the best CRMWhy Salesforce is the best CRM
Why Salesforce is the best CRM
 
Introduction to Salesforce | Salesforce Tutorial for Beginners | Salesforce T...
Introduction to Salesforce | Salesforce Tutorial for Beginners | Salesforce T...Introduction to Salesforce | Salesforce Tutorial for Beginners | Salesforce T...
Introduction to Salesforce | Salesforce Tutorial for Beginners | Salesforce T...
 
Salesforce overview
Salesforce overviewSalesforce overview
Salesforce overview
 
Introduction to Salesforce Platform - Basic
Introduction to Salesforce Platform - BasicIntroduction to Salesforce Platform - Basic
Introduction to Salesforce Platform - Basic
 
Salesforce intro session_for_students_v2
Salesforce intro session_for_students_v2Salesforce intro session_for_students_v2
Salesforce intro session_for_students_v2
 
Salesforce complete overview
Salesforce complete overviewSalesforce complete overview
Salesforce complete overview
 
Salesforce Sales Cloud: Best Practices to Win More Deals
Salesforce Sales Cloud: Best Practices to Win More DealsSalesforce Sales Cloud: Best Practices to Win More Deals
Salesforce Sales Cloud: Best Practices to Win More Deals
 
Introduction to Salesforce.com
Introduction to Salesforce.comIntroduction to Salesforce.com
Introduction to Salesforce.com
 
Technology in Society-CRM-(Salesforce)-Business Strategy
Technology in Society-CRM-(Salesforce)-Business Strategy Technology in Society-CRM-(Salesforce)-Business Strategy
Technology in Society-CRM-(Salesforce)-Business Strategy
 
Salesforce 101
Salesforce 101Salesforce 101
Salesforce 101
 
Salesforce
SalesforceSalesforce
Salesforce
 
Salesforce.com Overview
Salesforce.com OverviewSalesforce.com Overview
Salesforce.com Overview
 
Salesforce Marketing Cloud overview demo
Salesforce Marketing Cloud overview demoSalesforce Marketing Cloud overview demo
Salesforce Marketing Cloud overview demo
 
What Is Salesforce CRM? | Salesforce CRM Tutorial For Beginners | Salesforce ...
What Is Salesforce CRM? | Salesforce CRM Tutorial For Beginners | Salesforce ...What Is Salesforce CRM? | Salesforce CRM Tutorial For Beginners | Salesforce ...
What Is Salesforce CRM? | Salesforce CRM Tutorial For Beginners | Salesforce ...
 
Salesforce Service Cloud - An overview
Salesforce Service Cloud - An overviewSalesforce Service Cloud - An overview
Salesforce Service Cloud - An overview
 

Destaque

PowerPoint demo samples
PowerPoint demo samplesPowerPoint demo samples
PowerPoint demo samplesCheryl Yiatras
 
The Role of the Salesforce Administrator
The Role of the Salesforce Administrator The Role of the Salesforce Administrator
The Role of the Salesforce Administrator Ebsta Limited
 
How Salesforce CRM works & who should use it?
How Salesforce CRM works & who should use it?How Salesforce CRM works & who should use it?
How Salesforce CRM works & who should use it?Suyati Technologies
 

Destaque (6)

Introduction to salesforce ppt
Introduction to salesforce pptIntroduction to salesforce ppt
Introduction to salesforce ppt
 
Build lightning components with salesforce dx
Build lightning components with salesforce dxBuild lightning components with salesforce dx
Build lightning components with salesforce dx
 
PowerPoint demo samples
PowerPoint demo samplesPowerPoint demo samples
PowerPoint demo samples
 
Top 10 Checklist For Successful Salesforce Implementation
Top 10 Checklist For Successful Salesforce ImplementationTop 10 Checklist For Successful Salesforce Implementation
Top 10 Checklist For Successful Salesforce Implementation
 
The Role of the Salesforce Administrator
The Role of the Salesforce Administrator The Role of the Salesforce Administrator
The Role of the Salesforce Administrator
 
How Salesforce CRM works & who should use it?
How Salesforce CRM works & who should use it?How Salesforce CRM works & who should use it?
How Salesforce CRM works & who should use it?
 

Semelhante a Salesforce Presentation

Dev day paris020415
Dev day paris020415Dev day paris020415
Dev day paris020415pdufourSFDC
 
WebServices using salesforce
WebServices using salesforceWebServices using salesforce
WebServices using salesforceRajkattamuri
 
webservices using salesforce
webservices using salesforcewebservices using salesforce
webservices using salesforcePraneethchampion
 
Salesforce Multitenant Architecture: How We Do the Magic We Do
Salesforce Multitenant Architecture: How We Do the Magic We DoSalesforce Multitenant Architecture: How We Do the Magic We Do
Salesforce Multitenant Architecture: How We Do the Magic We DoSalesforce Developers
 
Dynamic approach of salesforce development in business
Dynamic approach of salesforce development in businessDynamic approach of salesforce development in business
Dynamic approach of salesforce development in businessJanBask LLC
 
Enter the World of PowerApps - Canvas vs. Model-Driven Apps
Enter the World of PowerApps - Canvas vs. Model-Driven AppsEnter the World of PowerApps - Canvas vs. Model-Driven Apps
Enter the World of PowerApps - Canvas vs. Model-Driven AppsDaniel Laskewitz
 
Salesforce for marketing
Salesforce for marketingSalesforce for marketing
Salesforce for marketingBohdan Dovhań
 
CRM-UG Summit Phoenix 2018 - What is Common Data Model and how to use it?
CRM-UG Summit Phoenix 2018 - What is Common Data Model and how to use it?CRM-UG Summit Phoenix 2018 - What is Common Data Model and how to use it?
CRM-UG Summit Phoenix 2018 - What is Common Data Model and how to use it?Nicolas Georgeault
 
Chris2015 - Brief
Chris2015 - BriefChris2015 - Brief
Chris2015 - BriefChris Moore
 
Salesforce CRM: A new way of managing Customer Relationship in cloud environment
Salesforce CRM: A new way of managing Customer Relationship in cloud environmentSalesforce CRM: A new way of managing Customer Relationship in cloud environment
Salesforce CRM: A new way of managing Customer Relationship in cloud environmentEECJOURNAL
 
Our API Evolution: From Metadata to Tooling API for Building Incredible Apps
Our API Evolution: From Metadata to Tooling API for Building Incredible AppsOur API Evolution: From Metadata to Tooling API for Building Incredible Apps
Our API Evolution: From Metadata to Tooling API for Building Incredible AppsDreamforce
 
Web services using sales force.com
Web services using sales force.comWeb services using sales force.com
Web services using sales force.comVaishnavi
 
Webservices using salesforce
Webservices using salesforceWebservices using salesforce
Webservices using salesforceF K
 

Semelhante a Salesforce Presentation (20)

Salesforce
SalesforceSalesforce
Salesforce
 
Dev day paris020415
Dev day paris020415Dev day paris020415
Dev day paris020415
 
SFDC 3.0 RESUME
SFDC 3.0 RESUMESFDC 3.0 RESUME
SFDC 3.0 RESUME
 
WebServices using salesforce
WebServices using salesforceWebServices using salesforce
WebServices using salesforce
 
webservices using salesforce
webservices using salesforcewebservices using salesforce
webservices using salesforce
 
Salesforce Multitenant Architecture: How We Do the Magic We Do
Salesforce Multitenant Architecture: How We Do the Magic We DoSalesforce Multitenant Architecture: How We Do the Magic We Do
Salesforce Multitenant Architecture: How We Do the Magic We Do
 
Dynamic approach of salesforce development in business
Dynamic approach of salesforce development in businessDynamic approach of salesforce development in business
Dynamic approach of salesforce development in business
 
Enter the World of PowerApps - Canvas vs. Model-Driven Apps
Enter the World of PowerApps - Canvas vs. Model-Driven AppsEnter the World of PowerApps - Canvas vs. Model-Driven Apps
Enter the World of PowerApps - Canvas vs. Model-Driven Apps
 
Salesforce for marketing
Salesforce for marketingSalesforce for marketing
Salesforce for marketing
 
Resume
ResumeResume
Resume
 
CRM-UG Summit Phoenix 2018 - What is Common Data Model and how to use it?
CRM-UG Summit Phoenix 2018 - What is Common Data Model and how to use it?CRM-UG Summit Phoenix 2018 - What is Common Data Model and how to use it?
CRM-UG Summit Phoenix 2018 - What is Common Data Model and how to use it?
 
Salesforce PPT.pptx
Salesforce PPT.pptxSalesforce PPT.pptx
Salesforce PPT.pptx
 
Introducing Visualforce
Introducing VisualforceIntroducing Visualforce
Introducing Visualforce
 
downloadfile
downloadfiledownloadfile
downloadfile
 
Chris2015 - Brief
Chris2015 - BriefChris2015 - Brief
Chris2015 - Brief
 
Salesforce CRM: A new way of managing Customer Relationship in cloud environment
Salesforce CRM: A new way of managing Customer Relationship in cloud environmentSalesforce CRM: A new way of managing Customer Relationship in cloud environment
Salesforce CRM: A new way of managing Customer Relationship in cloud environment
 
Our API Evolution: From Metadata to Tooling API for Building Incredible Apps
Our API Evolution: From Metadata to Tooling API for Building Incredible AppsOur API Evolution: From Metadata to Tooling API for Building Incredible Apps
Our API Evolution: From Metadata to Tooling API for Building Incredible Apps
 
Web services using sales force.com
Web services using sales force.comWeb services using sales force.com
Web services using sales force.com
 
uppada_kishore_resume (1)
uppada_kishore_resume (1)uppada_kishore_resume (1)
uppada_kishore_resume (1)
 
Webservices using salesforce
Webservices using salesforceWebservices using salesforce
Webservices using salesforce
 

Último

Measures of Position DECILES for ungrouped data
Measures of Position DECILES for ungrouped dataMeasures of Position DECILES for ungrouped data
Measures of Position DECILES for ungrouped dataBabyAnnMotar
 
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxQ4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxlancelewisportillo
 
Oppenheimer Film Discussion for Philosophy and Film
Oppenheimer Film Discussion for Philosophy and FilmOppenheimer Film Discussion for Philosophy and Film
Oppenheimer Film Discussion for Philosophy and FilmStan Meyer
 
4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptxmary850239
 
ESP 4-EDITED.pdfmmcncncncmcmmnmnmncnmncmnnjvnnv
ESP 4-EDITED.pdfmmcncncncmcmmnmnmncnmncmnnjvnnvESP 4-EDITED.pdfmmcncncncmcmmnmnmncnmncmnnjvnnv
ESP 4-EDITED.pdfmmcncncncmcmmnmnmncnmncmnnjvnnvRicaMaeCastro1
 
Q-Factor General Quiz-7th April 2024, Quiz Club NITW
Q-Factor General Quiz-7th April 2024, Quiz Club NITWQ-Factor General Quiz-7th April 2024, Quiz Club NITW
Q-Factor General Quiz-7th April 2024, Quiz Club NITWQuiz Club NITW
 
Mental Health Awareness - a toolkit for supporting young minds
Mental Health Awareness - a toolkit for supporting young mindsMental Health Awareness - a toolkit for supporting young minds
Mental Health Awareness - a toolkit for supporting young mindsPooky Knightsmith
 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxHumphrey A Beña
 
Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4JOYLYNSAMANIEGO
 
Narcotic and Non Narcotic Analgesic..pdf
Narcotic and Non Narcotic Analgesic..pdfNarcotic and Non Narcotic Analgesic..pdf
Narcotic and Non Narcotic Analgesic..pdfPrerana Jadhav
 
MS4 level being good citizen -imperative- (1) (1).pdf
MS4 level   being good citizen -imperative- (1) (1).pdfMS4 level   being good citizen -imperative- (1) (1).pdf
MS4 level being good citizen -imperative- (1) (1).pdfMr Bounab Samir
 
ClimART Action | eTwinning Project
ClimART Action    |    eTwinning ProjectClimART Action    |    eTwinning Project
ClimART Action | eTwinning Projectjordimapav
 
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfJemuel Francisco
 
Man or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptx
Man or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptxMan or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptx
Man or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptxDhatriParmar
 
4.11.24 Mass Incarceration and the New Jim Crow.pptx
4.11.24 Mass Incarceration and the New Jim Crow.pptx4.11.24 Mass Incarceration and the New Jim Crow.pptx
4.11.24 Mass Incarceration and the New Jim Crow.pptxmary850239
 
Mythology Quiz-4th April 2024, Quiz Club NITW
Mythology Quiz-4th April 2024, Quiz Club NITWMythology Quiz-4th April 2024, Quiz Club NITW
Mythology Quiz-4th April 2024, Quiz Club NITWQuiz Club NITW
 
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptxBIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptxSayali Powar
 

Último (20)

Faculty Profile prashantha K EEE dept Sri Sairam college of Engineering
Faculty Profile prashantha K EEE dept Sri Sairam college of EngineeringFaculty Profile prashantha K EEE dept Sri Sairam college of Engineering
Faculty Profile prashantha K EEE dept Sri Sairam college of Engineering
 
Measures of Position DECILES for ungrouped data
Measures of Position DECILES for ungrouped dataMeasures of Position DECILES for ungrouped data
Measures of Position DECILES for ungrouped data
 
prashanth updated resume 2024 for Teaching Profession
prashanth updated resume 2024 for Teaching Professionprashanth updated resume 2024 for Teaching Profession
prashanth updated resume 2024 for Teaching Profession
 
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxQ4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
 
Oppenheimer Film Discussion for Philosophy and Film
Oppenheimer Film Discussion for Philosophy and FilmOppenheimer Film Discussion for Philosophy and Film
Oppenheimer Film Discussion for Philosophy and Film
 
4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx
 
ESP 4-EDITED.pdfmmcncncncmcmmnmnmncnmncmnnjvnnv
ESP 4-EDITED.pdfmmcncncncmcmmnmnmncnmncmnnjvnnvESP 4-EDITED.pdfmmcncncncmcmmnmnmncnmncmnnjvnnv
ESP 4-EDITED.pdfmmcncncncmcmmnmnmncnmncmnnjvnnv
 
Q-Factor General Quiz-7th April 2024, Quiz Club NITW
Q-Factor General Quiz-7th April 2024, Quiz Club NITWQ-Factor General Quiz-7th April 2024, Quiz Club NITW
Q-Factor General Quiz-7th April 2024, Quiz Club NITW
 
Mental Health Awareness - a toolkit for supporting young minds
Mental Health Awareness - a toolkit for supporting young mindsMental Health Awareness - a toolkit for supporting young minds
Mental Health Awareness - a toolkit for supporting young minds
 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
 
Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4
 
Narcotic and Non Narcotic Analgesic..pdf
Narcotic and Non Narcotic Analgesic..pdfNarcotic and Non Narcotic Analgesic..pdf
Narcotic and Non Narcotic Analgesic..pdf
 
MS4 level being good citizen -imperative- (1) (1).pdf
MS4 level   being good citizen -imperative- (1) (1).pdfMS4 level   being good citizen -imperative- (1) (1).pdf
MS4 level being good citizen -imperative- (1) (1).pdf
 
INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptxINCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
 
ClimART Action | eTwinning Project
ClimART Action    |    eTwinning ProjectClimART Action    |    eTwinning Project
ClimART Action | eTwinning Project
 
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
 
Man or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptx
Man or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptxMan or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptx
Man or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptx
 
4.11.24 Mass Incarceration and the New Jim Crow.pptx
4.11.24 Mass Incarceration and the New Jim Crow.pptx4.11.24 Mass Incarceration and the New Jim Crow.pptx
4.11.24 Mass Incarceration and the New Jim Crow.pptx
 
Mythology Quiz-4th April 2024, Quiz Club NITW
Mythology Quiz-4th April 2024, Quiz Club NITWMythology Quiz-4th April 2024, Quiz Club NITW
Mythology Quiz-4th April 2024, Quiz Club NITW
 
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptxBIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
 

Salesforce Presentation

  • 2. Salesforce.com • Salesforce is the worlds' first and most popular CRM system headquartered in San Francisco. With more than 82,000 companies and 100,000+ customers rely on this dynamic, web-based, low- cost CRM platform. • It was founded in March 1999 by former Oracle executive Marc Benioff Salesforce.com has its services translated into 16different languages and currently has 82,400 regular customers and over 2,100,000 subscribers • Salesforce CRM provides a complete solution for that includes feature-rich solutions for marketing, sales, services, partner management and community management. 2
  • 3. 3 Salesforce CRMbenefits • Low cost, low riskcloud based solution software service to buy. • Complete solution includes feature-rich solution for marketing, sales, service, partnermanagement and community management. • Fast result because it drain resources on high value, low cost and focus on innovation
  • 4. 4
  • 5. Salesforce CRM is pay as-you-go. Different pricing edition plans are available. Contact Manager $5 /user/Month Group $15 /user/Month Professional $65 /user/Month Unlimited $250 /user/Month 5
  • 6. Salesforce is divided into different sets of tools referred to as "clouds” •Sales Cloud •Service Cloud •Collaboration Cloud Sales Cloud- Sales Cloud helps to sell products and Services, manage connection with customer, and close more deals. Sales Cloud include Chatter, Social Contact, Marketing and Leads, Data.com, Opportunities and quotes, Approval and Work process, Files and Libraries, Analytics and Forecasting, Partner Management, AppExchange, Email and calendaring 6
  • 7. Collabration Cloud - Collabration cloud consist of Salesforce Chatter and Radian6 service cloud which helps to connect with co-workers, customers, and partners to share experience and information across. Service Cloud - Service cloud increase agent productivity, reduces service costs, and gain better visibility into Service Organization. It includes Customer Portal, Live Agent, Contract and entitlement 7
  • 8. Custom Cloud - Custom Cloud is infrastructure used to for building customized cloud application development for automation, analytics and approval processes. 8
  • 9. 9
  • 10. 10
  • 11. Salesforce.com, Inc. offers a family of products, and has thousands of clients who use its service, but each company’s secure Web site is separate from the other Web sites and might look different to suit their unique needs like • Sharing Rules / Org-Wide Default • Approval Processes • Junction Object • Master-Detail / Lookup relationships • Report / Report Types / Dashboards • Data Loader / Import Wizard • Formula Fields • Analytical Snapshot • Workflows • Encrypted Fields / External Ids • Governor Limits 11
  • 12. General steps for building Salesforce.com 1. Creating Application Description 2. Add Relationships 3. Use Formulas and Validations 4. Automating Process using Workflow 5. Creating Approval Process 6. Creating Reports and Dashboards 7. Adding Programming Logic to Apex 8. Adding tests to your apps 9. Building Custom user Interface using Visual Force 10. Creating Public Web pages using Sites 13
  • 13. 1.Creating Application • Creating field • Fields can be set as unique, required or as external id. A required field is always displayed in the edit page. • A field of type external id is a record id from another system. • Fields of type number, text and email can be set as external id. • Objects can have upto 500 custom fields. • Each object can have up to three external ids 14
  • 14. • Creating Record • Record types allow you to offer different business processes, picklist values, and page layouts to different users based on their profiles. • Record types can be used in various ways, for example: Create record types for opportunities to differentiate your regular sales deals from your professional services engagements and offer different picklist values for each. <CustomObject xmlns="http://soap.sforce.com/2006/04/metadata"> <recordTypes> <fullName>My First Recordtype</fullName> </recordTypes> </CustomObject> 15
  • 15. 2. Adding Relationships • Creating Object • Objects logically correspond to database tables in a relational database. • Objects can be Standard orCustom. Standard are objects are predefined by Salesforce like Accounts, Case, Contact etc • Custom objects store information that is unique and important to your organization. Custom objects are created by developers based upon application requirements. • Custom objects are reportable and search-able. • Creating Record The record type can be text or auto-number. Auto-number can take values like A-{0001}, A-{0002} etc 16
  • 16. Object Relationships There are two main type of relationships in Salesforce • Master-detail Relationship: It is Parent-Child relationship that controls behaviour of detail object. They are tightly coupled. Maximum 2 Master-Detail relationship can be created in Salesforce for detail object • Lookup Relationship : It is type of relation which link two objects together, but has no effect on deletion or security. They are loosely coupled. Max 25 lookup relationship per child can be created. 17
  • 17. 3. Using Formula and Validation 18
  • 18. 19
  • 19. salesforce.com proprietary/confidential: customer 4.Automating Process using Workflow • Setting of Workflow Rule • Test the Workflow Rules • Creating Approval Process • Create an Email Template • Create an Approval Process • Create a Custom Profile • Create a User • Test the Approval Process 20
  • 20. 5. Workflow and Approval Process •Involve automating business process Ex: Triggeran alert •Help us create business logic based on rules: •Workflow rules can assign tasks users to update fields orsend email alerts •Approval processes allow users to submit sensitive records like new contracts orpurchase orders for approval 21
  • 21. 6. Creating Reports and Dashboards a) Report Types:  Tabular – Simple data listing without subtotals  Summary – Data listing plus sorting and subtotaling of data  Matrix – Summarizes data in a grid against X and Y axis (similar to pivot table)  All reports can be customized / personalized for individual reporting needs  Reporting engine limits the view of data to two sometimes three object relationships  "Smart" totaling means that duplicate data is counted only once in any subtotal or total. 22salesforce.com proprietary/confidential: customer
  • 22. Report of Enterprise CRM Solution 23
  • 23. b) Creating Dashboard  Dashboards can only be created by Summary and Matrix reports  Security for Dashboards exists at the folder level
  • 24. Recruiting App Dashboard of Enterprise CRMSolution 25
  • 25. 7. Adding Programming Logic to Apex • Apex is a powerful object-oriented language, with many of the features typically found in similar languages such as Java. • Apex class consists features of the general language, such as arrays, iteration, and querying the database. • Apex is a development platform for building software as a service (SaaS) applications on top of Salesforce.com's customer relationship management (CRM) functionality. • Apex allows developers to access Salesforce.com's back-end database and client-server interfaces to create third-party SaaS applications. • Apex includes an application program interface (API) that developers can use to access user data on Salesforce.com. 26
  • 26. 8. Adding tests to your app 27 •Create an Apex Trigger Definition • Defining List Variable • Iterate Through the List and Modify • Test the Trigger
  • 27. Visual Force shot 9. Building Custom user Interface using Visual Force • Enable Visualforce Development Mode • Create a Visualforce Page • Add a Style sheet Static Resource • Add a Controller to the Page 28
  • 28. Visual Force Visualforce is used to present the data to users. Salesforce’s Visual force use MVC Design Pattern that used for managing your web application. MVC pattern contains below three modules: • Model • View • Controller • Model: It describes what schema and data does Salesforce uses to represent the system completely.. For example if the task is related to business logic or handling Database you will write Bean classes or Java classes, these classes comes under MODEL • View: View describe how the schema and data is represented.  All the representation type stuff like JSP page, HTML page, CSS, page layouts style sheets • Controller: It describe how the interface actions. Controllers are used to perform the actions whenever users interact with visual force. 29
  • 29. 10. Creating Public Web pages using Sites •Create Catalog Page • Register a Force.com Domain Name •Create a Force.com Site •Configure and Test the Site •Bonus Step—Updating the Page with AJAX 30
  • 30. How Salesforce is Useful • Salesforce.com offers a conclusive concept to deliver an easy to use CRM Software as a service using a dynamic, scale free cloud computing approach. • This satisfies the customer demand and leverages cost benefits for the customers of Salesforce.com. • Salesforce does a lot to create a productive, collaborative CRM environment. • The success of Salesforce.com is based on an excellent management, a clear company strategy and a business model, which uses cutting edge technology combined with a developer community and an easy to use platform, which is delivered in a very cost effective manner 31

Notas do Editor

  1. Notes :
  2. Notes : This slide lays out the basic record types in Salesforce, and how they relate to each other. Each record type has a corresponding color. These colors will help you identify the record you are viewing. For example, Lead = orange (rust) Account = blue Contact = purple Opportunity = yellow/gold
  3. Notes :