SlideShare una empresa de Scribd logo
1 de 16
Descargar para leer sin conexión
Getting Started with SalesForce CRM
Getting Started with SALESFORCE Part III

Description:

BISP is committed to provide BEST learning material to the beginners and
advance learners. In the same series, we have prepared a complete end-to
end Hands-on Beginner’s Guide for SalesForce. The document focuses on
various aspects of validation. Join our professional training program and
learn from experts.

History:
Version
0.1
0.1

Description Change
Initial Draft
Review#1

www.bispsolutions.com
Page 1

Author
Publish Date
Chandra Prakash Sharma 20th July 2012
Amit Sharma
20th July 2012

www.bisptrainigs.com

www.hyperionguru.com
Contents
Contents.......................................................................................................................... 2
Field Dependencies in SalesForce.................................................................................... 3
What is validation in SalesForce ..................................................................................... 6
Why Need Validation................................................................................................. 6
How to use Validation in SalesForce ............................................................................6
How to use Function in validation ................................................................................9
Default Value .......................................................................................................... 11
Formula Field's ............................................................................................................. 13

www.bispsolutions.com
Page 2

www.bisptrainigs.com

www.hyperionguru.com
Field Dependencies in SalesForce
Field Dependency called as picklist field dependencies in salesforce.com, picklist field
is a dropdown list. you can select available value on picklist.
There is two type picklist field dependencies in SalesForce.com
1. Standard Picklist :- Standard Picklist you can select one value at one time.
2. Multi Select picklist :- Multi Select picklist you can select one or more values at one
time.
Field Dependencies sub field(sub value) depend on Super field(Super value).
SalesForce provide the allow to field dependency.
How To Create field dependencies in SalesForce :Click on Setup - >Build -> Create -> Objects -> find Custom Fields &
Relationship in section you can see Field Dependencies you can see below image.

Click on this

Click on Field Dependencies button and new show on below screen. Then click to
New button.

www.bispsolutions.com
Page 3

www.bisptrainigs.com

www.hyperionguru.com
There is two field's Controlling field and Dependent field choose field's and click to
Continue button.

After that you will see new screen show on below screen .
There is show on screen Location and sub Location if want select any field double
click on cell for selecting. same as unselecting double click on cell. and click To Save
button.

www.bispsolutions.com
Page 4

www.bisptrainigs.com

www.hyperionguru.com
if want see Preview Click to Preview button open popup window show preview below
screen.

After set the Field Dependencies you can check now
go to Objects Create and click to any custom field and click to New button. Show on
below screen.

www.bispsolutions.com
Page 5

www.bisptrainigs.com

www.hyperionguru.com
you can see
these are
Dependencies

What is validation in SalesForce
validation verify that the data client side or server side, user enters in a record and
user not allow to wrong entry in the database. it will inform to you front end give error
message.

Why Need Validation
User Can not be entered wrong entry on given field's.
For Ex :- When using Custom Fields & Relationships and by mistake save data Maxx
pay 350000
and Min Pay 450000. This is wrong value save in data base. in database wrong value
not save and check all value on First time save database use validation. Show in below
screen.

Check Both Value there is
maxx pay is less then to min
pay.

How to use Validation in SalesForce
Go to Setup -> objects -> select any Custom objects -> find the Validation
Rules show in below screen.

Click to New Button after that show new screen you can see below

www.bispsolutions.com
Page 6

www.bisptrainigs.com

www.hyperionguru.com
Step 1# :-

Give the role
name

Give the Role Name after that come to Error Condition Formula Click to Insert Field
button Show pop window you can see
Select the custom object and choose value
which want to perform operation and click to insert button.
Then Click to Insert Operator button for inserting operator (choose '< Less Then'
Operator) and again click to Insert Field button to add Min pay after that click on
Check Syntax button for checking Syntax.
you can see below screen.

www.bispsolutions.com
Page 7

www.bisptrainigs.com

www.hyperionguru.com
and you can all show add error message when you enter wrong value. you can see
below

Give The proper Error
message

Select your Error location where
to show the error message check
the radio button.

Click to Save button Save validation.
After that you can check this validation Click to custom object tab (Ex :- Departments)
click to New button and Give the wrong value in (Ex :- maxx_pay < min_pay [Maxx
pay 350000 or Min pay 450000 ])
you can see in below screen.

www.bispsolutions.com
Page 8

www.bisptrainigs.com

www.hyperionguru.com
When you provide value is correct min value < less then max value this data save
successfully.

How to use Function in validation
Let's be use AND function. Click find the Functions in Validation Rule and select the
AND function.
there is few step show on below screen Step 1# :- You can show in page Function. Add to function tow way
i.) Double click on selected function.
ii.) select the function and click to Insert Selected Functions button.
After add function you can see below image.

Step 2# :- AND (logic1, logic2, . . .) . Clear the this area (logic1, logic2, . .) after that
Step 3# :- AND() go to function select ISPICKVAL Double click on ISPICKVAL .

www.bispsolutions.com
Page 9

www.bisptrainigs.com

