Forum Replies Created

Page 5 of 24
  • Deepak

    Member
    September 30, 2020 at 1:26 pm in reply to: How does Asynchronous processing works in Salesforce?

    An asynchronous process is a process or function that executes a task in the background without the user having to wait for the task to finish.You can typically use Asynchronous Apex for callouts to external systems, operations that require higher limits, and code that needs to run at a certain time.

  • Deepak

    Member
    September 30, 2020 at 1:24 pm in reply to: Can we schedule dynamic dashboard in Salesforce?

    Dashboards won't refresh as scheduled if the running user doesn't have access to the dashboard folder. If a dashboard has filters, only the unfiltered version is refreshed. You can't schedule refreshes for dynamic dashboards.

  • Deepak

    Member
    September 30, 2020 at 1:22 pm in reply to: How Salesforce track sales details?

    Use the performance chart on the Home page in Lightning Experience to track your sales performance or the performance of your sales team against a customizable sales goal.

  • Deepak

    Member
    September 29, 2020 at 3:40 pm in reply to: How do I run a Queueable class in Salesforce?

    Using the Queueable interface is an enhanced way of running your asynchronous Apex code compared to using future methods.

  • Deepak

    Member
    September 29, 2020 at 3:38 pm in reply to: How do I create a test data in Salesforce?

    Steps to create a test data :
    1. Select File > New > Apex Class.
    2. Name the className_Tests .
    3. Insert records and Run.

  • Deepak

    Member
    September 29, 2020 at 3:34 pm in reply to: How do I create the entitlement process in Salesforce?

    Steps to create an Entitlement Process:
    1. Click the Object Manager tab, then select Account.
    2. Select Fields & Relationships, then click New.
    3. Select Picklist, and click Next and enter the details.
    4. Click the Service Setup Home tab.
    5. Enter Entitlement Processes in the Quick Find box and select Entitlement Processes.
    6. Click New Entitlement Process.

  • Deepak

    Member
    September 28, 2020 at 4:07 pm in reply to: What are the different types of webservices in Salesforce?

    Web Services Description Language (WSDL)
    Web Services Conversation Language (WSCL)
    Web Services Flow Language (WSFL)
    Web Services Metadata Exchange (WS-MetadataExchange)
    XML Interface for Network Services (XINS)
    Web template.
    JSON-RPC.
    JSON-WSP.

  • Deepak

    Member
    September 28, 2020 at 3:51 pm in reply to: How to enable Google Drive Api in Salesforce?

    In the project dashboard, click the menu icon in the upper left, and then click APIs & Services.
    In the API manager, go to the Library tab and search for Google Drive API .
    In the search results, click Google Drive API, and then click Enable API.

  • Deepak

    Member
    September 28, 2020 at 5:18 am in reply to: What is a Revenue Schedule in Salesforce?

    A revenue schedule determines when a product is paid for. A default schedule is associated with a specific product in a specific price book. Every time the product is added to an opportunity, the default schedule is used. You can override the default schedules on any opportunity.

  • Deepak

    Member
    September 25, 2020 at 1:21 pm in reply to: What is the use of login flow in salesforce?

    You can use a login flow to control the business processes that your users follow when they log in to Salesforce.

  • Deepak

    Member
    September 25, 2020 at 1:20 pm in reply to: What is JUNCTIONIDLIST in Validation rule ?

    Compares the value of a field to the previous value and returns TRUE if the values are different. If the values are the same, this function returns FALSE. JUNCTIONIDLIST. Returns a JunctionIDList based on the provided IDs. LINKTO.

  • Deepak

    Member
    September 25, 2020 at 1:17 pm in reply to: what is Formula Data Types insalesforce?

    The data type of a formula determines the type of data you expect returned from your formula. Returns a true or false value. The field appears as a checkbox in record detail pages and reports.

  • Deepak

    Member
    September 24, 2020 at 5:33 pm in reply to: How to cover PageReference from test class in Apex in Salesforce?

    Create TestFactory class with @isTest annotation to exclude from organization code size limit . @testSetup to create test records once in a method and use in every test method in the test class.

  • Deepak

    Member
    September 24, 2020 at 5:31 pm in reply to: What is use of login flow in salesforce?

    You can use a login flow to control the business processes that your users follow when they log in to Salesforce.

  • Deepak

    Member
    September 24, 2020 at 5:30 pm in reply to: Whats is Login Flow in salesforce?

    A login flow directs users through a login process before they access your Salesforce org or community.After Salesforce authenticates a user, the login flow directs the user through a process, such as enforcing strong authentication or collecting user information.

  • Deepak

    Member
    September 23, 2020 at 4:53 pm in reply to: What is advertising studio in SFMC?

    Advertising Studio helps you engage with your customers and prospects. Find new prospects with lookalikes, and re-engage inactive users within the customer journey across digital advertising. Use Advertising Audiences in Advertising Studio to activate your CRM data for targeting.

  • Deepak

    Member
    September 23, 2020 at 4:52 pm in reply to: How to enable email in Salesforce?

    Steps to enable Email to Salesforce for Your Users
    From Setup, enter Email to Salesforce in the Quick Find box, then select Email to Salesforce.
    Click Edit.
    Select Active.

  • Deepak

    Member
    September 23, 2020 at 10:21 am in reply to: What is the Salesforce Multicurrency?

    Salesforce Multicurrency helps each user can view all records and reports in their preferred personal currency. Based on the conversion rates, all currencies convert into their personal currency.

  • Deepak

    Member
    September 22, 2020 at 3:48 pm in reply to: System.JSONException: no content to map to Object due to end of input

    Try this :
    String jsonInput = '{"email":"[email protected]","LastName":"ABCD","FirstName":"ACFPY","Suffix":"","Title":"Engineer","Psw":"","PhoneCode":"","Phone":"100-000-000"}';
    test.startTest();
    ClassName.MethodName(jsonInput);
    test.stopTest();

  • Deepak

    Member
    September 22, 2020 at 7:54 am in reply to: How Omni-Channel facilitates multichannel support in Salesforce?

    Omni-Channel assigns work items to a queue and then pushes work items to an agent who is a member of that queue. Works natively in Salesforce. Best for smaller organizations that support a limited number of products. You assign skills to agents and required skills to work item types.

  • Deepak

    Member
    September 22, 2020 at 7:52 am in reply to: What is routing configuration in Salesforce?

    Routing configurations determine how work items are routed to agents. Use them to prioritize the relative importance and size of work items from your queues. That way, the most important work items are handled accordingly, and work is evenly distributed to your agents.

  • Deepak

    Member
    September 21, 2020 at 7:47 am in reply to: How do I enable live chat in Salesforce?

    To Enable Chat, follow the following steps :
    1. From Setup, enter Chat Settings in the Quick Find box, then select Chat Settings.
    2. Select Enable Chat .
    3. Click Save.

  • Deepak

    Member
    September 21, 2020 at 7:45 am in reply to: Does salesforce have a chat feature?

    Chat is fully integrated with the rest of Salesforce, making it easy for you to access all the information you need about your customers in a single workspace.

  • Deepak

    Member
    September 21, 2020 at 7:44 am in reply to: What is digital engagement Salesforce?

    Sales reps who use the Lightning Sales Console can use digital channels to stay in touch with prospects. Digital channels include multiple types of messaging apps and chat. Plus, Omni-Channel lets sales managers route communications to the right sales team.

  • Deepak

    Member
    September 18, 2020 at 5:37 pm in reply to: What is connector in SFMC?

    Marketing Cloud Connect combines the digital marketing capabilities of Marketing Cloud with the data management, segmentation, and campaign management tools in Salesforce.

Page 5 of 24