Posts

Showing posts from March, 2021

Salesforce Certifications Exam and their Cost

Image
Salesforce Certification is the ultimate benchmark that recognizes the skills, expertise, and real-world know-how of today's cloud specialists. There are around 33 Salesforce Certifications(as of 24 March 2021) for almost every role. For example Administrator, Developer, Architect, etc. Let's talk about the Salesforce certificates and their costs:- 1. Administrator Exams:- There are two certifications for Admin. Salesforce Certified Admin :- The Salesforce Certified Administrator exam is intended for an individual who has experience performing as a Salesforce Administrator. The cost  for this exam is $200. Salesforce Certified Advanced Admin :- The Salesforce Certified Advanced Administrator exam is intended for an individual who has advanced-level experience performing as a Salesforce Administrator.  The  cost  for this exam is  $200. 2. Developer Exams:- There are four certifications for Developer. Salesforce Certified Platform Developer I :- The Salesforce Certified Platfor

Salesforce Interesting Facts

Image
  We all know that Salesforce is # World'sNumber1CRM and it's growing itself day-by-day. But there are some interesting facts you might don't know about Salesforce and its CEO Marc Benioff. Let's dive into some interesting facts about Salesforce:- Have you watched the world's famous web series "Game of  Thrones"?  The creator of the famous web series "Game of Thrones" is David Benioff, the cousin of  Marc Benioff. The Salesforce Tower, also known as Transbay Tower, in San Francisco and it is the tallest building(326m) in the Bay Area and is the second tallest building in California. Do you guys think that the  AppStore.com domain was launched by Apple? But that's not the complete truth. The truth is the  Appstore.com  d omain   was  launched  by Salesforce in 2005, 3 years before Apple . In an interview, Marc Benioff said that he gifted it to Steve Jobs. Salesforce's current stock price is around $212 (as of 22 March 2021) I n one year

See the Customer Success Stories who are succeeding with Salesforce

Image
What is Salesforce? Salesforce.com, Inc. is an American cloud computing company headquartered in San Francisco, California. It provides a CRM service and also provides a complementary suite of enterprise applications focused on customer service, marketing automation, analytics, and application development. Are you curious about which big companies are using Salesforce? Let's see Customer Success Stories who are succeeding with Salesforce. • SpiceJet      SpiceJet keeps customer service flying high during Covid-19 times. • L&T Realty      L&T Realty constructs connected customer experiences with Salesforce • Puma      PUMA.com remains 'Forever Faster' with Salesforce • The Times Of India      Bennett, Coleman & Co Ltd serves up newsworthy customer experiences with                   Salesforce • Olx      OLX India drives India’s pre-owned car growth story with Salesforce • CEAT      Salesforce helps CEAT put customers in the driver's seat • Godrej      Godrej

How to create Salesforce Object with Code(MetadataService Class)

Image
  #SalesforceOhana #Object #ApexCode #CreateSalesforceObjectThroughCode #Coding  What are Salesforce Objects? => Salesforce Objects are database tables in which we can store our data to a specific organization. In Salesforce, we have two kinds of Objects. Standard Object :- The Objects which are already made by Salesforce itself. Forex. Account, Contact, Opportunity, etc. All are Salesforce Standard Objects. Custom Object :- The Objects which are made by the User itself. Can you create Salesforce Custom Object through Code? => The answer is Yes, you can create Objects through Code. But, for this, you must have a MetaDataService Class in your org. Here is a link,  MetaDataSerivce Class . Let's see how we can. MetadataService.MetadataPort service = new MetadataService.MetadataPort();           service.SessionHeader = new MetadataService.SessionHeader_element();         service.SessionHeader.sessionId = UserInfo.getSessionId();                  List<MetadataService.Metadata&g

Create Validation Rules Through Code

Image
  #Salesforce #ValidationRules #ApexCode #CreateValidationRulesThroughCode What is the Validation Rule in Salesforce?  Validation rules verify that the data a user enters in a record meets the standards you specify before the user can save the record. A validation rule can contain a formula or expression that evaluates the data in one or more fields and returns a value of “True” or “False” Validation rules also include an error message to display to the user when the rule returns a value of “True” due to an invalid value Can we create a Validation Rule through code? => The answer is yes. We can create a validation rule through code. But, for this, you must have a MetaDataService Class in your org. Here is a link,  MetaDataSerivce Class . The code is given below to create the Validation Rule:- MetadataService.MetadataPort service = new MetadataService.MetadataPort();         service.SessionHeader = new MetadataService.SessionHeader_element();         service.SessionHeader.sessionId =