www.hyperionguru.com
Step 4# :- after that look like
- AND( ISPICKVAL(picklist_field, text_literal) )
Remove picklist_field and insert field Status__c
- AND( ISPICKVAL(Status__c, text_literal) )
Remove the text_literal write here 'Closed' [This is value of pick list].
- AND( ISPICKVAL(Status__c , 'Closed') )
Step 5# :- Select other function
- AND(ISPICKVAL( Status__c , 'close'), ISBLANK (expression) )
Step 6# :- remove the expression and Insert Field
- AND( ISPICKVAL( Status__c , 'close'), ISBLANK( Close_date__c ) )
Step 7# :- Write the Error Message and select the Error Location click to Save
button.
you can see in below screen

After Save you can see the what error is occurred when without giving close date
status is closed and try to save data.

www.bispsolutions.com
Page 10

www.bisptrainigs.com

www.hyperionguru.com
You can see the error
on close date and
open date status is
closed

Default Value
when you add new field like a(ex :- add new department) there is one field is open date
you don't want to add date, this filed add automatically and this filed add default date.
you can see the below screen

This Date Field want to get Default
value.

How To set Default Value :Click to setup -> Build -> create -> object -> select your custom object(Ex :Departments) -> Select you Custom Field & Relationship (Ex :- Open Date) you can
see below screen.

www.bispsolutions.com
Page 11

www.bisptrainigs.com

www.hyperionguru.com
After that click on Edit button.
Then find default value and click on Show Formula Editor Hyper link.
And there is you can see Bottom -Right side on screen Function in function you find
the TODAY().
TODAY() :- TODAY() function return type current date.
Select this function and click to Insert Selection Function button. all these work you
can see below screen. After that Click to Save button.

After That you can go Custom objects(Ex :- Departments) and Click to New button
there is you can see in open date field already fill by current date.
And you can all so change this date click on Text box or Click on date label.

www.bispsolutions.com
Page 12

www.bisptrainigs.com

www.hyperionguru.com
See the open date field is fill
current date.

Formula Field's
Formula is a validation rules, it can manage field's data.
How to Set Formula field :- click to Setup -> Go to objects -> Select you Custom
object (Ex :- Departments) -> and find Custom Fields & Relationships click to New
button
Step 1 :- there is find Formula Radio Button. Checked this Radio Button click to Next
button. you can see below screen.

Step 2 :There is 7 Formula Return Type :1.) Checkbox
2.) Currency
3.) Date
4.) Date/Time
5.) Number
6.) Percent
7.) Text
Fill the Field Label and checked(Any Radio button), I will go Date radio button after
then click to Next button.

www.bispsolutions.com
Page 13

www.bisptrainigs.com

www.hyperionguru.com
Give Label Name

Step 3 :- After Gating Formula Field there show to Tab Simple Formula and
Advance Formula select Advance Formula because there is more option available.
Click to Next button.

Write This formula for
last Date

Step 4 :After that show new screen below Click to Next button Go to next step.

www.bispsolutions.com
Page 14

www.bisptrainigs.com

www.hyperionguru.com
Step 5 :- Click to Save button save this formula.

After that you will check this formula how is it work click to custom objects (Ex :Departments) --> select any custom objects(Ex :- Non IT ) you can see below how is
show last date function.

www.bispsolutions.com
Page 15

www.bisptrainigs.com

www.hyperionguru.com
There is show last date of
Month

www.bispsolutions.com
Page 16

www.bisptrainigs.com

www.hyperionguru.com

Más contenido relacionado

La actualidad más candente

Sales force lab 9
Sales force lab 9Sales force lab 9
Sales force lab 9Amit Sharma
 
Steps to Fill employee expense sheet OfficeTimer
Steps to Fill employee expense sheet OfficeTimerSteps to Fill employee expense sheet OfficeTimer
Steps to Fill employee expense sheet OfficeTimerOfficeTimer
 
Recruitment process through core hr
Recruitment process through core hrRecruitment process through core hr
Recruitment process through core hrFeras Ahmad
 
Admin Habits & Hacks Handout - Salesforce World Tour Boston
Admin Habits & Hacks Handout - Salesforce World Tour BostonAdmin Habits & Hacks Handout - Salesforce World Tour Boston
Admin Habits & Hacks Handout - Salesforce World Tour BostonSalesforce Admins
 
Emi chapter 2 - step 1 - rev 1 - logging into the job
Emi   chapter 2 - step 1 - rev 1 - logging into the jobEmi   chapter 2 - step 1 - rev 1 - logging into the job
Emi chapter 2 - step 1 - rev 1 - logging into the jobJeff Weiberg
 
Using Selling on Amazon Feature in Amazon Webstore
Using Selling on Amazon Feature in Amazon WebstoreUsing Selling on Amazon Feature in Amazon Webstore
Using Selling on Amazon Feature in Amazon WebstoreGoWebBaby
 
Staffconnect Staff Quickstart Guide
Staffconnect Staff Quickstart GuideStaffconnect Staff Quickstart Guide
Staffconnect Staff Quickstart GuideAnh Lê
 
