Ratnesh
IndividualForum Replies Created
-
Ratnesh
MemberFebruary 24, 2020 at 5:04 am in reply to: What are the benefits of creating Test Class in SalesForce?We compose Test Classes in Apex Salesforce for Unit Testing. We find good pace bugs in our code and fix it to give better yield. Testing gives the Code Coverage, as a matter of first importance we should realize What Code Coverage is? Code inclusion which shows to which rate the code works.
-
Salesforce Email Studio is a cloud-based, adaptable, and amazing email marketing platform that is a segment of the organization's well known Marketing Cloud. It is the main arrangement that helps organizations in making more intelligent email battles by utilizing information from all offices.
-
Toast is essentially the message box or you can say warning box which you can use to show messages/notice over the view.
-
This Edition is an extraordinary fit for private ventures that need a fundamental CRM administration to oversee Leads, Accounts, Contacts, Opportunities, Tasks, Events, Chatter, Reports, Email Templates, and other standard highlights.
- This reply was modified 4 years, 10 months ago by Ratnesh.
-
Mobile messaging is the preferred method of contact for today’s ultra-connected, mobile customers. And now it’s the easy, cost-effective way for you to deliver a faster, smarter, more personalized conversation too.
-
Ratnesh
MemberFebruary 21, 2020 at 1:57 pm in reply to: What is the importance of live chat in Salesforce?- Reduce expenses.
- Increase sales.
- Improve customer service and loyalty.
- Discover customer pain points.
- Faster problem resolution.
- Customer convenience.
- Competitive advantages.
- Expand market reach.
-
A shared object includes records supporting all three types of sharing:
- User managed
- Force.com managed
- Apex managed
- This reply was modified 4 years, 10 months ago by Forcetalks.
-
Ratnesh
MemberFebruary 20, 2020 at 10:03 am in reply to: What is Utility Method in Salesforce Apex?Utility classes are helper classes that consist of reusable methods.
From triggers, we can call methods in such public classes.
- This reply was modified 4 years, 10 months ago by Forcetalks.
-
Ratnesh
MemberFebruary 20, 2020 at 9:57 am in reply to: What is the use of a Junction Object in Salesforce?Junction Object is a custom object with two master-detail relationships to two different record types. It is used to represent a many-to-many relationship in which several junction objects can link one instance of a record to many children, and each child can equally be linked to many parents.
- This reply was modified 4 years, 10 months ago by Forcetalks.
-
Ratnesh
MemberFebruary 19, 2020 at 1:35 pm in reply to: What is the use of startTest() and stopTest() method in Salesforce?The Test.startTest method marks the point in your test code when your test actually begins.
The Test.stopTest method marks the point in your test code when your test ends.
-
Ratnesh
MemberFebruary 19, 2020 at 1:32 pm in reply to: What is the use of @testsetup method in Salesforce?This annotation is used for creating common test records that are available for all test methods in the class.
- This reply was modified 4 years, 10 months ago by Forcetalks.
-
Ratnesh
MemberFebruary 19, 2020 at 1:29 pm in reply to: How many types of asserts() methods are used in Salesforce?There are 3 types of assert methods that are generally used in System Class in Salesforce.
- assert(condition, msg)
- assertNotEquals(expected, actual, msg)
- assertEquals(expected, actual, msg)
- This reply was modified 4 years, 10 months ago by Forcetalks.
-
When an article or feed is assigned to a multiple of topic hierarchies, the Breadcrumb component shows topics that are the most discussed in a community.
-
Ratnesh
MemberFebruary 18, 2020 at 2:37 pm in reply to: What will happen if the Account is deleted in Salesforce?If the Account is deleted then Contact, Opportunity will also be deleted
-
Ratnesh
MemberFebruary 18, 2020 at 2:34 pm in reply to: Why we prefer one trigger per object in Salesforce?We can write more than one trigger But it is not recommended. The best practice is One trigger On One object.
-
Platform events are part of Salesforce's enterprise messaging platform. The platform provides an event-driven messaging architecture to enable apps to communicate inside and outside of Salesforce.
-
Ratnesh
MemberFebruary 17, 2020 at 2:18 pm in reply to: What is lightning data service in Salesforce?Platform events are part of Salesforce's enterprise messaging platform. The platform provides an event-driven messaging architecture to enable apps to communicate inside and outside of Salesforce.
-
These are the aggregate functions :- sum(), count(), min(), max(), avg()
-
Ratnesh
MemberFebruary 14, 2020 at 2:19 pm in reply to: How to look at the user license information in Salesforce Org?Steps to find out the user license:
->Salesforce Org
→ Setup
→ Administer
→ Company Profile
→ Company Information.
-
Ratnesh
MemberFebruary 14, 2020 at 2:17 pm in reply to: Which interface need to implement so that you can use the lightning component as Tab like custom object and VF page in Salesforce?Hi Marziya,
You can use it:-
force:appHostable
-
Ratnesh
MemberFebruary 14, 2020 at 2:11 pm in reply to: What are the differences between 15 and 18 digit record ids in Salesforce ?Hii Ayush,
- 15 Digit Id is case-sensitive whereas 18 Digit Id is case-insensitive.
- API always makes use of 18 digit Id. and URL in Salesforce makes use of 15 digit Id.
-
Ratnesh
MemberFebruary 13, 2020 at 2:42 pm in reply to: I want to delete a user in Salesforce. Can i do that.?No, you can simply freeze the user or deactivate it.
Steps to Deactivate a User-
From Setup, enter Users in the Quick Find box, then select Users.
Click Edit next to a user’s name and then deselect the Active checkbox and then click Save. -
Ratnesh
MemberFebruary 13, 2020 at 2:39 pm in reply to: . Do we need a namespace to develop Lightning Components in Salesforce?If you do, that namespace is used for all of your Lightning components. A namespace prefix is required if you plan to offer managed packages on the AppExchange. If you haven't set a namespace prefix for your organization, use the default namespace c when referencing components that you've created
-
A tree grid is an additional semantics that is laid on top of a grid-based component via ARIA attributes, to enable hierarchically structured tabular data. The tree grid comes with a very specific keyboard interaction model that must be implemented for the component to be screen-reader accessible.
-
Ratnesh
MemberFebruary 12, 2020 at 2:28 pm in reply to: What is apex Integration Services in Salesforce?Integration and Apex Utilities. Apex allows you to integrate with external SOAP and REST Web services using callouts. You can use utilities for JSON, XML, data security, and encoding. A general-purpose utility for regular expressions with text strings is also provided.