Anjali
IndividualForum Replies Created
-
Anjali
MemberMay 26, 2020 at 11:22 am in reply to: How do I transfer ownership of a Salesforce account?1. On the record detail page, Click Change next to the Owner field.
2. Enter or select a new owner.
3. Select the Send Notification Email checkbox to notify the new owner.
4. Depending on your user permissions and the type of object you're transferring, you can select which related items to transfer.
5. Click Save to finish. -
Anjali
MemberMay 26, 2020 at 11:18 am in reply to: What is difference between Bubble and Capture Phase in salesforce?Capture phase—The framework executes the capture phase from the application root to the source component until all components are traversed.
Bubble phase—The framework executes the bubble phase from the source component to the application root until all components are traversed or stopPropagation(). -
Anjali
MemberMay 22, 2020 at 12:17 pm in reply to: What are Governor Limits? Can you name 3 examples?Governor limits are Salesforce's way of forcing you to write efficient, scalable code.
A few examples of Governor Limits are:
1. Total number of records retrieved by a SOQL query – 50,000.
2. Total number of SOQL queries issued – 100 (Synchronous) 200 (Asynchronous)
3. Total number of DML statements issued – 150. -
Anjali
MemberMay 22, 2020 at 12:05 pm in reply to: What is Identity Provider Certificate in Salesforce?An identity provider is a trusted provider that lets you use single sign-on (SSO) to access other websites. You can enable Salesforce as an identity provider and define one or more service providers. Your users can then access other apps directly from Salesforce using SSO.
-
Anjali
MemberMay 22, 2020 at 11:53 am in reply to: what is batch processing integration in salesforce ?Mulesoft has the capability to process messages in batches. It splits the large messages into individual records that are processed asynchronously within batch jobs.
-
From the App Launcher, select Active Scratch Org to see a list of all active scratch orgs. To view more details about a scratch org, click the link in the Number column.
-
Anjali
MemberMay 21, 2020 at 9:36 am in reply to: How can i provide record level access to user’s in an organisation in SalesforceTo specify record-level security, set your organization-wide sharing settings, define a hierarchy, and create sharing rules.
-
Roles determine user access to cases, contacts, and opportunities, regardless of who owns those records. The access level is specified on the Role Edit page.
-
Anjali
MemberMay 20, 2020 at 11:06 am in reply to: What is the use of events in lightning in salesfore?Application Events are used to establish communication between two or more independent components. Component Events are used to establish communication between the components which are in containment hierarchy.
-
Anjali
MemberMay 20, 2020 at 11:06 am in reply to: How do I create a criteria based sharing rule in Salesforce?While creating the sharing rule, select 'Based on criteria' in the rule type section. Then add your criteria.
-
Anjali
MemberMay 20, 2020 at 11:02 am in reply to: How to retrieve data from multiple Objects in one query in Salesforce ?Please refer the below link, it may help-
https://salesforce.stackexchange.com/questions/227790/data-retrieval-from-multiple-objects-from-a-single-query -
Anjali
MemberMay 19, 2020 at 8:20 am in reply to: How many relationships included in SFDC & What are they?Each custom object can have up to two master-detail relationships and up to 25 total relationships. relationship can be lookup and master-detail.
-
Please refer the below link-
https://help.salesforce.com/articleView?id=relationships_manytomany.htm&type=5 -
Anjali
MemberMay 19, 2020 at 8:11 am in reply to: What does Content-Type header means in Salesforce?Content Type header is used to specify the format for your request and response.
-
Infrastructure as a service (IaaS) is an instant computing infrastructure, provisioned and managed over the internet.
-
Software as a service (SaaS) is a software distribution model in which a third-party provider hosts applications and makes them available to customers over the Internet.
-
Anjali
MemberMay 18, 2020 at 9:32 am in reply to: What is My Domain in User Authentication in Salesforce?Your users access your org through the instance URL that Salesforce assigns you. With My Domain, you give your users a nifty, personalized way to access Salesforce.
-
By using this tool, metadata of one org can be transferred to a local directory.
-
Anjali
MemberMay 15, 2020 at 12:30 pm in reply to: difference between processInstance, processInstanceStep, and processInstanceWorkProcessInstanceStep represents a step instance in an approval process (ProcessInstance) on which users has already acted and ProcessInstanceWorkItem represents a step instance in an approval process(ProcessInstance) on which is pending and users has to perform some action next on it.
-
Anjali
MemberMay 15, 2020 at 12:29 pm in reply to: How we can call the approval process through Apex in Salesforce?We need to define an approval process on the object and then write the trigger that will submit that object to the approval process.
-
Anjali
MemberMay 14, 2020 at 10:16 am in reply to: When should component events and application events be used in Salesforce?Component event usage is more localized as these can be used by same component or component in containment hierarchy. If you use application events then it may fire system events. Use Application events only if components are present in 2 different app or are not in containment hierarchy.
-
Anjali
MemberMay 14, 2020 at 10:15 am in reply to: Does It make any difference to declaring a test method as public or privateThere is no difference in declaring a test method as public or private. the testing framework can access the test method.
-
Date field, Date/time field, currency field, text field and many more.
-
Anjali
MemberMay 13, 2020 at 11:58 am in reply to: How to cover constructors in test class in Salesforce?Please refer the following link-
https://developer.salesforce.com/forums/?id=906F00000008zbRIAQ -
To use a stub version of an Apex class:
1. Define the behavior of the stub class by implementing the System. StubProvider interface.
2. Instantiate a stub object by using the System. Test. createStub() method.
3. Invoke the relevant method of the stub object from within a test class.