Employee contract management in odoo 13
Employee contract management in odoo 13Employee contract management in odoo 13
Employee contract management in odoo 13PlanetOdoo
 
2 create a simple form in chrono forms
2 create a simple form in chrono forms2 create a simple form in chrono forms
2 create a simple form in chrono formspvenky1578
 
4 building a joomla registration form using chrono forms
4 building a joomla registration form using chrono forms4 building a joomla registration form using chrono forms
4 building a joomla registration form using chrono formspvenky1578
 
JF application step by step DEF
JF application step by step DEFJF application step by step DEF
JF application step by step DEFpascaldecroos
 
hotel booking feedback Sudha
hotel booking feedback Sudhahotel booking feedback Sudha
hotel booking feedback Sudhascubeuser31
 
Enable timeoff display in timesheet
Enable timeoff display in timesheetEnable timeoff display in timesheet
Enable timeoff display in timesheetOfficeTimer
 
Add _Edit_Delete_tasks in officetimer
Add _Edit_Delete_tasks in officetimerAdd _Edit_Delete_tasks in officetimer
Add _Edit_Delete_tasks in officetimerOfficeTimer
 
Tutorial to fill timesheet in OfficeTimer
Tutorial to fill timesheet in OfficeTimerTutorial to fill timesheet in OfficeTimer
Tutorial to fill timesheet in OfficeTimerOfficeTimer
 
Follow up email_for_magento_2_user_guide
Follow up email_for_magento_2_user_guideFollow up email_for_magento_2_user_guide
Follow up email_for_magento_2_user_guideAmasty
 
Intrucciones reto NFV/ Instruction to apply to nfv challenge
Intrucciones reto NFV/ Instruction to apply to nfv challengeIntrucciones reto NFV/ Instruction to apply to nfv challenge
Intrucciones reto NFV/ Instruction to apply to nfv challengevideos
 
How to set up subcontracting in odoo 13 manufacturing
How to set up subcontracting in odoo 13 manufacturingHow to set up subcontracting in odoo 13 manufacturing
How to set up subcontracting in odoo 13 manufacturingPlanetOdoo
 
Project report Rs Dry celaners
Project report Rs Dry celaners Project report Rs Dry celaners
Project report Rs Dry celaners Nitesh Singh
 

La actualidad más candente (20)

Sales force lab 9
Sales force lab 9Sales force lab 9
Sales force lab 9
 
Steps to Fill employee expense sheet OfficeTimer
Steps to Fill employee expense sheet OfficeTimerSteps to Fill employee expense sheet OfficeTimer
Steps to Fill employee expense sheet OfficeTimer
 
Epic net content
Epic net contentEpic net content
Epic net content
 
Recruitment process through core hr
Recruitment process through core hrRecruitment process through core hr
Recruitment process through core hr
 
Admin Habits & Hacks Handout - Salesforce World Tour Boston
Admin Habits & Hacks Handout - Salesforce World Tour BostonAdmin Habits & Hacks Handout - Salesforce World Tour Boston
Admin Habits & Hacks Handout - Salesforce World Tour Boston
 
Emi chapter 2 - step 1 - rev 1 - logging into the job
Emi   chapter 2 - step 1 - rev 1 - logging into the jobEmi   chapter 2 - step 1 - rev 1 - logging into the job
Emi chapter 2 - step 1 - rev 1 - logging into the job
 
Using Selling on Amazon Feature in Amazon Webstore
Using Selling on Amazon Feature in Amazon WebstoreUsing Selling on Amazon Feature in Amazon Webstore
Using Selling on Amazon Feature in Amazon Webstore
 
Staffconnect Staff Quickstart Guide
Staffconnect Staff Quickstart GuideStaffconnect Staff Quickstart Guide
Staffconnect Staff Quickstart Guide
 
Employee contract management in odoo 13
Employee contract management in odoo 13Employee contract management in odoo 13
Employee contract management in odoo 13
 
2 create a simple form in chrono forms
2 create a simple form in chrono forms2 create a simple form in chrono forms
2 create a simple form in chrono forms
 
4 building a joomla registration form using chrono forms
4 building a joomla registration form using chrono forms4 building a joomla registration form using chrono forms
4 building a joomla registration form using chrono forms
 
JF application step by step DEF
JF application step by step DEFJF application step by step DEF
JF application step by step DEF
 
hotel booking feedback Sudha
hotel booking feedback Sudhahotel booking feedback Sudha
hotel booking feedback Sudha
 
Enable timeoff display in timesheet
Enable timeoff display in timesheetEnable timeoff display in timesheet
Enable timeoff display in timesheet
 
Add _Edit_Delete_tasks in officetimer
Add _Edit_Delete_tasks in officetimerAdd _Edit_Delete_tasks in officetimer
Add _Edit_Delete_tasks in officetimer
 
Tutorial to fill timesheet in OfficeTimer
Tutorial to fill timesheet in OfficeTimerTutorial to fill timesheet in OfficeTimer
Tutorial to fill timesheet in OfficeTimer
 
Follow up email_for_magento_2_user_guide
Follow up email_for_magento_2_user_guideFollow up email_for_magento_2_user_guide
Follow up email_for_magento_2_user_guide
 
