Skip to main content

Posts

Support Page

Please fill the form Contact Name* Email Phone SELECT YOUR STATUS* I am a patient I am a relative I am a health care professional Other Company* Country: --None-- Afghanistan Aland Islands Albania Algeria Andorra Angola Anguilla Antarctica Antigua and Barbuda Argentina Armenia Aruba Australia Austria Azerbaijan Bahamas Bahrain Bangladesh Barbados Belarus Belgium Belize Benin Bermuda Bhutan Bolivia, Plurinational State of Bonaire, Sint Eustatius and Saba Bosnia and Herzegovina Botswana Bouvet Island Brazil British Indian Ocean Territory Brunei Darussalam Bulgaria Burkina Faso Burundi Cambodia Cameroon Canada Cape Verde Cayman Islands Central African Republic Chad Chile China Chinese Taipei Christmas Island Cocos (Keeling) Islands Colombia Comoros Congo Congo, the Democratic Republic of the Cook Islands Costa Rica Cote d'Ivoire Croatia Cuba Curaçao Cypru

Maintain Your Administrator Certification for Spring '22 Answers

 Maintain Your Administrator Certification for Spring '22 Answers Check Below to verify: Navigate to OBJECT MANAGER Select Object: Task Goto in Task object: Restriction Rules Click on New Rules Rule Name: Keep Tasks Private Full Name: Keep_Tasks_Private Is Active: True Enter User Criteria: Field: User > Active Operator: Equals Type: Boolean Value: True Enter Record Criteria: Field: Assigned To ID (User) > User ID Operator: Equals Type: Current User Value: User ID

Maintain Your CRM Analytics Consultant Certification for Spring '22 Answers

 Maintain Your CRM Analytics Consultant Certification for Spring '22 Type of visualization:  Distance Threshold in Data Prep Bucketing: 1. What app will you use in CRM Analytics to create a Pipeline Trending Waterfall Chart? Ans: Customer Insights 2. Applying Sentiment Analysis on unstructured data categorizes it as which of these? Ans: Positive, Negative, and neutral 3. What tool would you use to adjust the sensitivity of the fuzzy matching? Ans: Distance Threshold 4. What types of visualizations are now available in the chart widget tooltips? Ans: Chart, Table and Component 5. How do you include a subquery in your SQL query? Ans: After the FROM statement, add another SELECT statement in ()

Chaper - 0 Get start with Customer relationship management (CRM)

 Customer relationship management (CRM) In our day to day work we might come across a term called Customer relationship management or CRM, some might be thing what is CRM, How it works, How it can boost your business and so on.. Actually if you start thinking about something it will never ends and that's how human mind works. I'll be describing everything regarding CRM and will provide some best in class CRM suggestions. What is CRM? CRM is a technology for managing all your company's relationships and interactions with customers and potential customers. Goal of CRM: Improve business relationships Stay connected to customers Manage customer relationships Customer lifecycle 360 view Streamline processes Improve profitability What does a CRM system do? On very high level and for your understanding I'll list down few CRM capabilities but CRM can do more than these  Helps you find new customers Organizing customer and prospect information Collecting a customer's website

Object/Action name present in Org with Queryable/Retrieveable/Searchable and many more Status in Query

We always want to know what are the objects present in salesforce so we can utilize any existing if needed or to understand the structure more. Here are few ways which help you to do that. Basic Code to get all object without any query: Schema.DescribeSObjectResult objResult = o.getDescribe();             String obj = objResult.getName();                 System.Debug(objResult.getName()); Basic code to get Object record count, don't run for all object you might get exception of 101 SOQL. Try to run this in a loop of first 100 then 100-200 and more based on need. {             Schema.DescribeSObjectResult objResult = o.getDescribe();             String obj = objResult.getName();             Integer count = 0;             q = 'SELECT Count() FROM ' + obj;             try{                 count = Database.countQuery(q);             }catch(Exception e){                 continue;             }             mapdata.put(objResult.getName(),count);             System.Debug(objResult

Platform Developer I Certification Maintenance (Winter '22)

 As we know Salesforce always add new features and based on that there are releases. This maintenance is all about Custom Metadata Type in apex. You no longer need to write a Salesforce Object Query Language (SOQL) to access custom metadata records in Apex. How: Use the new Apex getAll(), getInstance(recordId), getInstance(qualifiedApiName), or getInstance(developerName) methods to retrieve custom metadata type records.  Descriptions: getAll() Returns a map containing custom metadata records for the specific custom metadata type. The map's keys are the IDs (as String) of the records and the map's values are the record sObjects. getInstance(recordId) Returns a single custom metadata type record sObject for a specified record ID. getInstance(developerName) Returns a single custom metadata type record sObject for a specified developerName field of the custom metadata type object. getInstance(qualifiedApiName) Returns a single custom metadata type record sObject for a qualified AP

Exception: SObject row does not allow errors

There is a lot of things which salesforce do Out Of Box(OOB) but we do code some time, Sometimes triggers are used and some time we do use helper class. While dealing with apex code we do see some exceptions so today we will discuss about a specific error which is System.FinalException: SObject row does not allow errors. When: While using addError method with retrieved record from database. Example: List<Account> accList = [SELECT Id,Name                               FROM Account                               WHERE Id IN :Trigger.old];//Retrived data from Database     for(Account acc : accList){          if(acc.Name == 'Non Working Code'){              acc.addError('Exception:System.FinalException: SObject row does not allow');//will through exception          }       } Solution: for(Account acc : Trigger.new){         if(acc.Name == 'Working Code'){             acc.addError('This add error working fine.');         }     }

Translate