Forum Replies Created

Page 7 of 20
  • You can find base Lightning components in the lightning namespace to complement the existing ui namespace components. In instances where there are matching ui and lightning namespace components, we recommend that you use the lightning namespace component. The lightning namespace components are optimized for common use cases. Beyond being equipped with the Lightning Design System styling, they handle accessibility, real-time interaction, and enhanced error messages.

  • Aditya

    Member
    August 8, 2020 at 7:57 pm in reply to: How do you create multiple records using flow?

    To create multiple records, you must use the values from a record collection variable. Earlier in the flow, populate the record collection variable with the new records' field values. When you use a record collection variable to create multiple records at once, you reduce the number of DML requests in your flow.

  • Aditya

    Member
    August 8, 2020 at 7:53 pm in reply to: How do I find my record ID in flow?
    1. Create a new Flow with Salesforce as the Service used for identity.
    2. Drag a Data Load element into the Flow.
    3. Create a new Data Action.
    4. For the Value to load, either select a Value of Kind: Object, Type: Contact or create a new Value of Kind: Object, Type: Contact.
    5. Use the Contact binding for loading the data.
  • Aditya

    Member
    August 6, 2020 at 3:54 pm in reply to: How to generate a custom error message in Salesforce lightning?
    public with sharing class SampleClass {
    
        
        @AuraEnabled 
        public static Case resetCase(string recordId){
            
    		try{
    			
    			
    		}catch(Exception e){
    			
    			            throw new AuraHandledException('Error Exception happend'+e.getMessage());           
    
    		}
    		
        }
    }
  • Aura-based Lightning components are built using both HTML and JavaScript, but LWC is built directly on the Web stack. A developer who works on LWC is not only using coding skills on a particular framework but in other frameworks like React or Angular, which are based on the Web Stack.

  • A private domain is also included in the use of SAP. While Private Domains, dedicated IPs and RMMs can be purchased individually – link and image wrapping is exclusive to SAP. In addition, only one SAP can be assigned per MID, however multiple Private Domains can be assigned per MID

  • Search Results
    <div eid="_OwqX7XpEuab4-EPx6-AqAI" data-async-context="query:What%20is%20the%20difference%20between%20a%20standard%20and%20custom%20apex%20controller%3F" id="rso"><div lang="en-IN" data-hveid="CA8QAA" data-ved="2ahUKEwi11_P0y4TrAhXmzTgGHccXACUQjDYoAHoECA8QAA"><div><div><div>Featured snippet from the web
    <div data-md="61" lang="en-IN"><div aria-level="3" role="heading" data-attrid="wa:/description" data-hveid="CA8QAQ">A custom controller is the user defined an Apex class that implements all of the logic for a page without leveraging a standard controller. Whenever the visualforce pages need to run entirely in system mode and it does not enforce the permissions and field-level security of the current user the custom controller works.

    </div></div></div></div></div></div></div>

  • Page layouts and record types are used in conjunction with one another to customize the views of different types of users. While page layouts control what is shown on the page, record types are used to differentiate between different categories of users and segment user groups for object page customization.

  • Aditya

    Member
    August 5, 2020 at 5:26 pm in reply to: What is Salesforce Connect?

    Salesforce Connect is an exciting new App Cloud integration service that empowers Salesforce users to access and manage data in external apps, whether on-premise or cloud, directly from Salesforce.

  • Aditya

    Member
    August 5, 2020 at 9:42 am in reply to: How to rename standard objects in Salesforce?

    To rename the standard object in Salesforce, follow these steps:1. Go to Setup -> customize -> Tab Names and labels -> Rename tab and labels.2. Choose the object and click edit.

  • Validation rule is not work for prevents deletion of record. You can use trigger for Prevent deletion record. Validation rules will only work if there is a record to determine if the formula evaluates to true.

  • Main Difference Between ISBLANK And ISNULL in Salesforce. ISBLANK determines if an expression has a value then returns TRUE if it does not. ... ISNULL determines if an expression is null (blank) then returns TRUE if it is. If the expression contains a value, then this function returns FALSE.

  • Aditya

    Member
    July 31, 2020 at 7:44 pm in reply to: How to manipulate records with force:recordData in Salesforce?

    Use force:recordData to create a component that displays the details of a standard account record, and another component that allows for quick edits to that record. Create an edit component named accEdit. cmp using the record attribute named accountRecord that allows edits to the Name field.

  • Lightning Data Service improves performance by eliminating the multiple SOQL query call for a single record from the multiple instances. Instead, components share a single copy of the record data by saving the record with its update state in the cache and eliminate refreshing the component when a record is updated.

  • Lightning Data Service is a centralized data caching framework which is used to load, save, create and delete a record without server-side apex code. ... Lightning Data Service improves performance by eliminating the multiple SOQL query call for a single record from the multiple instances.

  • Aditya

    Member
    July 30, 2020 at 1:52 pm in reply to: How to enable visualforce editor in Salesforce?

    <div id="EnablingDevMode">

    1. From your personal settings, enter <kbd>Advanced User Details</kbd> in the Quick Find box, then select Advanced User Details. No results? Enter <kbd>Personal Information</kbd> in the Quick Find box, then select Personal Information.
    2. Click Edit.
    3. Select the <samp>Development Mode</samp> checkbox.
    4. Optionally, select the <samp>Show View State in Development Mode</samp> checkbox to enable the View State tab on the development footer. This tab is useful for monitoring the performance of your Visualforce pages.
    5. Click Save.

    <div>
    </div></div>

  • Aditya

    Member
    July 29, 2020 at 11:15 am in reply to: How to Create Named Credentials in Salesforce ?
    1. Navigate to “Setup | Administer | Security Controls | Named Credentials | New Named Credential “.
    2. Provide the name (label)
    3. In URL, provide URL of Salesforce instance where we want to Connect.
    4. Select “Named Principal” as Identity Type.
    5. In our example select “Authentication Protocol” as OAuth 2.0.
  • Aditya

    Member
    July 29, 2020 at 11:13 am in reply to: Can we insert using REST Resource in Salesforce?

    Insert or Update Blob Data. You can use SObject Basic Information, SObject Rows, or SObject Collections REST resources to insert or update blob data in Salesforce standard objects. ... You can insert or update files on any standard object that contains a blob field.

  • Aditya

    Member
    July 29, 2020 at 11:10 am in reply to: Why Content-Type header is used in RestAPI Callouts in Salesforce?

    The request Content-Type header is set to let the service know that the sent data is in JSON format so that it can process the data appropriately. The service responds by sending a status code and a list of all animals, including the one you added.

  • Aditya

    Member
    July 28, 2020 at 4:09 pm in reply to: How do you access static resources in lightning component?

    <ltng:require> tag helps us to load the Static Resources in the Lightning component. If we upload a JS or CSS directly into Static resource, then we should reference them by resource name without

  • Aditya

    Member
    July 28, 2020 at 4:07 pm in reply to: What are the benefits of using the custom labels in Salesforce?

    Custom Labels. Custom labels enable developers to create multilingual applications by automatically presenting information (for example, help text or error messages) in a user's native language. Custom labels are custom text values that can be accessed from Apex classes, Visualforce pages, or Lightning components

  • Aditya

    Member
    July 28, 2020 at 3:57 pm in reply to: What is the custom label concept in Salesforce?

    Custom labels enable developers to create multilingual applications by automatically presenting information (for example, help text or error messages) in a user's native language. Custom labels are custom text values that can be accessed from Apex classes, Visualforce pages, or Lightning components.

  • Aditya

    Member
    July 24, 2020 at 4:55 pm in reply to: what is difference between data filters activity and SQL activity?

    Apply a data filter to create a group or data extension containing records that meet a set of criteria. For example, use a filter activity in Automation Studio to sort out subscribers from a larger subscriber list.

  • Aditya

    Member
    July 24, 2020 at 4:53 pm in reply to: what is Audience in salesforce marketing cloud?

    An audience represents a collection of contacts grouped based on attributes to receive a message. An audience draws information from a sendable data extension with a flag set in the header of the data extension noting it as an audience.

  • Aditya

    Member
    July 23, 2020 at 4:30 pm in reply to: Why we can choose lightning web component in Salesforce?

    Lightning Web Components is the Salesforce implementation of that new breed of lightweight frameworks built on web standards. ... The Lightning Data Service which provides declarative access to Salesforce data and metadata, data caching, and data synchronization.

Page 7 of 20