Deepak
IndividualForum Replies Created
-
Deepak
MemberNovember 9, 2020 at 4:01 pm in reply to: How do I use custom settings in Salesforce flow?From Setup,
Search Custom Settings
Tap New
Fill the fields as per your requirement.
Click Save. -
Deepak
MemberNovember 9, 2020 at 3:57 pm in reply to: Where can we use Visualforce in Lightning Experience?- You can use where you want to create a custom app page in the Lightning App Builder, you can add a Visualforce page to the page by using the Visualforce component.
-
Deepak
MemberNovember 9, 2020 at 3:55 pm in reply to: Where can you use Visualforce in lightning experience?When you create a custom app page in the Lightning App Builder, you can add a Visualforce page to the page by using the Visualforce component.
-
- Vf pages are available for Salesforce1 when Available for Salesforce mobile app settings is checked.
-
Deepak
MemberNovember 9, 2020 at 3:49 pm in reply to: What is the difference between lightning experience and Salesforce Classic?Lightning Experience offers Workspace page layout, activity timeline, path, notes, etc. while these features are not available for Salesforce Classic.
-
Deepak
MemberNovember 9, 2020 at 3:33 pm in reply to: How to make vf page available for Salesforce1?Vf pages are available for Salesforce1 when Available for Salesforce mobile app settings is checked.
-
Deepak
MemberNovember 4, 2020 at 5:10 pm in reply to: Which scenario would Async SOQL be best used for?When you are querying against millions of records.
-
Steps to add a Flow to Your Website:
1. Create an Embedded Service deployment.
2. In the Embedded Service Deployment Settings page, click Start next to Flow Settings.
3. Under Flow Name, select the flow you want to use in your Embedded Service deployment.
4. Click Save. -
Deepak
MemberNovember 4, 2020 at 3:07 pm in reply to: What is the use of UIThemeDisplayed in Salesforce?$User.UIThemeDisplayed returns the look and feel the user actually sees.
-
Deepak
MemberNovember 3, 2020 at 5:43 pm in reply to: How to filter reports using URL parameters in Salesforce?You can refer to the link:
https://help.salesforce.com/articleView?id=reports_filter_url.htm&type=5 -
Deepak
MemberNovember 3, 2020 at 5:41 pm in reply to: can we use a long text area in the formula field in Salesforce?No, you can't use long text area in the formula field.
-
Deepak
MemberNovember 3, 2020 at 5:31 pm in reply to: Is it possible to use a parameter in the URL to filter the report in Salesforce?I think it is not possible to use a parameter in the URL to filter the report in Salesforce.
-
To filter a Report in Lightning Experience, follow steps as follows:
1. On the Reports tab, click a report to open it.
2. Click Edit.
3. Select the Filters tab.
4. Click Add Filter and select a Field Filter from the list.
5. Select an operator for the filter and type the filter value in the next field.
6. Click Apply. -
Deepak
MemberNovember 2, 2020 at 5:14 pm in reply to: What is meant by object id prefix in Salesforce?A User record with ID 00561000000Djya has the prefix 005, which is the prefix for the User Object.
-
Deepak
MemberNovember 2, 2020 at 5:10 pm in reply to: How to find object id prefix either standard or custom object in Salesforce?In Anonymous window,type this
System.debug(‘Prefix–> ‘ + CustomObject__c.sObjecttype.getDescribe().getKeyPrefix()); -
Deepak
MemberOctober 30, 2020 at 3:18 pm in reply to: What is Security Assertion Markup Language in Salesforce?Security Assertion Markup Language (SAML) is an open standard that allows identity providers to pass authorization credentials to service providers.
-
Deepak
MemberOctober 30, 2020 at 3:16 pm in reply to: What is the lifetime of access tokens in Salesforce?Lifetime of access tokens is 15 minutes.
-
Deepak
MemberOctober 30, 2020 at 3:14 pm in reply to: How to generate security token in Salesforce?You can generate by resetting the token in your my settings of your org and security token comes to your registered mail id.
-
Deepak
MemberOctober 29, 2020 at 12:03 pm in reply to: How many records can a big object hold in Salesforce?A big object provides can hold, whether you have 1 million records, 100 million, or even 1 billion.
-
Deepak
MemberOctober 29, 2020 at 6:42 am in reply to: How do I install the Ant Migration Tool in Salesforce?There is link provided in Salesforce site from which you get the latest version of Ant Migration Tool.
-
Custom labels are custom text values that can be accessed from Apex classes, Visualforce pages, or Lightning components.
-
Deepak
MemberOctober 28, 2020 at 4:32 pm in reply to: when should we use standard soql over async soql?When you know that the query returns a small amount of data.
-
Deepak
MemberOctober 28, 2020 at 4:31 pm in reply to: How do I query more than 50000 records in Salesforce?You can get more than 50,000 records using a Query Locator.
-
Deepak
MemberOctober 28, 2020 at 4:28 pm in reply to: When should you use standard SOQL over async SOQL?Use standard SOQL when you want to display the results in the UI without having the user wait for results.
-
A 'callout' is any https call that accesses an external URL i.e. some other webservice or website. While 'callin' would be the opposite i.e some external web service or application using the Salesforce API to access Salesforce data.