Anjali
IndividualForum Replies Created
-
Anjali
MemberMay 13, 2020 at 11:26 am in reply to: What is the difference between Mock and Stub in testing in Salesforce?Stub: a dummy piece of code that lets the test run, but you don't care what happens to it. Mock: a dummy piece of code, that you VERIFY is called correctly as part of the test.
-
Writes a field name and value pair using the specified field name and string value.
-
Anjali
MemberMay 12, 2020 at 10:00 am in reply to: What are the limitations of Time-dependent workflow in Salesforce?Time triggers don't support minutes or seconds. Time triggers can't reference the following: DATE or DATETIME fields containing automatically derived functions, such as TODAY or NOW.
-
Standard filters are applied by default to most objects. Different objects have different standard filters, but most objects include the standard filters Show Me and Date Field . Show Me filters the object around common groupings (like “My accounts” or “All accounts”).
-
MOAR = MuleSoft Anypoint Platform (for API management)
-
Anjali
MemberMay 11, 2020 at 8:42 am in reply to: How many custom objects can you have in Salesforce?There is a hard limit of 3,000 total custom objects per Organization.
-
Anjali
MemberMay 11, 2020 at 8:40 am in reply to: What is the difference between system mode and user mode in Salesforce?System mode is running apex code by ignoring user’s permissions while User mode is nothing but running apex code by respecting user’s permissions and sharing of records.
-
Testing is an important part of SDLC. So, before deploying our code to production environment, Salesforce requires at least 75% of your code to be covered by our test classes.
-
Anjali
MemberMay 8, 2020 at 10:56 am in reply to: How Pardot is different from other Salesforce marketing tools?Pardot is positioned as a B2B platform while Salesforce Marketing Cloud is more B2C (although this isn't always the case and some companies can use both) The main difference is the buying cycle.
-
External objects are similar to custom objects, except that they map to data that's stored outside your Salesforce org. Each external object relies on an external data source definition to connect with the external system's data. Each external object definition maps to a data table on the external system.
-
Please refer the below link-
https://help.salesforce.com/articleView?id=sites_setup_overview.htm&type=5 -
A custom domain or My Domain is a way to have your own Salesforce org customized URL rather than a common Salesforce URL.
-
By looking at login history, you can tell which users log in regularly and make use of their Salesforce license. You can also identify who isn't logging in; these users may need more training on how to use Salesforce or may not need a license at all.
-
Anjali
MemberMay 6, 2020 at 7:43 am in reply to: What is difference between Salesforce.com and Force.com?Salesforce is a company and salesforce.com is a Customer Relationship Management (CRM) application developed based on Software as a Service (SaaS). force.com is a platform that helps developers and business users to build powerful enterprise applications.
-
Record types let you offer different business processes, picklist values, and page layouts to different users. You might create record types to differentiate your regular sales deals from your professional services engagements, offering different picklist values for each.
-
Anjali
MemberMay 6, 2020 at 7:33 am in reply to: What is the use of finish method in batch apex class in Salesforce?The finish method is called after all batches are processed. This method is used to send confirmation emails or execute post-processing operations.
-
Use this method to compare a string to an object that represents a string or an ID. equalsIgnoreCase(secondString) Returns true if the secondString is not null and represents the same sequence of characters as the String that called the method, ignoring case.
-
A list custom setting is a data set, with the Custom Setting being similar to an object, and the records in List Custom Settings hold the data.
-
AMPscript is a proprietary scripting language for Salesforce Marketing Cloud products that you can embed within HTML emails, text emails, landing pages and SMS messages to control the content that is displayed to the individual consumer.
-
Anjali
MemberMay 4, 2020 at 10:25 am in reply to: Why AuraEnabled methods are static in Salesforce?@AuraEnabled enables client- and server-side access to the controller method. Server-side controllers must be static and all instances of a given component share one static controller.
-
Anjali
MemberMay 4, 2020 at 9:50 am in reply to: How do you call a custom label in lightning component?Please refer the following link-
https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/labels_value_provider_platform.htm -
From Setup, enter Report Types in the Quick Find box, then select Report Types to display the All Custom Report Types page. Select the custom report type you want to edit and click Edit Layout on the Fields Available for Reports section.
-
Custom settings are similar to custom objects and enable application developers to create custom sets of data, as well as create and associate custom data for an organization, profile, or specific user.
-
Custom labels are custom text values that can be accessed from Apex classes, Visualforce pages, or Lightning components.
-
apex:repeat is an iteration component that allows you to output the contents of a collection according to a structure that you specify.