Intrucciones reto NFV/ Instruction to apply to nfv challenge
Intrucciones reto NFV/ Instruction to apply to nfv challengeIntrucciones reto NFV/ Instruction to apply to nfv challenge
Intrucciones reto NFV/ Instruction to apply to nfv challenge
 
How to set up subcontracting in odoo 13 manufacturing
How to set up subcontracting in odoo 13 manufacturingHow to set up subcontracting in odoo 13 manufacturing
How to set up subcontracting in odoo 13 manufacturing
 
Project report Rs Dry celaners
Project report Rs Dry celaners Project report Rs Dry celaners
Project report Rs Dry celaners
 

Destacado

183201020 sales force-class-5
183201020 sales force-class-5183201020 sales force-class-5
183201020 sales force-class-5Amit Sharma
 
183207316 sales force-class-14
183207316 sales force-class-14183207316 sales force-class-14
183207316 sales force-class-14Amit Sharma
 
Bisp sales force-course-curriculumn
Bisp sales force-course-curriculumnBisp sales force-course-curriculumn
Bisp sales force-course-curriculumnAmit Sharma
 
Sales force certification-lab-ii
Sales force certification-lab-iiSales force certification-lab-ii
Sales force certification-lab-iiAmit Sharma
 
Visualforce controllers
Visualforce controllersVisualforce controllers
Visualforce controllersAmit Sharma
 
E mail and-workflow-administation
E mail and-workflow-administationE mail and-workflow-administation
E mail and-workflow-administationAmit Sharma
 
Sales force certification-lab
Sales force certification-labSales force certification-lab
Sales force certification-labAmit Sharma
 
Force.com migration utility
Force.com migration utilityForce.com migration utility
Force.com migration utilityAmit Sharma
 
Sales force managing-data
Sales force managing-dataSales force managing-data
Sales force managing-dataAmit Sharma
 
Security and-data-access-document
Security and-data-access-documentSecurity and-data-access-document
Security and-data-access-documentAmit Sharma
 
Apex code-fundamentals
Apex code-fundamentalsApex code-fundamentals
Apex code-fundamentalsAmit Sharma
 
Salesforce interview-preparation-toolkit-formula-and-validation-rules-in-sale...
Salesforce interview-preparation-toolkit-formula-and-validation-rules-in-sale...Salesforce interview-preparation-toolkit-formula-and-validation-rules-in-sale...
Salesforce interview-preparation-toolkit-formula-and-validation-rules-in-sale...Amit Sharma
 

Destacado (12)

183201020 sales force-class-5
183201020 sales force-class-5183201020 sales force-class-5
183201020 sales force-class-5
 
183207316 sales force-class-14
183207316 sales force-class-14183207316 sales force-class-14
183207316 sales force-class-14
 
Bisp sales force-course-curriculumn
Bisp sales force-course-curriculumnBisp sales force-course-curriculumn
Bisp sales force-course-curriculumn
 
Sales force certification-lab-ii
Sales force certification-lab-iiSales force certification-lab-ii
Sales force certification-lab-ii
 
Visualforce controllers
Visualforce controllersVisualforce controllers
Visualforce controllers
 
E mail and-workflow-administation
E mail and-workflow-administationE mail and-workflow-administation
E mail and-workflow-administation
 
Sales force certification-lab
Sales force certification-labSales force certification-lab
Sales force certification-lab
 
Force.com migration utility
Force.com migration utilityForce.com migration utility
Force.com migration utility
 
Sales force managing-data
Sales force managing-dataSales force managing-data
Sales force managing-data
 
Security and-data-access-document
Security and-data-access-documentSecurity and-data-access-document
Security and-data-access-document
 
Apex code-fundamentals
Apex code-fundamentalsApex code-fundamentals
Apex code-fundamentals
 
Salesforce interview-preparation-toolkit-formula-and-validation-rules-in-sale...
Salesforce interview-preparation-toolkit-formula-and-validation-rules-in-sale...Salesforce interview-preparation-toolkit-formula-and-validation-rules-in-sale...
Salesforce interview-preparation-toolkit-formula-and-validation-rules-in-sale...
 

Similar a Sales force class-3

KP Salesforce PPT Part I.pptx
KP Salesforce PPT Part I.pptxKP Salesforce PPT Part I.pptx
KP Salesforce PPT Part I.pptxSarasJain8
 
Sales force certification-lab
Sales force certification-labSales force certification-lab
Sales force certification-labAmit Sharma
 
COVID-19 SAP SuccessFactors Candidate Relationship Management (CRM) Configura...
COVID-19 SAP SuccessFactors Candidate Relationship Management (CRM) Configura...COVID-19 SAP SuccessFactors Candidate Relationship Management (CRM) Configura...
COVID-19 SAP SuccessFactors Candidate Relationship Management (CRM) Configura...Rizing HCM
 
SAP ABAP lsmw beginner lerning tutorial.pdf
SAP ABAP lsmw beginner lerning tutorial.pdfSAP ABAP lsmw beginner lerning tutorial.pdf
SAP ABAP lsmw beginner lerning tutorial.pdfPhani Pavan
 
