Forum Replies Created

Page 23 of 26
  • Anjali

    Member
    March 2, 2020 at 1:59 pm in reply to: What are Activities in Salesforce Marketing Cloud?

    Activities perform specific actions like transferring or extracting data, or sending an email. Activities are the building blocks of an automation. Please refer the below link to understand each and every activity associated-

    https://help.salesforce.com/articleView?id=mc_jb_activities_reference.htm&type=5

  • Anjali

    Member
    March 2, 2020 at 12:48 pm in reply to: How do you expose SOAP Web services in Salesforce?

    Making your Apex class available as a SOAP web service is as easy as with REST. Define your class as global. Add the webservice keyword and the static definition modifier to each method you want to expose. The webservice keyword provides global access to the method it is added to.

  • Anjali

    Member
    February 28, 2020 at 12:56 pm in reply to: In Salesforce, what is the default, min and max batch size in batch apex?

    Minimum size for Batch Apex in Salesforce is 1, Default is 200.

    Maximum size for Batch Apex in Salesforce is 2000.

  • Anjali

    Member
    February 28, 2020 at 12:53 pm in reply to: Can we make a callout from the batch apex in Salesforce?

    Yes, it is possible to make callout from batch apex.

  • Anjali

    Member
    February 27, 2020 at 2:37 pm in reply to: What is Apex Hammer in Salesforce?

    The Hammer means taking every single Apex test that you or anyone else has created and running it twice.

  • Anjali

    Member
    February 27, 2020 at 2:25 pm in reply to: What are Aggregate Functions in Salesforce SOQL?

    Sum(), Count(), Min(), Max() and Avg()

  • Anjali

    Member
    February 26, 2020 at 1:46 pm in reply to: What is Callback URL ?

    Callback URLs are the URLs that Auth0 invokes after the authentication process. Auth0 redirects back to this URL and appends additional parameters to it, including an access code which will be exchanged for an id_token, access_token and refresh_token.

    Since callback URLs can be manipulated, you will need to add your application's URL to your client's Allowed Callback URLs for security. This will enable Auth0 to recognize these URLs as valid. If omitted, authentication will not be successful.

    The format of the URL will depend on the platform. In the sample callback URLs below, replace YOUR_AUTH0_DOMAIN with your actual Auth0 domain. You can find your domain on the Settings tab for your Client inside the Auth0 dashboard:

  • Anjali

    Member
    February 26, 2020 at 1:44 pm in reply to: When to Use REST API for integration in Salesforce?

    REST API provides a powerful, convenient, and simple REST-based web services interface for interacting with Salesforce. Its advantages include ease of integration and development, and it’s an excellent choice of technology for use with mobile applications and web projects. For certain projects, you may want to use REST API with other Salesforce REST APIs. To build UI for creating, reading, updating, and deleting records, including building UI for list views, actions, and dependent picklists, use User Interface API. To build UI for Chatter, communities, or recommendations, use Chatter REST API. If you have many records to process, consider using Bulk API, which is based on REST principles and optimized for large sets of data.

  • Anjali

    Member
    February 26, 2020 at 1:43 pm in reply to: When to Use SOAP API for integration in Salesforce?

    SOAP API provides a powerful, convenient, and simple SOAP-based web services interface for interacting with Salesforce. You can use SOAP API to create, retrieve, update, or delete records. You can also use SOAP API to perform searches and much more. Use SOAP API in any language that supports web services.

    For example, you can use SOAP API to integrate Salesforce with your org’s ERP and finance systems. You can also deliver real-time sales and support information to company portals and populate critical business systems with customer information.

    • This reply was modified 4 years, 9 months ago by  Anjali.
  • Anjali

    Member
    February 25, 2020 at 1:42 pm in reply to: What is the use of Summary report in Salesforce?

    Summary Report is the second Salesforce report format which allows users to group rows data which supports sorting and display subtotals. Summary reports displays subtotals based on Value of a field.

  • Anjali

    Member
    February 25, 2020 at 1:39 pm in reply to: What is the use of Matrix report in Salesforce?

    They can be used as the source report for dashboard components.

  • Anjali

    Member
    February 25, 2020 at 1:35 pm in reply to: What are the two different flavors of Apex callouts Salesforce?

    SOAP and REST are the two different callouts.

  • Anjali

    Member
    February 24, 2020 at 1:53 pm in reply to: What are the features of Service Cloud Essentials in Salesforce?

    It's a customer service solution specifically built for small and medium businesses (SMBs) just getting started with customer service.Service Cloud Essentials makes it easy for SMBs to focus on their customers, because it's easy to set up, easy to use, and easy to buy.

    Salesforce Service Cloud offers the most complete customer service platform with features and capabilities that include service console, case management, omni-channel routing, account and contact management, social media customer service, customer self-service, live chat, and more.

  • Anjali

    Member
    February 24, 2020 at 1:47 pm in reply to: What is the business benefit of blockchain in Salesforce?

    Following reasons make it beneficial-

    1.Enhanced CRM data security

    2.More engagement with customers and grasp their requirements

    3.Quality Assurance

  • Anjali

    Member
    February 24, 2020 at 10:43 am in reply to: What is the advantage of the Salesforce Platform?

    Its proficiency in on-demand software helps reduce the cost for customers as it provides a common networking, hardware and software platform. Customers can improve sales and enhance communication through various SaaS offerings ofSalesforce namely Salesforce Chatter, Sales Cloud, and Service Cloud applications.

  • Anjali

    Member
    February 21, 2020 at 12:24 pm in reply to: What are the Salesforce Editions?

    There are four primary Salesforce Editions available: Group, Professional, Enterprise and Unlimited.

    Please go through this link and you will get to know about each edition-

    https://help.salesforce.com/articleView?id=overview_edition.htm&type=5

  • Sales Cloud offers Web-to-lead functionality, whereas Service Cloud offers Web-to-case functionality.

  • Anjali

    Member
    February 21, 2020 at 12:18 pm in reply to: What is the importance of live chat in Salesforce?

    Customer experience is heavily influenced by customer service, and live chat will help your company create a better customer service experience for customers visiting your website. In fact, live chat has the highest satisfaction rates among customer service channels.

  • Anjali

    Member
    February 20, 2020 at 2:27 pm in reply to: Can we get trigger.old value in insert in triggers in Salesforce ?

    No, trigger.old is null in insert triggers.

  • Anjali

    Member
    February 20, 2020 at 2:25 pm in reply to: What is the use of <apex:column> tab in Salesforce?

    This attribute is used primarily to designate which CSS styles are applied when using an external CSS stylesheet.

  • Anjali

    Member
    February 20, 2020 at 2:24 pm in reply to: Why Trigger is mandatory to write in handler class in Salesforce?

    The good practice takes it into consideration that the trigger should be logic free and the logic code must be included in TRiggerHandler class.

  • Test. 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

  • Anjali

    Member
    February 19, 2020 at 2:08 pm in reply to: What is @TestVisible in Salesforce?

    Use the TestVisible annotation to allow test methods to access private or protected members of another class outside the test class.

  • Anjali

    Member
    February 19, 2020 at 2:06 pm in reply to: What is Inline Edit in Salesforce?

    Inline editing is a feature by which one can edit a record without pressing the edit button.

  • Anjali

    Member
    February 18, 2020 at 2:11 pm in reply to: What is dynamic query in Salesforce ?

    Dynamic query refers to the SOQL string at run time in apex code.

Page 23 of 26