Marziya Sarwar
IndividualForum Replies Created
-
From Setup, enter Identity Provider in the Quick Find box, select Identity Provider, and click Enable Identity Provider.
-
Marziya
MemberMay 20, 2020 at 1:53 pm in reply to: How does the communication between lightning events occur in Salesforce?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.
-
Benefits of CRM:--
Multi-rental.
Metadata platform.
Rapid application development.
Open ecosystem. -
Marziya
MemberMay 20, 2020 at 1:35 pm in reply to: Is it possible to create sharing rules for detail object in Salesforce?Sure,You can create sharing rule for detail object.
-
Marziya
MemberMay 19, 2020 at 1:35 pm in reply to: What are the Benefits of using Salesforce AppExchange Apps in Salesforce?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
MemberMay 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.
-
Marziya
MemberMay 19, 2020 at 1:27 pm in reply to: What is the benefit of having Role Hierarchy in your Salesforce org?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.
-
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
MemberMay 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
MemberMay 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.
-
A mypkg folder that contains the custom objects used.
-
Marziya
MemberMay 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.
-
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
MemberMay 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.
-
yes
-
Marziya
MemberMay 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, 6 months ago by Marziya.
-
Marziya
MemberMay 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.
-
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.
-
Marziya
MemberMay 13, 2020 at 1:12 pm in reply to: What are dynamic dashboards? Can dynamic dashboards be scheduled?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
-
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
MemberMay 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
MemberMay 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. -
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.
-
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
MemberMay 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.