Pooja
IndividualForum Replies Created
-
represents one instance of an approval process. a new process instance is created each time a record is submitted for approval and it gives the status of approval & date of when approval submitted.
-
We can't query this directly.
-
Pooja
MemberJuly 10, 2020 at 5:50 pm in reply to: How does flow help us to automate our business process in Salesforce?Lightning Flow provides declarative process automation for every Salesforce app, experience, and portal with two point-and-click automation tools: Process Builder and Flow Builder.
-
nested wrapper class that is a wrapper consisting of another class variables.
-
Pooja
MemberJuly 10, 2020 at 5:44 pm in reply to: What are the limitations of Duplicate Management in Salesforce?Records can only be merged one by one and cannot be done in mass or automatically. Only two or three records can be merged at one time.
-
Data Types and Variables. Apex uses data types, variables, and related language constructs such as enums, constants, expressions, operators, and assignment statements.
-
When rendering VisualForce pages, the platform will automatically enforce CRUD and FLS when the developer references SObjects and SObject fields directly in the VisualForce page.
-
Map<String, Object> m = (Map<String, Object>) JSON.deserializeUntyped(jsonInput);
Map<String, Object> m2 = (Map<String, Object>) m.get('info5');
List<decimal> d = new List<decimal>();
for(String s:m2.keyset()) {
decimal t = (decimal) m2.get(s);
d.add(t);
} -
Pooja
MemberJuly 8, 2020 at 6:21 am in reply to: Which fields are read only data type in Salesforce?Roll-up Summary is also a read-only field type. By using this Roll-up Summary data types we are able to make some mathematical calculations like Sum, Minimum, Maximum values of a afield in a related list or the record count of all records listed in a related list.
-
<div>Conditional highlighting is used to highlight field values on summary or matrix reports based on ranges and colors you specify.
-
From Setup, enter Visualforce in the Quick Find box, then select Visualforce Pages.
Click Edit next to the Visualforce page.
Search the Visualforce markup for each of the following: apex:iframe , iframe , and apex:canvasApp -
Quickly categorize report records without creating a formula or a custom field by bucketing them. When you create a bucket column, you define multiple categories (buckets) used to group report values.
-
Pooja
MemberJuly 7, 2020 at 4:45 pm in reply to: How do you add conditional highlights in Salesforce reports?Add Conditional Formatting Rule, select a summary or custom summary formula field that serves as a KPI for your business.
-
A component that creates an inline frame within a Visualforce page. A frame allows you to keep some information visible while other information is scrolled or replaced.
-
Pooja
MemberJuly 6, 2020 at 6:39 am in reply to: Add lightning component in custom button on object detail page in Salesforce?Yes, we can add it.
-
SaaS is a subscription based, customers can always choose not to renew if they are dissatisfied. Customers can avoid a large initial investment in an IT infrastructure and day to day hustle of maintaining infrastructure.
-
Create relationships to link objects with each other, so that when your users view records, they can also see related data.
-
Pooja
MemberJuly 2, 2020 at 7:18 pm in reply to: What is the benefits of Disable cache memory in Salesforce?Disable the secure and persistent browser caching setting during development in a sandbox or Developer Edition org to see the effect of any code changes without needing to empty the cache.
-
A WSDL is an XML-document which contains a standardized description on how to communicate using a web service (the Salesforce API is exposed as a web service).
-
Pooja
MemberJuly 2, 2020 at 7:16 pm in reply to: How do i enable list custom setting by default it is not enabled in Salesforce?Go to Setup | Data Management | Schema Settings and Enable "Manage List Custom Settings Type". By enabling this option, users will have the ability to create List Custom Setting type.
-
Pooja
MemberJuly 1, 2020 at 6:47 am in reply to: What are the types of Sharing Rules in Salesforce?Owner-Based Sharing Rules
An owner-based sharing rule opens access to records owned by certain users. For example, a company’s sales managers need to see opportunities owned by sales managers in a different region. The U.S. sales manager could give the APAC sales manager access to the opportunities owned by the U.S. team using owner-based sharing.
Criteria-Based Sharing Rules
A criteria-based sharing rule determines with whom to share records based on field values. -
Pooja
MemberJuly 1, 2020 at 6:46 am in reply to: What are capture and bubble phase in Lightning in Salesforce?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.
-
Pooja
MemberJuly 1, 2020 at 6:46 am in reply to: When to use IsNew() in formula in process builder in Salesforce?It Checks if the formula is running during the creation of a new record and returns TRUE if it is. If an existing record is being updated, this function returns FALSE.
-
An object of type schema.DescribeSObjectResult that contains all the describe properties for the sObject or field.
-
Pooja
MemberJuly 1, 2020 at 6:09 am in reply to: How to get a list of sObjects and their fields in APEX in Salesforce ?APEX Code. In this code, we have used the schema class to get the list of sObjects and fields in APEX.