Forum Replies Created

Page 13 of 19
  • Anuj

    Member
    May 26, 2020 at 1:57 pm in reply to: What is WorkBench in Salesforce?

    Workbench is a web-based tool which helps administrators and developers to interact with Salesforce for Data Insert, Update, Upsert, Delete and Export. It also supports the Undelete Program, Deploy, Retrieve, Rest Explorer and Apex Execute actions too.

  • A lightning:checkboxGroup component represents a checkbox group that enables selection of single or multiple options. If the required attribute is set to true , at least one checkbox must be selected. When a user interacts with the checkbox group and doesn't make a selection, an error message is displayed.

  • Anuj

    Member
    May 22, 2020 at 2:56 pm in reply to: Can we make a Lightning Component that shows up in both the mobile

    Yes you can make a Salesforce Lightning Component that shows up in both the mobile and the desktop user interfaces with the help of Salesforce1 Mobile app, template-based communities, and custom standalone apps

  • Per app/cmp there is a 10,000 inner component limit. This number is chosen and enforced by the framework.

  • Implements="Lightning Tab" interface is required to display component in a tab.

  • Anuj

    Member
    May 21, 2020 at 3:10 pm in reply to: How do we use scratch orgs in Salesforce?

    To work with scratch orgs, you must first enable the Developer Hub (Dev Hub) in your production or business org. You then use the Salesforce DX command-line interface (CLI) to create scratch orgs. You have two ways of managing your scratch orgs: using CLI commands or the Salesforce graphical interface.

  • Add the <apex:includeLightning /> component to your Visualforce page.
    Reference a Lightning app that declares your component dependencies with $Lightning. use().
    Write a function that creates the component on the Visualforce page with $Lightning. createComponent().

  • Anuj

    Member
    May 20, 2020 at 4:23 pm in reply to: In how many ways can we share a record in Salesforce?

    There are 20 ways to share a record in salesforce.

  • As a best practice, keep the number of ownership-based sharing rules to 100 per object, and keep the number of criteria-sharing rules to 50 per object. If multiple sharing rules give a user different levels of access to a record, the user gets the most permissive access level.

  • Anuj

    Member
    May 20, 2020 at 4:16 pm in reply to: What is $Lightning.createComponent() in Salesforce?

    It is used to create a single component on click of button using javascript controller

  • Anuj

    Member
    May 19, 2020 at 2:44 pm in reply to: What is the use of Recall approval in Salesforce?

    A recall action occurs when a submitted approval request is recalled. By default, the record is unlocked. Record locking prevents users from editing a record, regardless of field-level security or sharing settings. By default, Salesforce locks records that are pending approval

  • Anuj

    Member
    May 19, 2020 at 2:41 pm in reply to: how to query validation rule in salesforce?

    you can query validation rules using Metadata API .

  • Anuj

    Member
    May 19, 2020 at 2:36 pm in reply to: What is the use of lightning: tree component in Salesforce?

    A lightning:tree component displays the visualization of a structural hierarchy, such as a sitemap for a website or a role hierarchy in an organization. Items are displayed as hyperlinks and items in the hierarchy can be nested. Items with nested items are also known as branches

  • Unlike business accounts, person accounts do not have a Contacts related list. However, you can use the Partners related list to track relationships between different person accounts.

  • Anuj

    Member
    May 18, 2020 at 2:31 pm in reply to: What are the advantages of using CRM on mobile devices?

    5 Benefits of using a mobile CRM in Sales
    1. More Sales. First and foremost, a mobile CRM will increase sales. ...
    2. Improved Data Collection. The mobile CRM makes it faster to collect valuable information as well. ...
    3. Better Productivity. ...
    4. BYOD-Friendly. ...
    5. Stronger Customer Service.

  • Anuj

    Member
    May 18, 2020 at 2:29 pm in reply to: What is Custom Validation in Salesforce?

    custom validation rule are the one which are created manually under object.

  • Anuj

    Member
    May 15, 2020 at 2:25 pm in reply to: What is a static resource in Salesforce?

    Static resources allow you to upload content that you can reference in a Visualforce page. Resources can be archives (such as . zip and . jar files), images, stylesheets, JavaScript, and other files.

  • Anuj

    Member
    May 15, 2020 at 2:24 pm in reply to: How to reassign an approval request through Apex?

    To change the responsible for an approval request you have to update the ActorId field on the ProcessInstanceWorkItem object with the Id of the user you want to be the actual approver.
    e.g
    ProcessInstanceWorkItem pi = [SELECT Id, ActorId FROM ProcessInstanceWorkItem LIMIT 1];
    pi.ActorId = '0051I0000027LCVQA2';
    update pi;

  • Anuj

    Member
    May 15, 2020 at 2:21 pm in reply to: What are the different workflow actions available in Salesforce?

    The four available actions that can be performed from a workflow rule (either immediately, or time-based) are field update, outbound message, email alert and task creation. A validation rule does fire immediately when a record save is attempted, but it is not associated directly with a workflow rule.

  • Anuj

    Member
    May 14, 2020 at 1:19 pm in reply to: What is the use of Schedulable class in Salesforce?

    if you want your code or class execute at a specific time rather than instant execution , you have to use schedulable class.

  • Yes , we can delete Apex Trigger or Apex class from production only by using metadata API.

  • Anuj

    Member
    May 14, 2020 at 1:07 pm in reply to: Can you query Validation Rules in salesforce ?

    Validation Rules are metadata, so are not query-able using Apex / SOQL. You canuse the Metadata API to query for the ValidationRule element

  • Anuj

    Member
    May 13, 2020 at 2:10 pm in reply to: How to increase email limit in Salesforce?

    Ask a System Administrator to open a Case with Salesforce Support.
    Provide your Organization ID.
    Include the business reason for the request. ...
    State the exact limit being requested.
    Include the period of time for which the limit should be raised.

  • Anuj

    Member
    May 13, 2020 at 2:06 pm in reply to: How to deploy domain in Salesforce?

    To roll out the new domain name to your org, from Setup, enter My Domain in the Quick Find box, select My Domain, and then select Deploy to Users. The domain is activated immediately, and your users are redirected to pages with the new domain.

  • Anuj

    Member
    May 13, 2020 at 2:01 pm in reply to: Why we need to create mock class in Salesforce?

    Mocking a class means that you programmatically establish how is going to react, what is going to do and return. As an example, think on a Case record that needs an Account because the code that we want to test does validate against the related Account record

Page 13 of 19