Forum Replies Created

Page 17 of 21
  • Marziya

    Member
    April 17, 2020 at 12:46 pm in reply to: Can we use formula field in SOQL query in Salesforce?

    Hii Ayush,
    Yes. Formula fields are calculated at the time of query, so they will calculate at runtime based on the currently saved values for that record. ... Also note that sObject fields that contain formulas return the value of the field at the time the SOQL or SOSL query was issued.

  • Marziya

    Member
    April 17, 2020 at 12:44 pm in reply to: What is selective query in Salesforce?

    Hii Ayush,
    Search Results
    Featured snippet from the web
    Selective SOQL Query Criteria. A 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. The performance of the SOQL query improves when two or more filters used in the WHERE clause meet the mentioned conditions.

  • Marziya

    Member
    April 17, 2020 at 12:43 pm in reply to: What is primary key in Salesforce?

    Hiii Ayush,
    A Primary key is a column or set of columns that uniquely identifies the record in the table. When a primary key is defined using multiple columns, the data from each column is used to determine whether a record/row is unique.

  • Marziya

    Member
    April 16, 2020 at 1:53 pm in reply to: What is Opportunity object in Salesforce?

    The Opportunity object connects Accounts to Products. Products are organized in Pricebooks and selected as Opportunity Line Items to create a list of items the customer wants to buy. The Opportunity is also related to Forecasts through the Stage and Percentage fields.

  • Marziya

    Member
    April 16, 2020 at 1:52 pm in reply to: Why lead object is used in Salesforce?

    To put it simply, in Salesforce, “Leads” are used to denote people you want as customers. Salesforce recommends separating these “Leads” from “Contacts” which can be used to denote current customers and sales-qualified opportunities.

  • Marziya

    Member
    April 16, 2020 at 1:49 pm in reply to: What are Sales steps in Salesforce?

    Hi Anjali,
    Pospecting.
    Qualification.
    Needs Analysis.
    Value Proposition.
    Id. Decision Makers.
    Perception Analysis.
    Proposal/Price Quote.
    Negotiation/Review.

  • Marziya

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

    Hii Aditya,
    Anyone can get access to it through a standard SOQL query (aka not attempting to lock it) still, but if they attempt to access it with FOR UPDATE as well, the system will return the QueryException blocking both transactions from locking the record. The delay will occur on DML.

  • Marziya

    Member
    April 15, 2020 at 1:25 pm in reply to: What are the considerations for Skinny Table?

    Hii Kirandeep,
    Skinny tables don't include soft-deleted rows (i.e., records in the Recycle Bin with isDeleted = true)
    Automatically synchronizes the rows between the base object and the skinny table.

  • Marziya

    Member
    April 15, 2020 at 1:24 pm in reply to: What is lightning record pages in salesforce?

    Hii ayush,
    A Lightning page is a custom layout that lets you design pages for use in the Salesforce mobile app or Lightning Experience. Lightning pages occupy a middle ground between page layouts and Visualforce pages. Like a page layout, Lightning pages allow you to add custom items to a page.

  • Marziya

    Member
    April 14, 2020 at 1:27 pm in reply to: What is difference between namespace and class in salesforce?

    Hii ayush,
    Classes are data types. They are an expanded concept of structures, they can contain data members, but they can also contain functions as members whereas a namespace is simply an abstract way of grouping items together. ... Using a class implies that you can create an instance of that class, not true with namespaces

  • Marziya

    Member
    April 14, 2020 at 1:25 pm in reply to: What are groups in SFDC ?

    Hii Ayush,
    A group consists of a set of users. A group can contain individual users, other groups, or the users in a particular role or territory. It can also contain the users in a particular role or territory plus all the users below that role or territory in the hierarchy.

  • Marziya

    Member
    April 14, 2020 at 1:24 pm in reply to: How to handle AddError in Apex Trigger in Salesforce?

    Hii Krati,
    Triggers can be used to prevent DML operations from occurring by calling the addError() method on a record or field. When used on Trigger.new records in insert and update triggers, and on Trigger.old records in delete triggers, the custom error message is displayed in the application interface and logged.

  • Marziya

    Member
    April 13, 2020 at 1:10 pm in reply to: What is utility class in Salesforce?

    Hii Anjali,
    Public test utility classes are defined with the isTest annotation, and as such, are excluded from the organization code size limit and execute in test context. They can be called by test methods but not by non-test code.
    The methods in the public test utility class are defined the same way methods are in non-test classes. They can take parameters and can return a value. The methods should be declared as public or global to be visible to other test classes. These common methods can be called by any test method in your Apex classes to set up test data before running the test. While you can create public methods for test data creation in a regular Apex class, without the isTest annotation, you don’t get the benefit of excluding this code from the organization code size limit.

  • Marziya

    Member
    April 13, 2020 at 1:06 pm in reply to: What are the products of sale cloud einstein in salesforce?

    Hii Manish,
    Mobile Studio: This offers marketers the ability to send SMS, MMS, and personalized push messages
    Advertising Studio: This manages ads and campaigns
    Web Studio: This creates websites and landing pages and tracks actions taken by customers

  • Hello Manish,
    Email Studio: This offers marketers the ability to send emails with personalized and dynamic content from Salesforce sales, service, or any other data source.
    Social Studio: This offers marketers the ability to publish, engage, and analyze sentiments of customers from various social channels.

  • Marziya

    Member
    April 9, 2020 at 12:14 pm in reply to: What are the tools included in Lightning in Salesforce?

    Hii Krati,
    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

  • Marziya

    Member
    April 9, 2020 at 12:01 pm in reply to: What are the features of lightning lookup component in Salesforce?

    Hii Shweta,
    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.

  • Marziya

    Member
    April 9, 2020 at 11:52 am in reply to: What are Sales Cadences in Salesforce?

    Hii Deepak,
    Sales Cadences are sequences of activities (like calls, emails, and other tasks) that guide an inside sales rep through the best next steps to take to get a prospect from open-unqualified to converted and moved into the next part of the sales cycle.

  • Marziya

    Member
    April 8, 2020 at 12:46 pm in reply to: What is the difference between a role and a profile?

    Hii Sumit,
    Roles controle which records/objects a user can SEE based on their role in the hierarchy. Profile settings determine what users can see (control the visibility of objects, tabs, CRUD, fields) and do with objects. Profiles are typically defined by a job function. Each profile is associated with a license type.

  • Marziya

    Member
    April 8, 2020 at 12:44 pm in reply to: What is SOQL used for?

    Hii Sumit,
    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.

  • Marziya

    Member
    April 8, 2020 at 12:42 pm in reply to: What’s the difference between Salesforce.com & Force.com?

    Hii Sumit,
    Salesforce is a company and salesforce.com is a Customer Relationship Management (CRM) application developed based on Software as a Service (SaaS). force.com is a platform that helps developers and business users to build powerful enterprise applications.

  • Marziya

    Member
    April 7, 2020 at 12:04 pm in reply to: What is the use of service cloud in Salesforce?

    Hii Pooja,
    Service Cloud allows users to automate service processes, streamline workflows and find key articles, topics and experts to support the agent. The purpose is to foster one-to-one marketing relationships with every customer, across multiple channels and on any device.

  • Marziya

    Member
    April 7, 2020 at 12:02 pm in reply to: Self relationship in Salesforce

    Hii Krati,
    A Self-Relationship is a lookup relationship to the same object. For example : Case Object ,there is self lookup.

  • Marziya

    Member
    April 7, 2020 at 11:59 am in reply to: How to Test an object-specific action in Salesforce?

    Hi Mohit,
    From the Contact object management settings, go to Buttons, Links, and Actions and click New Action.

  • Marziya

    Member
    April 6, 2020 at 1:37 pm in reply to: Tab and Object in Salesforce

    Hii Anjali,
    Image result for Tab and Object in Salesforce
    Tab in Salesforce is a User Interface to build records for objects and view records in objects. Objects are the database tables that permit us to store data specific to the organization. ... Standard Objects are provided by salesforce.com like users, contracts, reports, or dashboards etc.

Page 17 of 21