Ratnesh
IndividualForum Replies Created
-
Ratnesh
MemberApril 16, 2020 at 6:42 am in reply to: What is the maximum duration for debug log we can set in Salesforce?A single Debug Log can be of a maximum size of 20 MB only and takes 24 hours.
-
In Person account record type contacts related list on account will be missing whereas in case of business account record type contacts related list will be present.
-
Ratnesh
MemberApril 15, 2020 at 6:33 am in reply to: How do I assign a license to a user in Salesforce? -
Ratnesh
MemberApril 15, 2020 at 6:29 am in reply to: When should apex be used over workflow in Salesforce?Workflow rules and Process Builder operations sometimes have feature limitations that can be overcome with Apex. For example, pulling information from an external system.
-
To enable specific Salesforce functionality for your users, you must choose one user license for each user. To enable more functionality, you can assign permission set licenses and feature licenses to your users or purchase usage-based entitlements for your organization.
-
Apex provides a testing framework that allows you to write unit tests, run your tests, check test results, and have code coverage results. Let's talk about unit tests, data visibility for tests, and the tools that are available on the Lightning platform for testing Apex.
-
Ratnesh
MemberApril 13, 2020 at 3:14 pm in reply to: How BULK API is faster than SOAP API in Salesforce?Bulk API is basically used when you are dealing with really large datasets.
-
Ratnesh
MemberApril 13, 2020 at 3:12 pm in reply to: What is VLOOKUP used for in Importing Data in Salesforce?A good use case for the VLOOKUP function is to relate data when there is not an External ID field to work with.
-
An app is a collection of items that work together to serve a particular function. In Lightning Experience, Lightning apps give your users access to sets of objects, tabs, and other items all in one convenient bundle in the navigation bar.
-
Step One: Outline Goals for Transition. ...
Step Two: Map Out Workflows. ...
Step Three: Discuss and Prioritize Functionality and Potential Integrations. ...
Step Four: Run a Lightning Readiness Check. ...
Step Five: Work in a Sandbox. ...
Step Six: Test Your Goals. -
Ratnesh
MemberApril 11, 2020 at 3:52 pm in reply to: What's the difference between single sign-on (SSO) and social sign-on?Single sign-on (SSO) is an authentication process that allows a user to access multiple applications with one set of login credentials. With SSO, a user logs in once and gains access to different applications, without the need to re-enter log-in credentials at each application.
-
A tab is used to expose an object and its data to the end-user through the web interface.
-
Bucket field in Salesforce Reports is an incredible powerful functionality used to quickly categorize values for a field in a report without the need to have a custom formula field at the object level.
-
Ratnesh
MemberApril 11, 2020 at 3:46 pm in reply to: What are the different types of Chatter groups in Salesforce?Public: Anyone can see and add posts, comments, and files.
Private: Only group members can see and add posts, comments, and files.
Unlisted: Only group members and users with the “Manage Unlisted Groups” permission can see and add posts, comments, and files. -
Login Flows are flows that connect to individual profiles, or you can connect one flow to many profiles one by one.
-
It is a public class that is annotated with isTest and can be accessed only from a running test.
-
Chatter enables you and your colleagues to post various updates about your company's business plans, goals, and Salesforce ideas.
-
A group consists of a set of users. A group can contain individual users, other groups, or the users in a particular role or territory.
-
Feed tracking detects changes to tracked record fields and posts them as updates in the What I Follow feed. Users who follow a record, see those updates in their view of What I Follow, with one exception. Updates users make themselves aren't posted to What I Follow.
-
Salesforce Identity uses the XML-based Security Assertion Markup Language (SAML) protocol for single sign-on into Salesforce from a corporate portal or identity provider.
-
Ratnesh
MemberApril 11, 2020 at 3:34 pm in reply to: How to use Lightning Component in Visualforce Page in Salesforce?- Add the <apex:includeLightning /> component to your Visualforce page.
- Reference a Lightning app that declares your component dependencies with $Lightning. use().
- Write a function that creates the component on the Visualforce page with $Lightning. createComponent(). -
Ratnesh
MemberApril 11, 2020 at 2:32 pm in reply to: How to refresh a Lightning Component after Success in Salesforce?Navigate to Setup | Customize | Contacts | Fields.
Look for the picklist and click it.
Click Edit link for the field need to be set as default.
Select "Make this value the default for the master picklist", if any other value selected as default prior, it will be auto deselect.
Click Save button. -
Sharing is the act of granting a user or group of users permission to perform a set of actions on a record or set of records. Sharing access can be granted using the Salesforce user interface and Lightning Platform, or programmatically using Apex.
-
Returns a map of all sObject names (keys) to sObject tokens (values) for the standard and custom objects defined in your organization.
-
enables to load CSS and Javascript file as a static resource.