Anjali
IndividualForum Replies Created
-
Anjali
MemberJuly 28, 2020 at 10:32 am in reply to: How Many Controllers Can A Page Have? Where Is The Controller For A Page AssignOne main controller (of course, it could have extensions or custom
components could have controllers, etc.). The controller is assigned in
the <apex:page> tag. -
Automation Studio is a Salesforce Marketing Cloud application used to execute multi-step marketing and data management activities on an immediate, triggered, or scheduled basis. Use Automation Studio's workflow canvastobuild simple or multi-step automations.
-
Anjali
MemberJuly 27, 2020 at 8:56 am in reply to: Which use case requires a partial copy or full sandbox in Salesforce?Use a Partial Copy sandbox for quality assurance tasks such as user acceptance testing, integration testing, and training. A Full sandbox is intended to be used as a testing environment. Only Full sandboxes support performance testing, load testing, and staging.
-
Salesforce enforces an Apex Heap Size Limit of 6MB for synchronous transactions and 12MB for asynchronous transactions.
-
Anjali
MemberJuly 24, 2020 at 7:33 am in reply to: What is social studio in the salesforce marketing cloud?Social Studio is a one-stop solution to manage, schedule, create, and monitor posts. You can organize posts by brand, region, or multiple teams and individuals in a unified interface
-
Anjali
MemberJuly 24, 2020 at 7:31 am in reply to: Whats the difference between data filters activity and SQL activity in the salesFilter Activity- Apply the logic of a data filter you select to create a group or data extension in Automation Studio. Filtering subscribers or contacts makes targeting specific subscribers or contacts based on their attributes and other conditions easier.In Marketing Cloud, an SQL query activity is used to execute queries and retrieve data for reporting or segmenting audiences.
-
To encrypt data at rest and preserve functionality, Salesforce built the encryption services natively into the Salesforce Platform. Encryption strengthens the data security.
-
We can use SOSL in classes but not in Triggers.
-
Anjali
MemberJuly 23, 2020 at 1:12 pm in reply to: what is the use of JSON.serializePretty() in apex?<div>serializePretty(objectToSerialize, suppressApexObjectNulls)
Suppresses null values when serializing Apex objects into JSON content and generates indented content using the pretty-print format.
</div> -
The other way is through Workbench to develop lwc controller.
-
Anjali
MemberJuly 22, 2020 at 10:54 am in reply to: Can we say that Lightning Component is based on MVC architecture?No, it's a component-based framework.
-
Anjali
MemberJuly 22, 2020 at 10:44 am in reply to: What is the use of documentation in Lightning Component in Salesforce?Component documentation helps others understand and use your components. Documentation in Lightning Bundle in Salesforce description is to show the description of the component.<div>
</div> -
Tooling API exposes metadata used in developer tooling that you can access through REST or SOAP. For detailed descriptions of Tooling API objects and the REST resources and SOAP calls that each object supports, see Tooling API Objects. Use Tooling API when you need fine-grained access to an org's metadata.
-
StandardSetController allows us to create list controllers similar to, or as extensions of, the pre-built Visualforce list controllers provided by Salesforce. For e.g when you want to override a tab or list view with your custom visualforce page like.
- This reply was modified 4 years, 4 months ago by Anjali.
-
Bulk API Allocations
-Batches for data loads can consist of a single CSV, XML, or JSON file that is no larger than 10 MB.
-A batch can contain a maximum of 10,000 records.
-A batch can contain a maximum of 10,000,000 characters for all the data in a batch.
-A field can contain a maximum of 32,000 characters. -
Anjali
MemberJuly 20, 2020 at 9:39 am in reply to: How to convert VisualForce page into PDF in Salesforce?You can generate a downloadable, printable PDF file of a Visualforce page using the PDF rendering service.
-
Lightning Locker Service is a powerful security architecture for Lightning components implemented to make lightning components secure.
-
You can disable LockerService for a component by setting version 39.0 or lower for the component.
-
Anjali
MemberJuly 17, 2020 at 7:57 am in reply to: What Do {!expressions} Refer To When Used In Visualforce Components in SalesforcExpressions refer to either data or actions that are made available to the page from the controller
-
Anjali
MemberJuly 17, 2020 at 7:56 am in reply to: What Kind Of Content Can Be Included In A Visualforce Page in Salesforce?Any content that can be rendered in a browser (HTML, JavaScript, etc.).
-
Anjali
MemberJuly 17, 2020 at 7:54 am in reply to: When Is A Component Controller Required For Custom Components in Salesforce?A component controller is required when business logic is required to decide how to render the component.
-
Anjali
MemberJuly 17, 2020 at 7:51 am in reply to: What Are The Effects Of Using The Transient Key Word in Salesforce?The transient key word prevents the data from being saved into the view state. This should be used for very temporary variables.
-
Anjali
MemberJuly 17, 2020 at 7:50 am in reply to: How Are Wizard Controllers Different From Other Controllers in Salesforce?The two main issues is that they must handle multiple pages and they must maintain the state across those pages.
-
Anjali
MemberJuly 17, 2020 at 7:47 am in reply to: What Are Some Apex Classes That Are Commonly Used Within Controllers?StandardController, SelectOption, PageReference, Message, etc.
-
Anjali
MemberJuly 16, 2020 at 7:24 am in reply to: What are value providers in Salesforce Lightning in Salesforce?Value providers are a way to access data. Value providers encapsulate related values together, similar to how an object encapsulates properties and methods.