Deepak
IndividualForum Replies Created
-
Deepak
MemberNovember 27, 2020 at 1:29 pm in reply to: What is CDN in lightning component in Salesforce?CDN allows users to load Lightning Experience and other apps faster by enabling content delivery network (CDN) to serve the static content for Lightning Component framework.
-
Deepak
MemberNovember 27, 2020 at 1:27 pm in reply to: How to use CDN in lightning component in Salesforce?To use first enable it:
1. From Setup, enter Session in the Quick Find box, and then select Session Settings.
2. Select the checkbox for Enable Content Delivery Network (CDN) for Lightning Component framework.
3. Click Save. -
Deepak
MemberNovember 26, 2020 at 1:26 pm in reply to: How do I set permissions for a salesforce group?Follow the steps below to assign Permission Set Groups to Users :
1. In the Permission Set Group detail page, click Manage Assignments.
2. Select each user who you want to assign the group to, and then click Assign.
3. Click Done.
4. To remove a user from the permission set group assignment, select the user name, and click Remove Assignments.
5. Click OK to confirm the removal, and click Done. -
Deepak
MemberNovember 26, 2020 at 1:25 pm in reply to: What is the benefit of using a lookup filter in Salesforce?Improve user productivity and data quality with lookup filters. Lookup filters are administrator settings that restrict the valid values and lookup dialog results for lookup, master-detail, and hierarchical relationship fields.
-
Deepak
MemberNovember 26, 2020 at 1:24 pm in reply to: How do I enable enhanced lookup in Salesforce?To Enable Enhanced Lookups follow the steps below:
1. From Setup, enter Search Settings in the Quick Find box, then select Search Settings.
2. In the Lookup Settings area, select the objects for which you want to enable enhanced lookup functionality.
3. Click Save. -
Deepak
MemberNovember 26, 2020 at 1:23 pm in reply to: What is the limitations of Lookup filter in Salesforce?There are limitations which I have discussed below as follows:
1. You can't use special date values, such as “Today” or “This Month,” in lookup filter criteria. 2. You can't delete fields that are referenced in an active lookup filter.
3. You can't change the field type of fields referenced by an active lookup filter.
4. You can add up to 10 criteria rows in a lookup filter. -
Deepak
MemberNovember 25, 2020 at 5:57 pm in reply to: How to pass parameters to the Apex Method from the Visuaforce page?You can use apex:param tag.
-
Use Dataflow Editor, a point-and-click interface, to build your dataflow logic from scratch. Add transformations to determine what source data to use, how to transform that data, and which datasets to load the results into.
-
Follow the steps as below to add a default team:
1. In your personal settings, go to Advanced User Details and find Default Account Team. Click Add.
2. Add coworkers, selecting each user's access to the account and to related opportunities and cases, and the user's role on the team.
3. If you want, select options for adding the team to accounts automatically. ...
4. Click Save. -
The following are methods for Blob:
1. size() Returns the number of characters in the Blob.
2. toPdf(stringToConvert) Creates a binary object out of the given string, encoding it as a PDF file.
3. toString() Casts the Blob into a String.
4. valueOf(stringToBlob) Casts the specified String to a Blob. -
Blob is a collection of binary data stored as a single object. You can convert this data type to String or from String using the toString and valueOf methods, respectively.
-
Deepak
MemberNovember 25, 2020 at 5:57 am in reply to: What is the use of implements="force:appHostable" in Salesforce lightning?The force:appHostable interface to a Lightning component to allow it to be used as a custom tab in Lightning Experience or the Salesforce mobile app. Components that implement this interface can be used to create tabs in both Lightning Experience and the Salesforce mobile app.
-
Deepak
MemberNovember 20, 2020 at 2:44 pm in reply to: How wizard controllers are different from other Visualforce controllers?The two main difference between normal and wizard controller is that wizard handle multiple pages and they maintain the state across those pages.
-
Deepak
MemberNovember 20, 2020 at 2:43 pm in reply to: What are the wizard controllers in VisualForce?Wizard controllers are able to manage multiple pages and state across each page that is not possible to manage by other simpler controllers in VisualForce.
-
Deepak
MemberNovember 20, 2020 at 2:42 pm in reply to: What is the difference between a custom controller and controller extensions?You can use custom controllers when you want your Visualforce page to run entirely in system mode, which does not enforce the permissions and field-level security of the current user while controller extension is an Apex class that extends the functionality of a standard or custom controller.
-
Deepak
MemberNovember 20, 2020 at 2:21 pm in reply to: How do I send an email from a trigger in Salesforce?You can use single email messaging method to send an email from trigger.
-
Deepak
MemberNovember 20, 2020 at 2:19 pm in reply to: How do I set an address in SMS Singleemailmessage?You can use setOrgWideEmailAddressId in SingleEmailMessage.
-
In a custom object, there's a rich text field where one can select an image - the image will show up if you are on the record page.
-
Deepak
MemberNovember 20, 2020 at 6:12 am in reply to: What is the use of MassEmailMessage in Salesforce?MassEmailMessage can send mails related to multiple records (WhatId and TargetObjectId).
-
Yes, we can export notes in Salesforce using data loader.
-
Deepak
MemberNovember 17, 2020 at 12:42 pm in reply to: lightning component can be used in Community builderSimply, Add the force:lightningQuickAction or force:lightningQuickActionWithoutHeader interface to a Lightning component to enable it to be used as a custom action in Lightning Experience.
-
Deepak
MemberNovember 17, 2020 at 12:41 pm in reply to: When should you use standard SOQL over async SOQL?Because the limit for Async SOQL queries is one concurrent query at a time.
-
Deepak
MemberNovember 17, 2020 at 12:39 pm in reply to: How do I run a SOQL query in the developer console?Follow the below steps as follows:
1. Enter a SOQL query or SOSL search in the Query Editor panel.
2. If you want to query tooling entities instead of data entities, select Use Tooling API.
3. Click Execute. -
Deepak
MemberNovember 17, 2020 at 12:37 pm in reply to: Which interface we are supposed to implement so that a lightning component can bAdd the force:appHostable interface to a Lightning component to allow it to be used as a custom tab in Lightning Experience.
-
Tools included in Lightning as follows:
1. Browser: Google Chrome.
2. Browser Debugger: Chrome DevTools.
3. DevTools Extension: Salesforce Lightning Inspector.
4. Editor: Force.com IDE.