Aditya
IndividualForum Replies Created
-
Salesforce DMP is a data management platform that captures, unifies and activates your customer data to help you build customer relationships. DMP is part of the robust Salesforce Marketing Cloud suite
-
Aditya
MemberMarch 31, 2020 at 3:05 pm in reply to: What is Account Scoring Mechanism in Marketing Cloud?Lead scoring basically quantifies lead-company fit, and lead interest fit, to have a measure of the quality of a lead. We distinguish between lead (profile) grading and lead (activity) scoring. Lead grading is seeking to answer the question: is the lead a good fit with your perfect customer profile
-
Aditya
MemberMarch 31, 2020 at 1:35 pm in reply to: What is Audience Builder in Salesforce Marketing Cloud?Audience Builder allows you to segment your subscribers in sophisticated ways. This segmentation helps you better target your sends by providing you with a quicker and deeper understanding of your customer attributes and behavior. You can use Audience Builder with any Marketing Cloud account type.
-
Aditya
MemberMarch 30, 2020 at 1:20 pm in reply to: What is KeyField in Lightning Data Table in Salesforce?The It attribute is needed to store unique row id. It associates each row with a unique identifier. You should always define keyField=”Id” which means row id will be the same as record id and it will make it easier to customize, view and edit records.
-
Hi Ratnesh,
From Setup, at the top of the page, select Object Manager and select the object you want to add the Files related list to (such as Opportunity). Click Page Layouts. Click the page layout you want to customize. In the list of available items in the left pane, click Related Lists. -
Aditya
MemberMarch 30, 2020 at 1:14 pm in reply to: What is meant by efficient text search in Salesforce?After completing this unit, you'll understand: ... How to use the Query Plan tool to evaluate search queries. Limits. Efficient queries not only perform better, but they help ensure that you don't run into problems ... Text fields with comparison operators—Using comparison operators, such as >, <, >=, or <=, with text-based fields.
-
Aditya
MemberMarch 24, 2020 at 2:07 pm in reply to: How do you call an Apex class in flow in Salesforce?To use this element to call an Apex class from a flow, ask your developer to annotate one of the class's methods with @InvocableMethod. For details, see “ InvocableMethod Annotation” in the Lightning Platform Apex Code Developer's Guide.
-
Hi Anjali,
On an upgradeable component in a managed package, some attributes can be edited by the developer, some can be edited by the subscriber, and some are locked, meaning they cannot be edited by either the developer or subscriber. Second-Packages come in two forms--managed and unmanaged -
Aditya
MemberMarch 24, 2020 at 2:03 pm in reply to: What is meant by unmanaged package in Salesforce?Hi Anjali,
A package is a container for something as small as an individual component or as large as a set of related apps. ... Unmanaged packages are typically used to distribute open-source projects or application templates to provide developers with the basic building blocks for an application -
Hi Anjali,
Flow builder is used to fix the path a task by using screen flow -
Hi Manish,
Log into Marketing cloud => Navigate to email studio => Click on Email App=> click Admin tab=> click Salesforce Integration=> click Connect Account. Contact Marketing Cloud Support to enable and upgrade the Connected App button under the Salesforce Integration for secure data transfer between systems. -
Aditya
MemberMarch 20, 2020 at 3:26 pm in reply to: What is PriceBookEntry and How it is related to PriceBook in Salesforce?Hi,
It is the entry of the Products in the pricebook and allows that to link with standard pricebook. -
A price book is a list of products and their prices. Salesforce creates the standard price book when you start creating product records. It includes all your products and their standard prices regardless of any custom price books that include those products.
-
Hi,
Marketing cloud helpful to measure the customer action that you want to promote -
To view and edit the layouts for global actions in Setup, enter Actions in the Quick Find box, then select Global Actions and then click Layout next to the action's name. To view and edit the layouts for object-specific actions, find the object in Setup, then go to Buttons, Links, and Actions.
-
Hi,
Use a docked prompt for content to remain on screen, like as step-by-step instructions or a short video that users can follow while learning how to complete a task in the app -
rom Setup, enter Actions in the Quick Find box, then select Global Actions.
Click New Action.
Select the type of action to create.
Customize the action.
For a Create a Record action, select the type of object to create. If the object has more than one record type, select the one you want to use for records created through this action.
For a Custom Visualforce or Custom Canvas action, select a Visualforce page or canvas app, and then specify the height of the action window. The width is fixed.
For a Lightning Component action, select the component to be called by the action.
Enter a label for the action. Users see this label as the name of the action.
Tip
TIP You can choose an option from the Standard Label Type list to have Salesforce generate the label. For the labels in this list that include “Record” and “Record Type,” Salesforce fills in the type of object or the record type the action creates. For example, if you choose the Create New “Record” standard label on a create contact action, the generated label is Create New Contact.
If necessary, change the name of the action. If you selected a standard label type in the previous step, you must enter the name.
This name is used in the API and managed packages. It must begin with a letter and use only alphanumeric characters and underscores, and it can’t end with an underscore or have two consecutive underscores. Unless you’re familiar with working with the API, we suggest not editing this field.
Type a description for the action.
The description appears on the detail page for the action and in the list on the Buttons, Links, and Actions page. The description isn’t visible to your users. If you’re creating several actions on the same object, we recommend using a detailed description, such as “Create Contact on Account using New Client record type.”
For a Create a Record or Log a Call action, select whether you want a feed item to be created when the action is completed.
For a Create a Record, Update a Record or Log a Call action, you can add a custom success message that displays after the action executes successfully.
Optionally, click Change Icon to select a different icon for the action.
Custom images used for action icons must be less than 1 MB in size.
Click Save. -
Global publisher layouts determine the global actions that appear in the various Salesforce interfaces.Lightning Experience also uses these layouts to populate the Global Actions menu. And in the Salesforce app, these layouts drive the actions that appear in the action bar on the Feed and People pages
-
Aditya
MemberMarch 18, 2020 at 4:38 pm in reply to: What are the Limitations of Lightning Data Services ?It does not support bulk record operations. ( ...
If record gets updated from the outside page, like using Dataloader or some other user, it will not be refreshed. ...
Not all standard objects are supported (at the time of writing this post)
It's not yet GA. -
Aditya
MemberMarch 17, 2020 at 12:53 pm in reply to: What is capitalize() method while working with String in Salesforce?Hi Anjali,
capitalize() method returns the current String in which first letter changed to title case:
Example: String s = 'hello maximillian';
String s2 = s.capitalize();
System.assertEquals('Hello maximillian', s2); -
Aditya
MemberMarch 17, 2020 at 12:27 pm in reply to: How to delete the Scheduled Batch Class in Salesforce ?Hi Kirandeep,
We can delete the Scheduled batch Class in Salesforce By using the following code:
string SCHEDULE_NAME = 'test';
System.schedule(SCHEDULE_NAME, '0 15 0-23 * * ?', new ScheduledMaintenance());
System.abortJob(SCHEDULE_NAME); -
Aditya
MemberMarch 11, 2020 at 2:38 pm in reply to: Why soql query is not required in custom settings in Salesforce?Custom Settings are basically custom objects that are available from the applications cache, so there's no need to do a SOQL query to get the value. Custom settings are a vast improvement over just using custom objects because there's no SOQL Query, there's very few limits, and they can be used pretty much anywhere.
-
Aditya
MemberMarch 11, 2020 at 2:35 pm in reply to: Where Custom Settings can be used in Salesforce?Illustrate with an example.The following examples illustrate how you can use custom settings: A shipping application requires users to fill in the country codes for international deliveries. An application calculates and tracks compensation for its sales reps, but seniority determines commission percentages
-
Permission Set provide users permission to access tools and functions on the bases of collection of settings and permissions.
-
Aditya
MemberMarch 6, 2020 at 4:39 pm in reply to: Can we create a custom field through Salesforce Apex?Hi Ankit,
Once you have imported the code, you can go back to your Salesforce account, and search for “apex classes.” Click the “new” button, then paste the metadata from this website. Once the metadata has been entered, you can run the apex code, and will be able to start creating custom objects and fields.