SAP ABAP lsmw beginner lerning tutorial.pdf
SAP ABAP lsmw beginner lerning tutorial.pdfSAP ABAP lsmw beginner lerning tutorial.pdf
SAP ABAP lsmw beginner lerning tutorial.pdfPhani Pavan
 
Getting started-with-oracle-so a-viii
Getting started-with-oracle-so a-viiiGetting started-with-oracle-so a-viii
Getting started-with-oracle-so a-viiiAmit Sharma
 
FDMEE script examples
FDMEE script examplesFDMEE script examples
FDMEE script examplesAmit Sharma
 
FDMEE script examples
FDMEE script examplesFDMEE script examples
FDMEE script examplesAmit Soni
 
This is part 1 of 3STEP 1 Modify the clsDataLayer to Use a Two-St.docx
This is part 1 of 3STEP 1 Modify the clsDataLayer to Use a Two-St.docxThis is part 1 of 3STEP 1 Modify the clsDataLayer to Use a Two-St.docx
This is part 1 of 3STEP 1 Modify the clsDataLayer to Use a Two-St.docxabhi353063
 
How to design a report with fine report reporting tool
How to design a report with  fine report reporting toolHow to design a report with  fine report reporting tool
How to design a report with fine report reporting toolFineReport Reporting Tool
 
Lsmw (Legacy System Migration Workbench)
Lsmw (Legacy System Migration Workbench)Lsmw (Legacy System Migration Workbench)
Lsmw (Legacy System Migration Workbench)Leila Morteza
 
Computer Assignment #2 Company Database GuideCustomer Table Da.docx
Computer Assignment #2 Company Database GuideCustomer Table Da.docxComputer Assignment #2 Company Database GuideCustomer Table Da.docx
Computer Assignment #2 Company Database GuideCustomer Table Da.docxzollyjenkins
 
111Assignment Learning ObjectivesBSIS 105Assignment 3Purc.docx
111Assignment Learning ObjectivesBSIS 105Assignment 3Purc.docx111Assignment Learning ObjectivesBSIS 105Assignment 3Purc.docx
111Assignment Learning ObjectivesBSIS 105Assignment 3Purc.docxhyacinthshackley2629
 
Crm quote process ppt
Crm quote process pptCrm quote process ppt
Crm quote process pptKris
 
Crm quote process ppt
Crm quote process pptCrm quote process ppt
Crm quote process pptKris
 

Similar a Sales force class-3 (20)

KP Salesforce PPT Part I.pptx
KP Salesforce PPT Part I.pptxKP Salesforce PPT Part I.pptx
KP Salesforce PPT Part I.pptx
 
Sales force certification-lab
Sales force certification-labSales force certification-lab
Sales force certification-lab
 
SAP SD Training in Chennai
SAP SD Training in Chennai SAP SD Training in Chennai
SAP SD Training in Chennai
 
COVID-19 SAP SuccessFactors Candidate Relationship Management (CRM) Configura...
COVID-19 SAP SuccessFactors Candidate Relationship Management (CRM) Configura...COVID-19 SAP SuccessFactors Candidate Relationship Management (CRM) Configura...
COVID-19 SAP SuccessFactors Candidate Relationship Management (CRM) Configura...
 
SAP ABAP lsmw beginner lerning tutorial.pdf
SAP ABAP lsmw beginner lerning tutorial.pdfSAP ABAP lsmw beginner lerning tutorial.pdf
SAP ABAP lsmw beginner lerning tutorial.pdf
 
SAP ABAP lsmw beginner lerning tutorial.pdf
SAP ABAP lsmw beginner lerning tutorial.pdfSAP ABAP lsmw beginner lerning tutorial.pdf
SAP ABAP lsmw beginner lerning tutorial.pdf
 
Sap mm query
Sap mm querySap mm query
Sap mm query
 
Oracle HRMS Document R12.
Oracle HRMS Document R12.Oracle HRMS Document R12.
Oracle HRMS Document R12.
 
Getting started-with-oracle-so a-viii
Getting started-with-oracle-so a-viiiGetting started-with-oracle-so a-viii
Getting started-with-oracle-so a-viii
 
FDMEE script examples
FDMEE script examplesFDMEE script examples
FDMEE script examples
 
FDMEE script examples
FDMEE script examplesFDMEE script examples
FDMEE script examples
 
This is part 1 of 3STEP 1 Modify the clsDataLayer to Use a Two-St.docx
This is part 1 of 3STEP 1 Modify the clsDataLayer to Use a Two-St.docxThis is part 1 of 3STEP 1 Modify the clsDataLayer to Use a Two-St.docx
This is part 1 of 3STEP 1 Modify the clsDataLayer to Use a Two-St.docx
 
How to design a report with fine report reporting tool
How to design a report with  fine report reporting toolHow to design a report with  fine report reporting tool
How to design a report with fine report reporting tool
 
