Forum Replies Created

Page 14 of 21
  • Marziya

    Member
    May 21, 2020 at 1:51 pm in reply to: How to link Identity provider to Salesforce?

    From Setup, enter Identity Provider in the Quick Find box, select Identity Provider, and click Enable Identity Provider.

  • The framework uses events to communicate data between components. Events are usually triggered by a user action. A client-side controller handles events within a component. It's a JavaScript resource that defines the functions for all of the component's actions.

  • Marziya

    Member
    May 20, 2020 at 1:52 pm in reply to: What are the benefits of using Salesforce CRM?

    Benefits of CRM:--
    Multi-rental.
    Metadata platform.
    Rapid application development.
    Open ecosystem.

  • Sure,You can create sharing rule for detail object.

  • AppExchange is a business app store with over 3000 apps (some are free and some paid), which includes Salesforce integrations with MailChimp, Xero, Quickbooks, DocuSign, AdobeSign, etc. There are more and more integrations and solutions added every day and this is why Salesforce is the undisputed leader in the CRM space.

  • Marziya

    Member
    May 19, 2020 at 1:34 pm in reply to: How many standard profiles are available in Salesforce?

    There are six (6) Salesforce standard user profiles. Additional standard profiles will appear when certain conditions are met within an organization, such as enabling Chatter, Partner Portal, Customer Portal, or Sites.

  • A role hierarchy works together with sharing settings to determine the levels of access users have to your Salesforce data. Users can access the data of all the users directly below them in the hierarchy.

  • Marziya

    Member
    May 18, 2020 at 2:49 pm in reply to: What is IaaS?

    IaaS is a cloud service that provides basic computing infrastructure: servers, storage, and networking resources. In other words, IaaS is a virtual data center. IaaS services can be used for a variety of purposes, from hosting websites to analyzing big data.

  • Marziya

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

    Following benefits:--
    *)Better Productivity.
    *) BYOD-Friendly.
    *) Stronger Customer Service.

  • Marziya

    Member
    May 18, 2020 at 2:46 pm in reply to: What does the Recall do in the approval process?

    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.

  • Marziya

    Member
    May 15, 2020 at 1:34 pm in reply to: What is mypkg in ant migration in Salesforce?

    A mypkg folder that contains the custom objects used.

  • Marziya

    Member
    May 15, 2020 at 1:32 pm in reply to: When to write trigger on approval process in Salesforce?

    The approval process cannot directly trigger the apex trigger. You will need to create a field (e.g. checkbox) that is checked by the approval step in the approval process. Then start a trigger based on that field.

  • Marziya

    Member
    May 15, 2020 at 1:31 pm in reply to: What is ‘Salesforce Lightning’?

    Lightning Experience, a graphical user interface (GUI) that is optimized for speed.
    Lightning App Builder, which provides drag and drop capacities to facilitate app creation and customization.

  • Marziya

    Member
    May 14, 2020 at 1:01 pm in reply to: Can we delete Fieldset through Metadata API in Salesforce ?

    If the page is added to a managed package, administrators can add, remove, or reorder ... A description provided by the developer that describes the field set.

  • Marziya

    Member
    May 14, 2020 at 1:00 pm in reply to: Is activity a standard object in Salesforce?

    yes

  • Marziya

    Member
    May 14, 2020 at 12:54 pm in reply to: How to delete Customfield through Metadata API in Salesforce ?

    Here is a facility with the deploy operation to do a forced delete which bypasses the field / custom object recycle bin, however i'm not aware of any on the CRUD metadata options (though worth double checking headers and such like). Other thought would be can you try a second delete operation on the fields deleted name which i think becomes something like Fred_del__c.

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

    Member
    May 13, 2020 at 1:26 pm in reply to: What a is the limit of Trailhead playground in Salesforce?

    Trailhead Playgrounds have limits (you can create only two users in a Trailhead Playground, for instance), they give you the same customization options as a production org. And a Trailhead Playground never expires, as long as you keep using it.

  • Marziya

    Member
    May 13, 2020 at 1:13 pm in reply to: What is WhoId and WhatId in activities?

    WhoID in Salesforce refers to people things. So that would be typically a Lead ID or a Contact ID. ... WhatID in Salesforce refers to object type things. That would typically be an Account ID or an Opportunity ID. The WhatId represents nonhuman objects such as accounts, opportunities, campaigns, cases, or custom objects.

  • Your organization can have up to 5 Enterprise Edition, 10 for Unlimited and Performance Edition, and 3 for Developer Edition. You can't save dynamic dashboards to personal folders. You can't schedule refreshes for dynamic dashboards. They must be refreshed manually

  • Marziya

    Member
    May 12, 2020 at 12:55 pm in reply to: What is Salesforce Standard Fields?

    Fields you create on standard or custom objects are called custom fields. You can create a custom field on the Contact object to store your contacts' birthdays. Identity, system, and name fields are standard on every object in Salesforce. Each standard object also comes with a set of prebuilt, standard fields.

  • Marziya

    Member
    May 12, 2020 at 12:53 pm in reply to: What is recursive work flow rules in Salesforce?

    Any workflow rules whose criteria are met as a result of the field update will be triggered. Only workflow rules that didn't fire before will be Retriggered.

  • Marziya

    Member
    May 12, 2020 at 12:52 pm in reply to: How to remove default filters of reports in Salesforce?

    1.Find the subfilter you want to delete, and click Remove.
    2.Click OK.

  • Marziya

    Member
    May 11, 2020 at 1:25 pm in reply to: What is mixed DML operation in Salesforce?

    Mixed DML operations within a single transaction aren't allowed. You can't perform DML on a setup sObject and another sObject in the same transaction. However, you can perform one type of DML as part of an asynchronous job and the others in other asynchronous jobs or in the original transaction.

  • Marziya

    Member
    May 11, 2020 at 1:06 pm in reply to: What is Remote Action in Salesforce ?

    Remote action function in salesforce allows user to access any method from any class through javasrcipt methods, and get the result as a javascript object for further manipulation. The RemoteAction annotation provides support for Apex methods used in Visualforce to be called via JavaScript.

  • Marziya

    Member
    May 11, 2020 at 12:59 pm in reply to: What is the use of @testSetup method in test class in Salesforce?

    Method marked with @TestSetUp annotation executes before any testMethod. Data created in this method doesn't need to be created again and again, and it is by default available for all test methods. There can be only one setup method per test class.

Page 14 of 21