Udit
IndividualForum Replies Created
-
Udit
MemberJuly 27, 2020 at 2:59 pm in reply to: What is the maximum of actions per time trigger you can have in a workflow rule?By default, it is 10 for every organization but we can get it to 25 by contacting Salesforce support.
-
Udit
MemberJuly 27, 2020 at 2:58 pm in reply to: For which criteria in workflow time dependent workflow action Cannot be created?Time-dependent workflow action cannot be created for rule criteria: Created and Every time it's edited.
-
Udit
MemberJuly 27, 2020 at 2:55 pm in reply to: How do you stop a time based workflow in Salesforce?Hello Marziya,
One can delete the time based scheduled actions manually by going to Monitor > Time based actions or also by editing the record in order to not let the records meet the criteria. -
Connected app is a framework which provides us the functionality for external applications to integrate with Salesforce using APIs and standard protocols.
-
No we can't.
We can do this by Lightning Web Components Playground or other IDEs like Illuminati cloud, VS code, etc. -
Udit
MemberJuly 24, 2020 at 11:21 am in reply to: What do you have to assign to users before they can access Analytics.One must be assigned 'Enable Einstein Analytics'. It is available under Setup > Analytics > getting started
-
Udit
MemberApril 30, 2020 at 3:18 pm in reply to: What is the relationship between report and dashboard in Salesforce?The relationship between reports and dashboards is 1:1. For every dashboard component, there must be one report associated with it.
-
Udit
MemberApril 30, 2020 at 3:14 pm in reply to: Why ContnetVersion is not allowed to be deleted in Salesforce?Because DML delete is not permitted on the object.
-
Udit
MemberApril 30, 2020 at 3:03 pm in reply to: What is sender profiles in Salesforce marketing Cloud?Sender profiles in Marketing Cloud tell us From information of an email that from whom an email is coming from.
-
Data mapping simply means matching of data. It is needed in order to save correct results from source to a target system.
We must have to implement the correct order of mapping in between data so as to avoid any errors or bad data insertion into the system. -
Udit
MemberApril 29, 2020 at 3:07 pm in reply to: What is Maximum length of SOQL statements in Salesforce?It is 20,000 characters
-
Udit
MemberApril 28, 2020 at 3:17 pm in reply to: What is the feature of Lightning Bolt in Salesforce?Lightning Bolt Solutions are the packages of different solutions bundled in one package. We can combine apps, community templates, business process flows, etc in the lightning bolt solution.
-
We can use lightning: navigation or force:navigaeToSobject for this.
-
Sumit, users are differentiated in Salesforce by the License and by the profile which is assigned to them.
-
Udit
MemberApril 28, 2020 at 3:05 pm in reply to: API calls from lightning component in Salesforce?As we know Lightning is client-side so we can not make API calls from Lightning. In order to do so we have to add a Content Security Policy(CSP) trusted site to load assets and make API calls to that domain.
-
Udit
MemberApril 27, 2020 at 2:53 pm in reply to: What are the ways to call an apex class in Salesforce?Hey Pooja,
We can call an apex class in the following ways:
1. Developer console
2. VisualForce
3. Trigger
4. Calling from another class
5. JavaScript buttons/ links -
Udit
MemberApril 27, 2020 at 2:30 pm in reply to: What is code snippet in Salesforce marketing cloud?Code snippet is a block of code that can be saved and further used in creating templates in Salesforce Marketing Cloud. HTML, AMPscript code can be saved as code snippet.
-
UTIL class stands for utility class. This is a helper class that has reusable methods in it. In trigger, we can call methods that are in Utility classes.
Alike trigger, util classes can be super helpful in Apex as they contain reusable methods that can be used in any apex class as well. -
Hey Sumit,
WhatID represents object things like Account ID, opportunity ID, etc.
WhoID represents people things like LeadID and ContactID. -
Udit
MemberApril 24, 2020 at 2:35 pm in reply to: Which Salesforce marketing automation tool is the right choice for your businessThis totally depends upon the business requirements. But there are many tools present for marketing in Marketing Cloud like:
1. Journey Builder
2. Automation Studio
3. Analytics Builder
4. Einstein
5. Web and Mobile Studio and many more... -
Udit
MemberApril 24, 2020 at 2:32 pm in reply to: What is importance of marketing automation in Salesforce?With the help of Marketing automation, we can make a better relationship with our clients. We can also retain our clients if our Marketing strategy is effective.
By automation Marketing, one organization does not have to reach each and every customer manually to provide services. It can be done by using automation tools present for Marketing in Salesforce. -
Hello Kirandeep,
Yes, Apex do support Angular JS -
Udit
MemberApril 23, 2020 at 3:21 pm in reply to: What is meant By @testVisible in test class in Salesforce?Hey Anuj,
Use the TestVisible annotation to allow test methods to access private or protected members of another class outside the test class. These members include methods, member variables, and inner classes. This annotation enables a more permissive access level for running tests only. This annotation doesn’t change the visibility of members if accessed by non-test classes.
With this annotation, you don’t have to change the access modifiers of your methods and member variables to public if you want to access them in a test method. For example, if a private member variable isn’t supposed to be exposed to external classes but it should be accessible by a test method, you can add the TestVisible annotation to the variable definition. -
In the Setup, search Apps, it is present in Build section under create option.
Click it and scroll down the page you will find a section of connected apps and click new to create a connected app.
Fill up the details like name, email, callback URL and OAuth settings, etc. -
Static resources are the resources available in Salesforce. We can upload our contents in resources and also we can reference our uploaded data into Visualforce pages.