Forum Replies Created

Page 1 of 8
  • Sumit

    Member
    September 28, 2020 at 11:27 am in reply to: How to auto approve opportunity in Salesforce?

    Auto-Approval in a Multi-Step Salesforce Approval Process

    1. Name: Opportunity Approval.
    2. Entry Criteria: StageName = 'Pre-Contract'
    3. Criteria: Amount > 1000, else approve record. Approvers: Bobby or Billy, whoever responds first.
  • Sumit

    Member
    September 28, 2020 at 11:25 am in reply to: How to manage cases in Salesforce?

    After a case is opened, you update the customer and case details, then you ultimately close and resolve the customer issue.

  • Sumit

    Member
    September 28, 2020 at 11:25 am in reply to: How do I queue a query in Salesforce?

    Group groupDetail = [SELECT Id, Name, DeveloperName, Email, Type FROM Group where Type='Queue' And Name ='Spam' limit 1]; SpamOwnerId = groupDetail.Id; Here Type is Required and Type of the Group is One of the following values: Regular —Standard Public Grou

  • Sumit

    Member
    September 28, 2020 at 11:23 am in reply to: How do I remove the PriceBook in Salesforce?

    To remove price books from related lists, you can archive, deactivate, or delete the price books. Each removal option has a different result. Before you remove a price book from your related lists, determine which option best fits your business needs.

  • Sumit

    Member
    September 28, 2020 at 11:23 am in reply to: How to remove Products from the PriceBook in Salesforce?
    1. Deactivate it by editing it and then deselecting the Active field. ...
    2. Remove the related product or price book from all opportunities and quotes. ...
    3. Archive the product or price book and each related price book entry.
  • Sumit

    Member
    September 28, 2020 at 11:22 am in reply to: How can we access leads directly from facebook in salesforce ?

    Sync all your Facebook leads to Salesforce automatically. No more manual import/export of leads. Map all the lead data instantly to the respective fields in Salesforce. Connect Facebook Lead Ads and Salesforce to help your sales team to follow-up with the leads immediately.

  • Sumit

    Member
    September 28, 2020 at 11:20 am in reply to: What is task in final rejection in approval process in Salesforce?

    Final Rejection Actions which consists of Task and If a task is selected then the user can insert a task for a record so for our example on Opportunity once the approval process has been approved/rejected

  • Sumit

    Member
    September 28, 2020 at 11:20 am in reply to: What is webservices in Salesforce?

    Apex class methods can be exposed as custom SOAP Web service calls. This allows an external application to invoke an Apex Web service to perform an action in Salesforce. Use the webservice keyword to define these methods.

  • Sumit

    Member
    September 28, 2020 at 11:18 am in reply to: How to remove validation error in Salesforce?

    Try to insert that record according to the validation rule for making sure that validation rule is satisfied, check the validation rule and enter values of fields of record accordingly.

  • Sumit

    Member
    September 20, 2020 at 8:43 am in reply to: What is SQL activity in SFMC?

    A query is an activity that retrieves data extension or data view information matching your criteria, then includes that information in a data extension.

  • Sumit

    Member
    September 20, 2020 at 8:42 am 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.

  • Sumit

    Member
    September 20, 2020 at 8:39 am in reply to: What are various standard exceptions that salesforce throws?

    There are number of Exception,

    • AsyncException

    Any problem with an asynchronous operation, such as failing to enqueue an asynchronous call.

    • CalloutException

    Any problem with a Web service operation, such as failing to make a callout to an external system.

    • DmlException

    Any problem with a DML statement, such as an insert statement missing a required field on a record.

    • JSONException

    Any problem with JSON serialization and deserialization operations.

  • Sumit

    Member
    August 30, 2020 at 4:16 pm in reply to: What is the use of escapeUnicode() method in apex ?

    Returns a String whose Unicode characters are escaped to a Unicode escape sequence.

  • Sumit

    Member
    August 30, 2020 at 4:15 pm in reply to: What Is A Connector in Dell Boomi in Salesforce?

    Use the Salesforce Connector to connect Salesforce.com with any combination of Cloud, SaaS, or On-Premise applications with no coding required.

  • Sumit

    Member
    August 30, 2020 at 4:12 pm in reply to: How to gets the leftmost len characters of a String in Apex?

    You can use left() function of String Class .

  • Sumit

    Member
    August 30, 2020 at 4:10 pm in reply to: What does reduce() method do in JS Controller in Salesforce?

    The reduce() method applies a function against an accumulator and each element in the array (from left to right) to reduce it to a single value.

  • Sumit

    Member
    August 30, 2020 at 4:09 pm in reply to: How to check String contains only white space characters in Apex ?

    isAlphaSpace() : This string method will return true, if the string contain alphabet and white spaces.

  • Sumit

    Member
    August 30, 2020 at 4:08 pm in reply to: What is the SQL Query activity in salesforce marketing cloud?

    Retrieve data extension or data view information using Automation Studio's SQL Query activity, then store it in a data extension. A query is an activity that retrieves data extension or data view information matching your criteria, then includes that information in a data extension.

  • Sumit

    Member
    August 30, 2020 at 4:07 pm in reply to: What is the use case for Heroku in Salesforce?

    Heroku can also be used as a central source of truth to assist you in the management of your data and disparate systems. Heroku syncs bi-directionally in near real-time without you having to worry about running into any of the typical Salesforce API or event limitations.

  • Sumit

    Member
    August 30, 2020 at 4:06 pm in reply to: What is the use of swapCase() method of String Class in Apex ?

    The Swapcase function is used to convert every single characters of string from lower case to upper case and from upper case to lower case.

  • Sumit

    Member
    August 30, 2020 at 4:03 pm in reply to: What is the use of LockResult Class in Salesforce ?

    The <samp>System.Approval.lock()</samp> methods return Approval.LockResult objects. Each element in a LockResult array corresponds to an element in the ID or sObject array passed as a parameter to a <samp>lock</samp> method. The first element in the LockResult array corresponds to the first element in the ID or sObject array, the second element corresponds to the second element, and so on. If only one ID or sObject is passed in, the LockResult array contains a single element.

  • Admins can create an unlimited number of Enterprise Teams with up to 500 users per team. Heroku Enterprise Accounts is a management layer across all of a company's Enterprise Teams that provides executives and admins a higher level of visibility and control via SSO policies, audit trails, daily usage reports, and more.

  • Sumit

    Member
    August 30, 2020 at 4:02 pm in reply to: What is filter activity in the salesforce marketing cloud?

    Apply the logic of a data filter you select to create a group or data extension in Automation Studio. Filtering subscribers or contacts makes targeting specific subscribers or contacts based on their attributes and other conditions easier.

  • Sumit

    Member
    August 9, 2020 at 9:47 am in reply to: What is the scorecard in Salesforce Einstein?

    <div data-md="61"><div aria-level="3" role="heading" data-attrid="wa:/description" data-hveid="CAwQBQ">Sales Scorecard available in new Salesforce Lightning Console.Today, Salesforce unveiled Einstein High Velocity Sales Cloud: an AI-powered interface that allows reps to access their sales scorecard, activity capture, lead scoring and other tools in a single platform.
    <div><div data-hveid="CAwQBw" data-ved="2ahUKEwiS2eefn4nrAhXlH7cAHcMAD-4QFSgBMAN6BAgMEAc"></div></div></div></div>

  • Editing a Record<wbr><wbr> Specify the fields you want to include in the record edit layout using lightning-input-field . For more information, see the lightning-input-field documentation. Include a lightning-button component with type="submit" to automatically save any changes in the input fields when the button is clicked.

Page 1 of 8