Lsmw (Legacy System Migration Workbench)
Lsmw (Legacy System Migration Workbench)Lsmw (Legacy System Migration Workbench)
Lsmw (Legacy System Migration Workbench)
 
Basis problems1
Basis problems1Basis problems1
Basis problems1
 
Computer Assignment #2 Company Database GuideCustomer Table Da.docx
Computer Assignment #2 Company Database GuideCustomer Table Da.docxComputer Assignment #2 Company Database GuideCustomer Table Da.docx
Computer Assignment #2 Company Database GuideCustomer Table Da.docx
 
111Assignment Learning ObjectivesBSIS 105Assignment 3Purc.docx
111Assignment Learning ObjectivesBSIS 105Assignment 3Purc.docx111Assignment Learning ObjectivesBSIS 105Assignment 3Purc.docx
111Assignment Learning ObjectivesBSIS 105Assignment 3Purc.docx
 
Crm quote process ppt
Crm quote process pptCrm quote process ppt
Crm quote process ppt
 
Crm quote process ppt
Crm quote process pptCrm quote process ppt
Crm quote process ppt
 
Tutorials.pdf
Tutorials.pdfTutorials.pdf
Tutorials.pdf
 

Más de Amit Sharma

Oracle enteprise pbcs drivers and assumptions
Oracle enteprise pbcs drivers and assumptionsOracle enteprise pbcs drivers and assumptions
Oracle enteprise pbcs drivers and assumptionsAmit Sharma
 
Oracle EPBCS Driver
Oracle EPBCS Driver Oracle EPBCS Driver
Oracle EPBCS Driver Amit Sharma
 
Oracle Sales Quotation Planning
Oracle Sales Quotation PlanningOracle Sales Quotation Planning
Oracle Sales Quotation PlanningAmit Sharma
 
Oracle strategic workforce planning cloud hcmswp converted
Oracle strategic workforce planning cloud hcmswp convertedOracle strategic workforce planning cloud hcmswp converted
Oracle strategic workforce planning cloud hcmswp convertedAmit Sharma
 
Oracle PBCS creating standard application
Oracle PBCS creating  standard applicationOracle PBCS creating  standard application
Oracle PBCS creating standard applicationAmit Sharma
 
Hfm rule custom consolidation
Hfm rule custom consolidationHfm rule custom consolidation
Hfm rule custom consolidationAmit Sharma
 
Hfm calculating RoA
Hfm calculating RoAHfm calculating RoA
Hfm calculating RoAAmit Sharma
 
Adding metadata using smartview
Adding metadata using smartviewAdding metadata using smartview
Adding metadata using smartviewAmit Sharma
 
Hyperion planning weekly distribution
Hyperion planning weekly distributionHyperion planning weekly distribution
Hyperion planning weekly distributionAmit Sharma
 
Hyperion planning scheduling data import
Hyperion planning scheduling data importHyperion planning scheduling data import
Hyperion planning scheduling data importAmit Sharma
 
Hyperion planning new features
Hyperion planning new featuresHyperion planning new features
Hyperion planning new featuresAmit Sharma
 
Microsoft dynamics crm videos
Microsoft dynamics crm videosMicrosoft dynamics crm videos
Microsoft dynamics crm videosAmit Sharma
 
Oracle apex-hands-on-guide lab#1
Oracle apex-hands-on-guide lab#1Oracle apex-hands-on-guide lab#1
Oracle apex-hands-on-guide lab#1Amit Sharma
 
Oracle apex hands on lab#2
Oracle apex hands on lab#2Oracle apex hands on lab#2
Oracle apex hands on lab#2Amit Sharma
 
Managing users-doc
Managing users-docManaging users-doc
Managing users-docAmit Sharma
 
Customizing sales force-interface
Customizing sales force-interfaceCustomizing sales force-interface
Customizing sales force-interfaceAmit Sharma
 
User and group security migration
User and group security migrationUser and group security migration
User and group security migrationAmit Sharma
 
Customizing sales force-interface
Customizing sales force-interfaceCustomizing sales force-interface
Customizing sales force-interfaceAmit Sharma
 
Force.com migration utility
Force.com migration utilityForce.com migration utility
Force.com migration utilityAmit Sharma
 

Más de Amit Sharma (20)

Oracle enteprise pbcs drivers and assumptions
Oracle enteprise pbcs drivers and assumptionsOracle enteprise pbcs drivers and assumptions
Oracle enteprise pbcs drivers and assumptions
 
Oracle EPBCS Driver
Oracle EPBCS Driver Oracle EPBCS Driver
Oracle EPBCS Driver
 
Oracle Sales Quotation Planning
Oracle Sales Quotation PlanningOracle Sales Quotation Planning
Oracle Sales Quotation Planning
 
Oracle strategic workforce planning cloud hcmswp converted
Oracle strategic workforce planning cloud hcmswp convertedOracle strategic workforce planning cloud hcmswp converted
Oracle strategic workforce planning cloud hcmswp converted
 
Basics of fdmee
Basics of fdmeeBasics of fdmee
Basics of fdmee
 
Oracle PBCS creating standard application
Oracle PBCS creating  standard applicationOracle PBCS creating  standard application
Oracle PBCS creating standard application
 
