Manish
IndividualForum Replies Created
-
Manish
MemberAugust 21, 2020 at 3:45 pm in reply to: What is the benefit of console tabs in Salesforce?Salesforce Console apps are a tab-based workspace suited for fast-paced work environments. Manage multiple records on a single screen and reduce time spent clicking and scrolling to quickly find, update, and create records.
-
When a fuzzy matching method is selected, various fuzzy matching algorithms are used to compare the fields. More than one matching algorithm can be used to compare a field. Each matching algorithm is scored based on how closely it matches the fields. The fields being compared aren't case sensitive
-
They give us a major clue into what the developers had in mind when they created this in Salesforce. In short, VLOOKUP is built to let you validate data against a known list of values. It helps ensure that two fields on your record have compatible data
-
An external data source specifies how to access an external system. Salesforce Connect uses external data sources to access data that's stored outside your Salesforce organization. Files Connect uses external data sources to access third-party content systems. External data sources have associated external objects, which your users and the Lightning platform use to interact with the external data and content.
-
Manish
MemberAugust 20, 2020 at 3:53 pm in reply to: What is the use of smartfactory in Test Class in Salesforce ?SmartFactory aims to provide test data objects with all required fields and object lookups pre-populated.
The idea came from writing unit tests for unfamiliar orgs, where setting up test data might mean digging through a large hierarchy of lookup relationships and required fields. Instead, SmartFactory uses the Describe metadata to populate all fields with data of the right type. For lookup fields, it creates an appropriate object and then uses that object's id. -
External objects are similar to custom objects, but external object record data is stored outside your Salesforce organization. For example, perhaps you have data that’s stored on premises in an enterprise resource planning (ERP) system. Instead of copying the data into your org, you can use external objects to access the data in real time via web service callouts.
-
Action methods can be called from page markup by using {! } notation in the action parameter of one of the following tags: <apex:commandButton> creates a button that calls an action. <apex:commandLink> creates a link that calls an action.
-
Manish
MemberAugust 19, 2020 at 3:07 pm in reply to: How many records we can display in the particular report in Salesforce?We can display up to 2000 records on a page. If more records are there to display we cannot see those through user interface.
-
-
Manish
MemberAugust 19, 2020 at 3:04 pm in reply to: What impact does critical update do in Salesforce?Salesforce periodically releases updates that improve the performance, logic, and usability of Salesforce, but which can affect your existing customizations. When these updates become available, Salesforce lists them in Setup at Critical Updates and displays a message when administrators go to Setup.
-
Manish
MemberAugust 18, 2020 at 4:40 pm in reply to: What is a difference between system log and debug log in Salesforce?Difference in both log is that , the System log contains all the system related information, anonymous apex execution etc however the debug log contains all the debug statements and program execution related to the user for which the debug is granted.
-
A share object includes records supporting all three types of sharing: Force.com managed sharing, user managed sharing, and Apex managed sharing. A custom object's share object allows four pieces of information to be defined: The record being shared.
-
User Provisioning Flow. Provisions users for third-party services. For example, use this flow type to customize the user provisioning configuration for a connected app to link Salesforce users with their Google Apps accounts.
-
- Do one of the following:
- If you have permission to edit public templates, from Setup, enter <kbd>Email Templates</kbd> in the <samp>Quick Find</samp> box, then select Classic Email Templates.
- If you don’t have permission to edit public templates, go to your personal settings. Enter <kbd>Templates</kbd> in the Quick Find box, then select Email Templates or My Templates—whichever one appears.
- Click New Template.
- Choose the <samp>Text</samp> template type, and click Next.
- If necessary, change the <samp>Template Unique Name</samp>.
- for more :https://help.salesforce.com/articleView?id=creating_text_email_templates.htm&type=5
<li id="chooseafolder">Choose a folder in which to store the template.<li id="makeitactive">To make the template available for use, select the <samp>Available For Use</samp> checkbox.<li id="setthename">Enter a name in <samp>Email Template Name</samp>.
- Do one of the following:
-
Manish
MemberAugust 17, 2020 at 4:03 pm in reply to: What is the use of interface flexipage:availableForAllPageTypes in Salesforce?Add the force:appHostable interface to a Lightning component to allow it to be used as a custom tab in Lightning Experience or the Salesforce mobile app. Components that implement this interface can be used to create tabs in both Lightning Experience and the Salesforce mobile app.
-
Manish
MemberAugust 17, 2020 at 4:02 pm in reply to: What are the different ways to communicate between Salesforce components?we have two types of communication involved: C2C (Component to Component) and C2S (Component to Server). C2C or intercomponent communication is performed through events, that are propagated asynchronously in the UI. A component can publish and subscribe to events.
-
Manish
MemberAugust 14, 2020 at 3:38 pm in reply to: What are external Ids? Does external ids are unique in salesforce?An external ID is a custom field that has the External ID attribute, meaning that it contains unique record identifiers from a system outside of Salesforce. When you select this option, the Data Import Wizard detects existing records in Salesforce with external IDs that match those values in the import file.
-
Using syntax that looks like Java and acts like database stored procedures, Apex enables developers to add business logic to most system events, including button clicks, related record updates, and Visualforce pages. Apex code can be initiated by Web service requests and from triggers on objects.
-
Manish
MemberAugust 13, 2020 at 1:49 pm in reply to: How many workflow we can create in Salesforce?By default, each object (or entity) is limited to 50 active workflow rules. Additional volume is available (up to 300 active workflow rules,) but we instead recommend the use of the Process Builder. Doing so will allow for a greater ability to scale your business.
-
Manish
MemberAugust 13, 2020 at 1:48 pm in reply to: What is the aura definition bundle in Salesforce Lightning?Represents an Aura definition bundle. A bundle contains an Aura definition, such as an Aura component, and its related resources, such as a JavaScript controller. The definition can be a component, application, event, interface, or a tokens collection.
-
Manish
MemberAugust 12, 2020 at 3:17 pm in reply to: In Salesforce Marketing Cloud, what is Send Throttle?Send Throttling is a feature available in Salesforce Marketing Cloud which allows you to control the number of email or sms send within a time period. This feature will send emails or sms during the time range which you specify every day, starting the day you send email or sms, till all your emails or sms are sent.
-
isRunningTest(): The Test. isRunningTest() method in the Apex class, batch or trigger code is used to identify the pieces of code being executed & invoked from a Test class execution. The Test. isRunningTest() method is used to define whether the code is executed by the Apex test class.
-
Manish
MemberAugust 12, 2020 at 3:14 pm in reply to: What are the steps to expose SOAP services in Salesforce?Making your Apex class available as a SOAP web service is as easy as with REST. Define your class as global. Add the webservice keyword and the static definition modifier to each method you want to expose. The webservice keyword provides global access to the method it is added to.
-
Manish
MemberAugust 11, 2020 at 3:44 pm in reply to: What is the difference between the ISBLANK() and ISNULL () in Salesforce?ISBLANK() has the same functionality as ISNULL(), but also supports text fields. Salesforce will continue to support ISNULL, so you do not need to change any existing formulas. ISNULL(): Text fields are never null, so using ISNULL() with a text field always returns false.