Anjali
IndividualForum Replies Created
-
Anjali
MemberAugust 31, 2020 at 12:29 pm in reply to: What is the Customer Portal and Partner Portal in Salesforce?Customer portal: A Salesforce.com Customer Portal similar to a Self – Service Portal in that it provides an online support channel for your customers – allowing them to resolve their inquires without contacting a customer service representive.
-
Anjali
MemberAugust 31, 2020 at 12:28 pm in reply to: What are the annotations in the Apex in Salesforce?An Apex annotation modifies the way a method or class is used, similar to annotations in Java.
- @Deprecated.
- @Future.
- @Is Test.
- @ReadOnly.
- @RemoteAction.
-
Use the isTest annotation to define classes or individual methods that only contain code used for testing you application.
-
Anjali
MemberAugust 31, 2020 at 12:22 pm in reply to: How many controller extensions we can use in Salesforce?Any number of controller extensions.
-
Anjali
MemberAugust 31, 2020 at 12:20 pm in reply to: What are the difference between the Sets and Maps in Salesforce?- A Set is an unordered collection of primitives or sObjects that do not contain any duplicate elements.
- A Map is a collection of key-value pairs where each unique key maps to a single value. Keys can be primitive data type, while values can be a primitives, sObject, collection type or an Apex object.
-
Anjali
MemberAugust 31, 2020 at 12:17 pm in reply to: What are the data types we can give for the Key and Values in Map in Salesforce?- Keys – Primitive Data Types.
- Values – Primitive, sObject, Collection Type or an Apex Object.
-
Anjali
MemberAugust 31, 2020 at 12:15 pm in reply to: Have you Implemented record type in your project in salesforce?Yes, we have created Record Types and we have done Page Layout Assignment also.
-
Anjali
MemberAugust 31, 2020 at 12:12 pm in reply to: What are the types of Sandboxes you’re using in Salesforce?Full Sandbox and Configuration only Sandbox.
- Full Sandbox : Full Sandbox is Production environment.
- Configuration Sandbox: Test Sandbox.
-
Anjali
MemberAugust 31, 2020 at 12:09 pm in reply to: What is the difference between the with Sharing and with out Sharing keywords.Use the with sharing keywords when declaring a class to enforce the sharing rules that apply to the current user.Use the without sharing keywords when declaring a class to ensure that the sharing rules for the current user are not enforced.
-
Custom Setting that provides a reusable set of static data that can be accessed across your organization. There are two types of custom settings.
- List Custom Settings.
- Hierarchy Custom Settings.
-
Anjali
MemberAugust 31, 2020 at 10:58 am in reply to: How to find the latest index of any of a set of potential substrings in Apex?global static String
left(String str, int len) -
Anjali
MemberAugust 31, 2020 at 9:53 am in reply to: How to show pageError on JS Controller in Salesforce?apex error messageWe can implement this requirement by creating new instance of ApexPages. message and then adding message to Apexpages using ApexPages. addmessage. Then displaying these messages in visualforce page.
-
Anjali
MemberAugust 31, 2020 at 9:50 am in reply to: Can you name three types of object relationships available in Salesforce?Master-detail relationship
look-up relationship
self relationship -
Anjali
MemberAugust 28, 2020 at 12:13 pm in reply to: How to check String contains only white space characters in Apex ?isAlphaSpace() : This string method will return true, if the string contain alphabet and white spaces.
-
Anjali
MemberAugust 28, 2020 at 12:11 pm in reply to: What does reduce() method do in JS Controller in Salesforce?The reduce() method applies a function against an accumulator and each element in the array (from left to right) to reduce it to a single value.
-
Anjali
MemberAugust 28, 2020 at 12:10 pm in reply to: What Is A Connector in Dell Boomi in Salesforce?Use the Salesforce Connector to connect Salesforce.com with any combination of Cloud, SaaS, or On-Premise applications with no coding required.
-
Anjali
MemberAugust 27, 2020 at 2:42 pm in reply to: How reporting works with the external object in Salesforce?When a report includes an external object, the report fetches up to 20,000 records for the primary object. This limit applies regardless of whether the primary object is a standard, custom, or external object. If the report has no child objects, the total number of rows is up to 20,000.
-
Anjali
MemberAugust 27, 2020 at 2:36 pm in reply to: How many external objects do org have in Salesforce?Each org can have up to 100 external objects. External objects don't count toward the amount for custom objects. If the external system allows it, we recommend that you sync the external data source to automatically create related external objects.
-
Use the TestVisible annotation to allow test methods to access private or protected members of another class outside the test class. These members include methods, member variables, and inner classes. This annotation enables a more permissive access level for running tests only.
-
Salesforce AppExchange is Salesforce.com’s cloud computing marketplace through which end users can access, download and install software apps. AppExchange directory gives Salesforce users an easy way to find and install applications to expand their use of the AppExchange platform to new areas of customer relationship management (CRM) and beyond.
-
Anjali
MemberAugust 26, 2020 at 1:43 pm in reply to: Why to use batch class instead of normal class in Salesforce?There are various reasons why Batch Apex is better than Normal Apex.
- A Normal Apex uses 100 records per cycle to execute SOQL queries. Whereas, a Batch Apex does the same in 200 records per cycle. So, it is very fast when the execution of SOQL queries is considered.
- A Normal Apex can retrieve 50,000 SOQL queries but, in Batch Apex, 50,000,000 SOQL queries can be retrieved.
- A Normal Apex has a heap size of 6 MB; whereas, a Batch Apex has a heap size of 12 MB.
- When executing bulk records, Normal Apex classes are more vulnerable to encountering errors as compared to Batch Apex. The latter is normally error-less.
-
Anjali
MemberAugust 26, 2020 at 1:40 pm in reply to: What is the difference between < apex:inputText / > Vs < apex:inputField / > ?inputField - copy the field from any object and display on a VF page | like copy paste work.
inputText - it will help to create a field from scratch | new creation -
Anjali
MemberAugust 21, 2020 at 9:20 am in reply to: What is On-demand email to case in Salesforce?On-Demand Email-to-Case lets you process customer emails up to 25 MB. On-Demand Email-to-Case automatically shortens email text to 32,000 characters. Contact Salesforce if you'd like this limit raised to 128,000 characters for your organization.
-
Anjali
MemberAugust 21, 2020 at 9:18 am in reply to: What is the benefit of console tabs in Salesforce?The console is a tab that combines a list view and related records into one screen with different frames so that users have all the information they need when interacting with salesforce.com.
-
OData (Open Data Protocol) is a modern, REST-based protocol for integrating data.