Forum Replies Created

Page 12 of 17
  • Pooja

    Member
    April 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.

  • Pooja

    Member
    April 17, 2020 at 2:16 PM in reply to: What is bucket list in Salesforce?

    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.

  • Pooja

    Member
    April 17, 2020 at 2:15 PM in reply to: What is selective query in Salesforce?

    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.

  • Pooja

    Member
    April 17, 2020 at 2:13 PM in reply to: What is primary key in Salesforce?

    When a primary key is defined using multiple columns, the data from each column is used to determine whether a record/row is unique.

  • Pooja

    Member
    April 16, 2020 at 3:05 PM in reply to: What are RecordTypes in Salesforce?

    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.

  • Pooja

    Member
    April 16, 2020 at 3:03 PM in reply to: What is MasterLabel in Salesforce?

    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

  • Pooja

    Member
    April 16, 2020 at 3:01 PM in reply to: What is flow builder in salesforce?

    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

    Member
    April 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.

  • Pooja

    Member
    April 15, 2020 at 1:39 PM in reply to: Can we lock record using soql in salesforce ?

    Yes , By using “FOR UPDATE” clause of SOQL.

  • 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

    Member
    April 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

    Member
    April 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

    Member
    April 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

    Member
    April 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

    Member
    April 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.

  • Pooja

    Member
    April 13, 2020 at 2:52 PM in reply to: What is data model in Salesforce?

    . Data Modeling: Give your data a structure - fields, objects, and relationships in Salesforce Org.

  • Pooja

    Member
    April 9, 2020 at 1:45 PM in reply to: Explain the term “Data Skew” in Salesforce.

    “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”.

  • Yes, User does.

  • Pooja

    Member
    April 9, 2020 at 1:42 PM in reply to: What is TAB in Salesforce?

    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.

  • Pooja

    Member
    April 8, 2020 at 6:26 PM in reply to: What is SOQL used for?

    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

    Member
    April 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

    Member
    April 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.

  • Pooja

    Member
    April 7, 2020 at 10:20 AM in reply to: How to Expose Webservice as a SOAP API?

    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

    Member
    April 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.

  • Pooja

    Member
    April 7, 2020 at 10:17 AM in reply to: Self relationship in Salesforce

    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.

Page 12 of 17