Hfm rule custom consolidation
Hfm rule custom consolidationHfm rule custom consolidation
Hfm rule custom consolidation
 
Hfm calculating RoA
Hfm calculating RoAHfm calculating RoA
Hfm calculating RoA
 
Adding metadata using smartview
Adding metadata using smartviewAdding metadata using smartview
Adding metadata using smartview
 
Hyperion planning weekly distribution
Hyperion planning weekly distributionHyperion planning weekly distribution
Hyperion planning weekly distribution
 
Hyperion planning scheduling data import
Hyperion planning scheduling data importHyperion planning scheduling data import
Hyperion planning scheduling data import
 
Hyperion planning new features
Hyperion planning new featuresHyperion planning new features
Hyperion planning new features
 
Microsoft dynamics crm videos
Microsoft dynamics crm videosMicrosoft dynamics crm videos
Microsoft dynamics crm videos
 
Oracle apex-hands-on-guide lab#1
Oracle apex-hands-on-guide lab#1Oracle apex-hands-on-guide lab#1
Oracle apex-hands-on-guide lab#1
 
Oracle apex hands on lab#2
Oracle apex hands on lab#2Oracle apex hands on lab#2
Oracle apex hands on lab#2
 
Managing users-doc
Managing users-docManaging users-doc
Managing users-doc
 
Customizing sales force-interface
Customizing sales force-interfaceCustomizing sales force-interface
Customizing sales force-interface
 
User and group security migration
User and group security migrationUser and group security migration
User and group security migration
 
Customizing sales force-interface
Customizing sales force-interfaceCustomizing sales force-interface
Customizing sales force-interface
 
Force.com migration utility
Force.com migration utilityForce.com migration utility
Force.com migration utility
 

Último

Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr LapshynFwdays
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostZilliz
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...Fwdays
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsMiki Katsuragi
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embeddingZilliz
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 

Último (20)

Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering Tips
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embedding
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 

