Pooja
IndividualForum Replies Created
-
Pooja
MemberApril 21, 2020 at 2:21 PM in reply to: What is case object in Salesforce in salesforce ?On the Cases home page, you can create, locate, and edit cases and also sort and filter cases and queues using standard and custom list views.
-
When you create a bucket field, you define multiple categories (buckets) that are used to group report values. We have created simple step by step instructions on how to create this report.
-
query is selective when one of the query filters is on an indexed field and the query filter reduces the resulting number of rows below a system-defined threshold.
-
When a primary key is defined using multiple columns, the data from each column is used to determine whether a record/row is unique.
-
Record types allow you to associate different business processes and subset of pick list value to different users based on their user profile. They are used to drive which page layouts users see when viewing records, based on their user profile.
-
It will represent the leadstatus picklist field value while converting lead to opp or acc or contact. just run this query in dev console you will get the Id,leadstatus picklist values. SELECT Id, MasterLabel FROM LeadStatus
-
The toolbox contains the elements and resources you use to build your flow. ... From the Manager tab, create resources, such as variables, stages, and choices, to use in your flow. Or view a list of all elements and resources that you've added to the flow.
-
Pooja
MemberApril 15, 2020 at 1:40 PM in reply to: What is Defer Sharing Calculation in Salesforce ?This is very useful and handy feature to speed up data loading by avoiding calculation of Sharing rules.
-
Yes , By using “FOR UPDATE” clause of SOQL.
-
Pooja
MemberApril 15, 2020 at 1:38 PM in reply to: What is the difference between lightning component and lightning Web component?Lightning web components do not have Lightning Component equivalent of component or application events. The events in LWC are dispatched using standard DOM events. To communicate between components not in the hierarchy, publish-subscribe event model is utilized.
-
Pooja
MemberApril 14, 2020 at 4:06 PM in reply to: What is Local Sorting and when it is used in Salesforce?Dashboard components support two-level sorting. So you can sort by Stage and then by Sum of Amount, or by Average Age and then Record Count.
-
Pooja
MemberApril 14, 2020 at 4:05 PM in reply to: What is ENT prefix in SQL in Salesforce Marketing Cloud?The child account's permission restricts access to parent data extensions. Example In this example, email is the column name and customers is the data extension in the parent account. Select email from ent.customers.
-
Pooja
MemberApril 14, 2020 at 4:00 PM in reply to: Can we schedule a dynamic dashboard in Salesforce?Dynamic dashboards show the data as per the login user. By enabling dynamic dashboards, we are giving user-specified data access to the user.
-
Pooja
MemberApril 13, 2020 at 2:58 PM in reply to: What is the use of startTest() and stopTest() in Salesforce?startTest() and Test. stopTest() exist primarily to allow you to reset the governor limits within the context of your test execution and to be able to test asynchronous methods. These two statements cannot be called more than once within a testMethod
-
Pooja
MemberApril 13, 2020 at 2:55 PM in reply to: What is difference insert() and database .insert() in Salesforce?If we use DML database method (Database.insert) to insert/update record in bulk, then if error occurs the remaining records will be inserted/updated means partially operation will be done.
-
. Data Modeling: Give your data a structure - fields, objects, and relationships in Salesforce Org.
-
“Data skew” is a condition which you will encounter when working for a big client where there are over 10,000 records. When one single user owns that many records we call that condition 'ownership data skew'. When such users perform updates, performance issues will be encountered because of “data skew”.
-
Pooja
MemberApril 9, 2020 at 1:43 PM in reply to: Does user can create insert their own custom logo, while creating their own custYes, User does.
-
Show Custom Object Data for Your Users. Custom tabs let you display custom object data or other web content in Salesforce. When you add a custom tab to an app in Salesforce Classic, it displays as a tab. When you add a custom tab to an app in Lightning Experience, it displays as an item in the app's navigation bar.
-
SOQL stands for Salesforce Object Query Language. It is very similar to the widely used language SQL (Structured Query Language), to query databases. SOQL is specifically designed for Salesforce data and is used to query the Salesforce platform to retrieve data. SOQL is used within Apex & Visualforce to return sets of data.
-
Pooja
MemberApril 8, 2020 at 6:25 PM in reply to: What are the features of lightning lookup component in Salesforce?Build using Vanilla JavaScript and SLDS.
Storable Action used to increase performance.
Server call made only when space key pressed.
On escape key press, search result gets cleared.
Ability to set Icon. -
Pooja
MemberApril 8, 2020 at 6:22 PM in reply to: What are the tools included in Lightning in Salesforce?A list of tools available in Lightning and frequently used by Salesforce Developers include – Salesforce Lightning Component Framework, Lightning Connect, Lightning App Builder, Lightning Process Builder, and Schema builder, Lightning Experience, Lightning Exchange, Lightning App Builder, or Visual building tools etc.
-
Right-click the SOAP element and select Expose SOAP Web Service.
Set the name of your SOAP Web Service and the remaining properties.
If you want to set a specific namespace for your SOAP Web Service, set it in the "Web Services Namespace" property of the module.
Right-click your new SOAP Web Service and select Add Web Service Method.
Set the name of your method.
Design the logic of your Web Service Method.
When you publish your module, the following happens:
The actions of exposed SOAP Web Services are translated into methods in the WSDL, with the same name and description.
The data types used by these actions are mapped into XML data types in the WSDL. -
Pooja
MemberApril 7, 2020 at 10:19 AM in reply to: How to Test an object-specific action in Salesforce?Verify that the action type is Create a Record. Actions can do more than just create records. To learn more about the other options, read the Object-Specific Actions article in Salesforce Help.
-
A Self-Relationship is a lookup relationship to the same object. For example : we have a field on Account which is Parent Account that allows us to choose any account for being a parent account of an existing one.