Deepak
IndividualForum Replies Created
-
A <dfn>custom controller</dfn> is an Apex class that implements all of the logic for a page without leveraging a standard controller. 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.
-
<div data-md="61"><div aria-level="3" role="heading" data-attrid="wa:/description" data-hveid="CA0QEA">Audit Fields in Salesforce are special fields that track information about your records that can be valuable for audit purposes. Typically these fields include: CreatedByID. CreatedDate.
<div><div data-hveid="CA0QEg" data-ved="2ahUKEwi_qJeZmN7qAhWPf30KHbkUDr4QFSgBMA96BAgNEBI">
</div></div></div></div> -
<div data-md="61"><div aria-level="3" role="heading" data-attrid="wa:/description" data-hveid="CA0QBg">Standard field are the fields that Salesforce provided. When you will create custom object in Salesforce. Salesforce will provide some fields like name, created date, modified date,id. These fields is also available on standard object as well.
<div><div data-hveid="CA0QBw" data-ved="2ahUKEwj4spbwl97qAhWKXisKHXrXBPIQFSgBMA56BAgNEAc">
</div></div></div></div> -
Locker Console enables you to quickly evaluate JavaScript code for issues or benchmark code, without requiring you to create an app to test your component. You can evaluate only JavaScript code in Locker Console. You can't evaluate a complete component bundle or component markup.
-
Deepak
MemberJuly 20, 2020 at 10:05 am in reply to: What are the limitations of using Savepoint in Salesforce?Each savepoint you set counts against the governor limit for DML statements.Each rollback counts against the governor limit for DML statements. You will receive a Runtime error if you try to rollback the database additional times.The ID on an sObject inserted after setting a savepoint is not cleared after a rollback.
-
Deepak
MemberJuly 20, 2020 at 10:03 am in reply to: What is the virtual class in Apex in Salesforce?Virtual Classes are functional classes and can be instantiated or extended without then need of overriding methods.
-
Deepak
MemberJuly 17, 2020 at 2:06 pm in reply to: How does Salesforce streaming API perform long polling?<div data-md="61" lang="en-IN"><div aria-level="3" role="heading" data-attrid="wa:/description" data-hveid="CAwQAQ">This is done using a push protocol called the Bayeux protocol.
<div><div data-hveid="CAwQAw" data-ved="2ahUKEwiG3Li2utTqAhWAyDgGHYzZDZgQFSgBMAF6BAgMEAM">
</div></div></div></div> -
<div data-md="61" lang="en-IN"><div aria-level="3" role="heading" data-attrid="wa:/description" data-hveid="CA8QAQ">It used to read data in real-time from the web for consumers for precise, up-to-date results. For example, they are typically used by social media platforms to deliver media content such as audio and data. Typically Social Networks tend to use WebSocket, which is a subset of Streaming APIS.
<div><div data-hveid="CA8QAw" data-ved="2ahUKEwjGpteYutTqAhUszjgGHagECtsQFSgBMAF6BAgPEAM">
</div></div></div></div> -
<div data-md="61" lang="en-IN"><div aria-level="3" role="heading" data-attrid="wa:/description" data-hveid="CAwQAQ">PushTopic events provide a secure and scalable way to receive notifications for changes to Salesforce data that match a SOQL query you define. Receive notifications of Salesforce record changes, including create, update, delete, and undelete operations.
<div><div data-hveid="CAwQAg" data-ved="2ahUKEwj14eH-udTqAhW_zzgGHZUZBPcQFSgBMAF6BAgMEAI">
</div></div></div></div> -
<div data-md="61" lang="en-IN"><div aria-level="3" role="heading" data-attrid="wa:/description" data-hveid="CAsQAQ">Use Apex to publish event messages from a Salesforce app. To publish event messages, call the EventBus. publish method.
<div><div data-hveid="CAsQAg" data-ved="2ahUKEwitlfG-3NHqAhU_xjgGHcb8DnEQFSgBMAF6BAgLEAI">
</div></div></div></div> -
Deepak
MemberJuly 16, 2020 at 11:28 am in reply to: How many groupings can we have in a Compare Table in Salesforce Einstein?<div data-md="61" lang="en-IN"><div aria-level="3" role="heading" data-attrid="wa:/description" data-hveid="CA0QAw">Add up to four that are applied to every column.
<div><div data-hveid="CA0QBA" data-ved="2ahUKEwi8tr-h1dHqAhW_wzgGHfkXASQQFSgCMAJ6BAgNEAQ">
</div></div></div></div> -
<div data-md="61"><div aria-level="3" role="heading" data-attrid="wa:/description" data-hveid="CAwQBQ"><div><div data-hveid="CAwQBg" data-ved="2ahUKEwj-5N-H09HqAhWhzzgGHbRhDXgQFSgBMAl6BAgMEAY"><div data-md="61" lang="en-IN"><div aria-level="3" role="heading" data-attrid="wa:/description" data-hveid="CAsQAQ">Analytics apps are like folders, allowing users to organize their own data projects—both private and shared—and control sharing of datasets, lenses, and dashboards. Create an app to organize and contain any combination of lenses, dashboards, and datasets.
<div><div data-hveid="CAsQAg" data-ved="2ahUKEwjep9jS09HqAhVSwjgGHfeLAuYQFSgBMAF6BAgLEAI">
</div></div></div></div>
</div></div></div></div> -
Deepak
MemberJuly 15, 2020 at 8:06 am in reply to: How do you enforce FLS in lightning component in Salesforce?We should manually enforce the FLS and CRUD in the Apex Controller, or we should try to use Lightning Data service wherever possible because it takes care of FLS and CRUD for us.
-
Capture phase—The framework executes the capture phase from the application root to the source component until all components are traversed.
Bubble phase—The framework executes the bubble phase from the source component to the application root until all components are traversed or stopPropagation() is called. -
The handlers specified on each component are fired in this order i.e. from source to the owner. This phase where the event is handled from innermost to the outermost component is called the bubble phase.
-
Autolaunched Flow makes before-save updates to the new or changed record that launches the flow. Only these elements are supported: Assignment, Decision, Get Records, and Loop. A record-triggered flow runs only when a record is created or updated.
-
Deepak
MemberJuly 14, 2020 at 8:47 am in reply to: Can a particular customer be placed in a specific distribution in an A/B Test.There are two ways for choosing the test distribution for A/B Test as follows:
- How much is percentage of subscribers?
- How many subscribers?
-
Deepak
MemberJuly 14, 2020 at 8:44 am in reply to: How is the winning email selected in A/B Testing in Salesforce?The system randomly selects which subscribers receive test and remainder, allowing you to use the same set of subscribers for A/B tests in the future Send the winning version to the remainder of your subscribers automatically when the winner is determined or to come back and manually perform the send.
-
Deepak
MemberJuly 13, 2020 at 10:44 am in reply to: How do you deploy a business process in Salesforce?- Create an outbound changeset.
- Add the record types.
- Click "Add/View" dependencies.
- Add the required processes.
-
Process Instance record is created every time for particular object record which is submitted for approval. It's also read-only object.
-
We can not modify the record created in ProcessDefinition Object. But we can describe, query, search and retrieve the approval processes information.
-
Yes, you can call batch apex from a apex trigger.
-
Deepak
MemberJuly 10, 2020 at 5:50 am in reply to: How does Einstein Discovery use actionable variables?If a variable is designated as actionable, the model uses prescriptive analytics to suggest actions (improvements) the user can take to improve the predicted outcome.Einstein Discovery calculates model performance by comparing how closely predicted outcomes come to actual outcomes.
-
Deepak
MemberJuly 10, 2020 at 5:43 am in reply to: How many groupings can you have in a Compare Table in Salesforce?I think you can have 4 groupings in a Compare Table in Salesforce.
-
To export the ListViews, you can use Dataloader.IO[https://dataloader.io] and then select the Export Task and run this SOQL Query:
SELECT Id, Name, DeveloperName, NamespacePrefix, SobjectType, IsSoqlCompatible, CreatedDate, CreatedBy.Name, LastModifiedDate, LastModifiedBy.Name, LastViewedDate, LastReferencedDate,sharedTo FROM ListView