Sales force class-3

  • 1. Getting Started with SalesForce CRM Getting Started with SALESFORCE Part III Description: BISP is committed to provide BEST learning material to the beginners and advance learners. In the same series, we have prepared a complete end-to end Hands-on Beginner’s Guide for SalesForce. The document focuses on various aspects of validation. Join our professional training program and learn from experts. History: Version 0.1 0.1 Description Change Initial Draft Review#1 www.bispsolutions.com Page 1 Author Publish Date Chandra Prakash Sharma 20th July 2012 Amit Sharma 20th July 2012 www.bisptrainigs.com www.hyperionguru.com
  • 2. Contents Contents.......................................................................................................................... 2 Field Dependencies in SalesForce.................................................................................... 3 What is validation in SalesForce ..................................................................................... 6 Why Need Validation................................................................................................. 6 How to use Validation in SalesForce ............................................................................6 How to use Function in validation ................................................................................9 Default Value .......................................................................................................... 11 Formula Field's ............................................................................................................. 13 www.bispsolutions.com Page 2 www.bisptrainigs.com www.hyperionguru.com
  • 3. Field Dependencies in SalesForce Field Dependency called as picklist field dependencies in salesforce.com, picklist field is a dropdown list. you can select available value on picklist. There is two type picklist field dependencies in SalesForce.com 1. Standard Picklist :- Standard Picklist you can select one value at one time. 2. Multi Select picklist :- Multi Select picklist you can select one or more values at one time. Field Dependencies sub field(sub value) depend on Super field(Super value). SalesForce provide the allow to field dependency. How To Create field dependencies in SalesForce :Click on Setup - >Build -> Create -> Objects -> find Custom Fields & Relationship in section you can see Field Dependencies you can see below image. Click on this Click on Field Dependencies button and new show on below screen. Then click to New button. www.bispsolutions.com Page 3 www.bisptrainigs.com www.hyperionguru.com
  • 4. There is two field's Controlling field and Dependent field choose field's and click to Continue button. After that you will see new screen show on below screen . There is show on screen Location and sub Location if want select any field double click on cell for selecting. same as unselecting double click on cell. and click To Save button. www.bispsolutions.com Page 4 www.bisptrainigs.com www.hyperionguru.com
  • 5. if want see Preview Click to Preview button open popup window show preview below screen. After set the Field Dependencies you can check now go to Objects Create and click to any custom field and click to New button. Show on below screen. www.bispsolutions.com Page 5 www.bisptrainigs.com www.hyperionguru.com
  • 6. you can see these are Dependencies What is validation in SalesForce validation verify that the data client side or server side, user enters in a record and user not allow to wrong entry in the database. it will inform to you front end give error message. Why Need Validation User Can not be entered wrong entry on given field's. For Ex :- When using Custom Fields & Relationships and by mistake save data Maxx pay 350000 and Min Pay 450000. This is wrong value save in data base. in database wrong value not save and check all value on First time save database use validation. Show in below screen. Check Both Value there is maxx pay is less then to min pay. How to use Validation in SalesForce Go to Setup -> objects -> select any Custom objects -> find the Validation Rules show in below screen. Click to New Button after that show new screen you can see below www.bispsolutions.com Page 6 www.bisptrainigs.com www.hyperionguru.com
  • 7. Step 1# :- Give the role name Give the Role Name after that come to Error Condition Formula Click to Insert Field button Show pop window you can see Select the custom object and choose value which want to perform operation and click to insert button. Then Click to Insert Operator button for inserting operator (choose '< Less Then' Operator) and again click to Insert Field button to add Min pay after that click on Check Syntax button for checking Syntax. you can see below screen. www.bispsolutions.com Page 7 www.bisptrainigs.com www.hyperionguru.com
  • 8. and you can all show add error message when you enter wrong value. you can see below Give The proper Error message Select your Error location where to show the error message check the radio button. Click to Save button Save validation. After that you can check this validation Click to custom object tab (Ex :- Departments) click to New button and Give the wrong value in (Ex :- maxx_pay < min_pay [Maxx pay 350000 or Min pay 450000 ]) you can see in below screen. www.bispsolutions.com Page 8 www.bisptrainigs.com www.hyperionguru.com
  • 9. When you provide value is correct min value < less then max value this data save successfully. How to use Function in validation Let's be use AND function. Click find the Functions in Validation Rule and select the AND function. there is few step show on below screen Step 1# :- You can show in page Function. Add to function tow way i.) Double click on selected function. ii.) select the function and click to Insert Selected Functions button. After add function you can see below image. Step 2# :- AND (logic1, logic2, . . .) . Clear the this area (logic1, logic2, . .) after that Step 3# :- AND() go to function select ISPICKVAL Double click on ISPICKVAL . www.bispsolutions.com Page 9 www.bisptrainigs.com www.hyperionguru.com
  • 10. Step 4# :- after that look like - AND( ISPICKVAL(picklist_field, text_literal) ) Remove picklist_field and insert field Status__c - AND( ISPICKVAL(Status__c, text_literal) ) Remove the text_literal write here 'Closed' [This is value of pick list]. - AND( ISPICKVAL(Status__c , 'Closed') ) Step 5# :- Select other function - AND(ISPICKVAL( Status__c , 'close'), ISBLANK (expression) ) Step 6# :- remove the expression and Insert Field - AND( ISPICKVAL( Status__c , 'close'), ISBLANK( Close_date__c ) ) Step 7# :- Write the Error Message and select the Error Location click to Save button. you can see in below screen After Save you can see the what error is occurred when without giving close date status is closed and try to save data. www.bispsolutions.com Page 10 www.bisptrainigs.com www.hyperionguru.com
  • 11. You can see the error on close date and open date status is closed Default Value when you add new field like a(ex :- add new department) there is one field is open date you don't want to add date, this filed add automatically and this filed add default date. you can see the below screen This Date Field want to get Default value. How To set Default Value :Click to setup -> Build -> create -> object -> select your custom object(Ex :Departments) -> Select you Custom Field & Relationship (Ex :- Open Date) you can see below screen. www.bispsolutions.com Page 11 www.bisptrainigs.com www.hyperionguru.com
  • 12. After that click on Edit button. Then find default value and click on Show Formula Editor Hyper link. And there is you can see Bottom -Right side on screen Function in function you find the TODAY(). TODAY() :- TODAY() function return type current date. Select this function and click to Insert Selection Function button. all these work you can see below screen. After that Click to Save button. After That you can go Custom objects(Ex :- Departments) and Click to New button there is you can see in open date field already fill by current date. And you can all so change this date click on Text box or Click on date label. www.bispsolutions.com Page 12 www.bisptrainigs.com www.hyperionguru.com
  • 13. See the open date field is fill current date. Formula Field's Formula is a validation rules, it can manage field's data. How to Set Formula field :- click to Setup -> Go to objects -> Select you Custom object (Ex :- Departments) -> and find Custom Fields & Relationships click to New button Step 1 :- there is find Formula Radio Button. Checked this Radio Button click to Next button. you can see below screen. Step 2 :There is 7 Formula Return Type :1.) Checkbox 2.) Currency 3.) Date 4.) Date/Time 5.) Number 6.) Percent 7.) Text Fill the Field Label and checked(Any Radio button), I will go Date radio button after then click to Next button. www.bispsolutions.com Page 13 www.bisptrainigs.com www.hyperionguru.com
  • 14. Give Label Name Step 3 :- After Gating Formula Field there show to Tab Simple Formula and Advance Formula select Advance Formula because there is more option available. Click to Next button. Write This formula for last Date Step 4 :After that show new screen below Click to Next button Go to next step. www.bispsolutions.com Page 14 www.bisptrainigs.com www.hyperionguru.com
  • 15. Step 5 :- Click to Save button save this formula. After that you will check this formula how is it work click to custom objects (Ex :Departments) --> select any custom objects(Ex :- Non IT ) you can see below how is show last date function. www.bispsolutions.com Page 15 www.bisptrainigs.com www.hyperionguru.com
  • 16. There is show last date of Month www.bispsolutions.com Page 16 www.bisptrainigs.com www.hyperionguru.com