Anjali
IndividualForum Replies Created
-
Anjali
MemberMarch 23, 2020 at 9:43 am in reply to: Which declarative tool would you use for the following use case in Salesforce?The correct tool is to use Process Builder.
-
Anjali
MemberMarch 20, 2020 at 12:42 pm in reply to: What is PriceBookEntry and How it is related to PriceBook in Salesforce?PricebookEntry object is a product entry in a pricebook. This object allows products to be linked to standard price book or custom price book. One price book entry can only appear in one pricebook. One price book entry can be used in multiple line items.
-
Anjali
MemberMarch 20, 2020 at 12:41 pm in reply to: Difference between Standard PriceBook & Custom PriceBook in Salesforce?Standard price book entries are the default (standard) prices for the products and services in the standard price book. When you create a product record, Salesforce creates a standard price book entry. Custom price book entries are the custom (list) prices for the products and services in your custom price books.
-
Smart Search Items adds a dynamic list of the user's recently accessed objects to the Salesforce mobile app navigation menu. In the Salesforce mobile app for iOS and the Salesforce mobile app for Android, up to 10 recent items appear in the navigation menu of the Mobile Only app.
-
Single sign-on (SSO) lets users access authorized network resources with one login. You validate usernames and passwords against your corporate user database or other client app rather than Salesforce managing separate passwords for each resource.
-
The toolbox contains the elements and resources you use to build your flow. From the Elements tab, add new elements, like Screen and Create Records, to your flow. From the Manager tab, create resources, such as variables, stages, and choices, to use in your flow.
-
Anjali
MemberMarch 18, 2020 at 1:27 pm in reply to: What is the abbreviate(maxWidth, offset) in Salesforce?Abbreviate(maxWidth, offset)
Returns an abbreviated version of the String, starting at the specified character offset and of the specified length. -
Anjali
MemberMarch 17, 2020 at 4:15 pm in reply to: What are some apex best practices in Salesforce?Please refer the link to get to know about the apex coding Best Practice-
https://developer.salesforce.com/page/Apex_Code_Best_Practices -
Since a delete call cascade-deletes child records, an undelete call will undelete the cascade-deleted records.
-
Anjali
MemberMarch 16, 2020 at 2:09 pm in reply to: what is the use of accesskey attribute in salesforce?AccessKey attribute is a string type.The keyboard access key that puts the command button in focus.
-
Apex triggers enable you to perform custom actions before or after changes to Salesforce records, such as insertions, updates, or deletions.
-
Flow is a powerful business automation tool that can manipulate data in Salesforce in a variety of ways. Such application can be created right from the org's setup with just drag-drop/point-click. The ease of creating flows makes it the number one go-to tool when it comes to complex business requirements.
-
After authentication, the URL to which it is redirected is the Callback URL.
-
Anjali
MemberMarch 12, 2020 at 2:33 pm in reply to: When to use the before apex trigger in Salesforce?We use before trigger when we want to update the database after the changes are done in that record.
-
Anjali
MemberMarch 12, 2020 at 2:31 pm in reply to: What is difference between stateful and stateless in batch class in Salesforce?Batch Apex is stateless by default. That means for each execution of your execute method, you receive a fresh copy of your object. If your batch process needs information that is shared across transactions, one approach is to make the Batch Apex class itself stateful by implementing the Stateful interface.
-
Anjali
MemberMarch 11, 2020 at 2:40 pm in reply to: What are the four pillars of html web component in Salesforce?Lightning web components are custom HTML elements built using HTML and modern JavaScript. Lightning web components and Aura components can coexist and inter operate on a page. To admins and end users, they both appear as Lightning components.
-
Anjali
MemberMarch 11, 2020 at 2:38 pm in reply to: Difference between Process Builder & Workflow in Salesforce?For updating related records, Process Builder can update any field on any related record, where Workflow can only update some fields on a parent record of a Master-Detail relationship. ... Also,Process Builder finally gives admins the ability to set the exact order of operations, whereas with Workflow we had no control.
-
Anjali
MemberMarch 6, 2020 at 5:58 pm in reply to: Can we create a custom field through Salesforce Apex?Yes, we can create custom field using Apex.
-
Permission set gives extra permission to access the objects or records in the specified org.
-
As per the requirement the objects that are created in the org, are known as custom object.
-
The objects provided by salesforce.com is called standard objects. Examples of standard objects are accounts, contacts, opportunities, Leads, products, campaigns, cases, users, contracts, Report, and dashboards, etc.
-
Anjali
MemberMarch 4, 2020 at 2:21 pm in reply to: Can we change the name of standard object in Salesforce?Yes, we can change the label of standard objects as per the requirement.
-
With Custom Metadata, you can edit the records with "Configure Application" but you require "Author Apex" to edit the configuration. You can deploy the records of custom metadata types from a sandbox with change sets or packaged in managed packages instead of transferring them manually.
-
Flow is a powerful business automation tool that can manipulate data in Salesforce in a variety of ways. Such application can be created right from the org's setup with just drag-drop/point-click. The ease of creating flows makes it the number one go-to tool when it comes to complex business requirements.
-
Anjali
MemberMarch 3, 2020 at 2:10 pm in reply to: What are the main differences between process builder and workflows in Salesforce ?For updating related records, Process Builder can update any field on any related record, where Workflow can only update some fields on a parent record of a Master-Detail relationship. Process Builder can also update multiple related records in a situation when all of a record's child records need the same update.