Forum Replies Created

Page 4 of 10
  • Aura is the open source technology that powers Lightning Components. The aura: namespace contains all of the basic building blocks for defining components and applications.

  • Manish

    Member
    August 11, 2020 at 3:42 pm in reply to: How many future methods can be called in Apex transaction?

    50 Future methods per transection.

  • Manish

    Member
    August 10, 2020 at 3:42 pm in reply to: How Can we migrate Code from one org to another org in Salesforce?

    You can use Ant Migration tool for this.

  • One Sharing Set.

  • Manish

    Member
    August 10, 2020 at 3:35 pm in reply to: How many public groups can be created in Salesforce?

    There is no limit on creating the public groups

  • Manish

    Member
    August 6, 2020 at 3:54 pm in reply to: What is stack depth in Salesforce?

    According to the docs: Total stack depth for any Apex invocation that recursively fires triggers due to insert, update, or delete statements is 16. Sounds like triggers may be the area to look into.

  • Aura-based Lightning components are built using both HTML and JavaScript, but LWC is built directly on the Web stack. A developer who works on LWC is not only using coding skills on a particular framework but in other frameworks like React or Angular, which are based on the Web Stack.

  • A private domain is also included in the use of SAP. While Private Domains, dedicated IPs and RMMs can be purchased individually – link and image wrapping is exclusive to SAP. In addition, only one SAP can be assigned per MID, however multiple Private Domains can be assigned per MID.

  • Manish

    Member
    August 4, 2020 at 4:09 pm in reply to: How to set Business hours in Salesforce?

    <div>To set business hours:

    1. From Setup, enter <kbd>Business Hours</kbd> in the <samp>Quick Find</samp> box, then select Business Hours.
    2. Click New Business Hours.
    3. Type a name for the business hours.<div>We recommend using a name that will remind users of a location or time zone when they view business hours on a case, entitlement process, or milestone. For example, if your business hours are for a support center in San Francisco, you could use the name <kbd>San Francisco Business Hours</kbd>.
      </div>
    4. Click <samp>Active</samp> to allow users to associate the business hours with cases, escalation rules, milestones, and entitlement processes.
    5. Optionally, click <samp>Use these business hours as the default</samp> to set the business hours as the default business hours on all new cases.<div>Default business hours on cases can be updated with business hours on escalation rules if the cases match escalation rule criteria and the rule is set to override business hours.
      </div>
    6. Choose a time zone to associate with the business hours in the <samp>Time Zone</samp> drop-down list.
    7. Set your business hours for each day of the week.<div>
      • If your support team is available during the entire day every day of the week, select the <samp>24 hours</samp> checkbox.
      • Choose the start and end times for the business hours. If the time you want isn’t available, click the field and type it in.
      • Leave the business hours start and end times blank and the <samp>24 hours</samp> checkbox deselected to indicate that the support team is not available at all that day.

      </div>

    8. Click Save.

    </div>

  • Manish

    Member
    August 4, 2020 at 4:08 pm in reply to: How to rename standard objects in Salesforce?

    To change the labels for Standard Objects and Fields in Salesforce, simply go to Setup -> Customize -> Tab Names and Labels -> Rename Tabs and Labels. Choose the Tab (or Object) you want to rename and click Edit.

  • Custom metadata are like custom setting but records in custom metadata type considered as metadata rather than data. These are typically used to define application configurations that need to be migrated from one environment to another, or packaged and installed. ... You can create lookups between Custom Metadata objects.

  • Manish

    Member
    July 31, 2020 at 3:37 pm in reply to: difference between lightning:recordEditform, force:recordData

    The main difference between the two is that one is intended for scripted access to records (force:recordData), while the other is for providing a UI to edit a record (lightning:recordEditForm).

  • Manish

    Member
    July 31, 2020 at 3:37 pm in reply to: What is the use of Aura handler in Salesforce Lightning?

    The action attribute of <aura:handler> sets the client-side controller action to handle the event. The event attribute specifies the event being handled. The format is namespace : eventName . In this example, when the event is fired, the handleComponentEvent client-side controller action is called.

  • Initiates requests to delete the external data that corresponds to the specified external object records.

  • Manish

    Member
    July 30, 2020 at 3:29 pm in reply to: Is it possible to create parallel approval process in Salesforce?

    Yes. Parallel approval process allows specifying (upto 25) multiple approvers. The approver setting could be set to unanimous, or first action. In unanimous parallel approval process, all approvers must approve a request, before it is considered as approved.

  • Manish

    Member
    July 30, 2020 at 3:28 pm in reply to: Is it possible to create sharing rules for detail object?

    No ,We can't.

  • Manish

    Member
    July 30, 2020 at 3:27 pm in reply to: How to enable visualforce editor in Salesforce?

    To enable Visualforce development mode:

    1. From your personal settings, enter <kbd>Advanced User Details</kbd> in the Quick Find box, then select Advanced User Details. No results? Enter <kbd>Personal Information</kbd> in the Quick Find box, then select Personal Information.
    2. Click Edit.
    3. Select the <samp>Development Mode</samp> checkbox.
    4. Optionally, select the <samp>Show View State in Development Mode</samp> checkbox to enable the View State tab on the development footer. This tab is useful for monitoring the performance of your Visualforce pages.
    5. Click Save.
  • Manish

    Member
    July 29, 2020 at 4:49 pm in reply to: How to reset Security Token in Salesforce?

    From personal settings, enter Reset in the Quick Find box, then select Reset My Security Token. Click Reset Security Token. The new security token is sent to the email address in your Salesforce personal settings

  • We can not create filter de from data filters in case of synchronised de.
    We can achieve this from synchronised dr, by clicking on the filter icon on top right corner of synchronised de

  • Manish

    Member
    July 29, 2020 at 4:47 pm in reply to: How do I use custom metadata?

    First, you create a custom metadata type, which defines the form of the application metadata. Then you build reusable functionality that determines the behavior based on metadata of that type. You can use Setup to create, update, and delete custom metadata types and records declaratively.

  • Manish

    Member
    July 28, 2020 at 4:17 pm in reply to: What is the portalSiteUser in Salesforce?

    Customer Portal:- A Salesforce.com Customer Portal is similar to a Self-Service portal in that it provides an online support channel for your customers—allowing them to resolve their inquiries without contacting a customer service representative.

  • Manish

    Member
    July 28, 2020 at 4:16 pm in reply to: How can we control pagination by offset in Salesforce?

    For example, you have a SOQL query that returns 1000 rows and you want it see only 100, you would add "OFFSET 900" at the end of the SOQL query: SELECT Name FROM Object__c ORDER BY Name OFFSET 900 ; This feature is particularly handy in pagination (using the Limit function to break large amount of data into pages).

  • Manish

    Member
    July 27, 2020 at 4:31 pm in reply to: How do you stop a time based workflow in Salesforce?

    ou can deactivate a workflow rule at any time. If the rule has pending actions in the workflow queue, editing the record that triggered the rule removes the pending actions from the queue. If you don't edit the record, the pending actions are processed even though the rule has been deactivated.

  • Manish

    Member
    July 27, 2020 at 4:28 pm in reply to: When to use bulk API in Salesforce?

    You can use it to query, insert, update, upsert, or delete a large number of records asynchronously by submitting batches which are processed in the background by Salesforce. SOAP API, in contrast, is optimized for real-time client applications that update small numbers of records at a time.

  • Manish

    Member
    July 27, 2020 at 4:27 pm in reply to: What is Ajax in Salesforce?

    AJAX is the art of exchanging data between server and client without reloading the complete web page. Visualforce and AJAX. Visualforce has inbuilt support for the AJAX.

Page 4 of 10