Forum Replies Created

Page 3 of 8
  • 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.

  • Sumit

    Member
    August 3, 2020 at 4:50 am 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.

  • Sumit

    Member
    July 6, 2020 at 5:57 am in reply to: What is the benefits of Disable cache memory in Salesforce?

    Disable the secure and persistent browser caching setting during development in a sandbox or Developer Edition org to see the effect of any code changes without needing to empty the cache. The caching setting improves page reload performance by avoiding extra round trips to the server.

  • Sumit

    Member
    July 6, 2020 at 5:56 am in reply to: What is meant by WSDL file in Salesforce?

    A WSDL is an XML-document which contains a standardized description on how to communicate using a web service (the Salesforce API is exposed as a web service). The WSDL is used by developers to aid in the creation of Salesforce integration pieces.

  • Sumit

    Member
    July 2, 2020 at 6:49 am in reply to: How do I make a lightning component PDF?

    Create a visualforce page with page attribute renderas = “pdf” (sample code below)
    Add a Quick Action “Generate PDF” for required object ( Action Type: Visualforce; Visualforce Page: GeneratePDF. page)
    Go to Lightning App builder to add the action to detail view of Object.

  • Sumit

    Member
    July 2, 2020 at 6:46 am in reply to: How do you use the lightning component in the developer console?

    Click the gear icon (Gear Icon), then select Developer Console.
    In the Developer Console, select File > New > Lightning Component.
    Name the component as per your requirement, select Lightning Record Page, and select Submit.

  • Sumit

    Member
    June 26, 2020 at 6:22 am in reply to: How to create Dependent Picklist in Salesforce?

    From the management settings for the object you want to add a field to, go to Fields. Custom task and event fields are accessible from the object management settings for Activities.
    Click Field Dependencies.
    Click New.
    Choose a controlling field and dependent field.
    Note
    NOTE Some picklist and checkbox fields may not be available as controlling fields.
    Click Continue.
    Use the field dependency matrix to specify the dependent picklist values that are available when a user selects each controlling field value.
    Optionally, click Preview to test your selections. If your organization uses record types, choose a record type to test how it affects your controlling and dependent picklist values. The record type controls what values are available in the controlling field. The record type and the controlling field together determine what values are available in the dependent picklist. For example, a dependent value is only available if it is available in the selected record type and the selected controlling value.
    Note
    NOTE The Filter by Record Type option doesn’t appear in the Preview window for activity custom fields.

  • Sumit

    Member
    June 26, 2020 at 6:20 am in reply to: What are Lightning Extensions in Salesforce?

    Lightning Extension. Lightning Extension is a library of features created by the Lightning Product Management team at Salesforce. This extension is designed to complement the user experience with continuous productivity feature releases.

  • Sumit

    Member
    June 24, 2020 at 6:37 am in reply to: What is unbound expression in lightning component in Salesforce?

    Whenever the value of the string is changed, this expression will reflect the change and also affect the components where it is used, we can say the value change dynamically through this expression. Unbound Expression: Unbound Expression is represented as {#v. str}

  • Sumit

    Member
    June 24, 2020 at 6:36 am in reply to: What is bubble and capture phase in Salesforce lightning?

    Capture phase—The framework executes the capture phase from the application root to the source component until all components are traversed. ... Bubble phase—The framework executes the bubble phase from the source component to the application root until all components are traversed or stopPropagation() is called.

  • Sumit

    Member
    June 23, 2020 at 6:26 am in reply to: How to handle fault in Salesforce flow?

    To do so, draw the fault connector to a Screen element with this Display Text field. When an error occurs, automatically create a case that includes the error message and assign it to your IT department. Assign the created case's number to a Text variable ( {! caseNumber} , for example).

  • Sumit

    Member
    June 22, 2020 at 6:37 am in reply to: How to enable Person Account in Salesforce?

    Make sure you meet the following prerequisites.
    The account object has at least one record type.
    User profiles that have read permission on accounts have read permission on contacts.
    The organization-wide default sharing is set so that either Contact is Controlled by Parent or both Account and Contact are Private.
    From Setup, enter Account Settings in the Quick Find box, and then select Allow Customer Support to enable Person Accounts.
    We’ll verify your org meets the prerequisites, then send you an email with additional information. If you don’t see a message verifying you meet the prerequisites, go back to step 1.
    Contact Salesforce Customer Support by logging a case to enable Person Accounts.
    Refer to the email we sent about what to include in the case.
    After Person Accounts is enabled, a person account record type is created. You can create additional record types for person account if needed.
    Assign the person account record type to user profiles.

  • Sumit

    Member
    June 22, 2020 at 6:37 am in reply to: How to set multiple image SRC in Lightning Component in Salesforce?

    To use the default color for a particular icon, construct the name of the icon's specific utility class by concatenating slds-icon- , the sprite map name, and -icon . Apply that class to the element.

  • Sumit

    Member
    June 22, 2020 at 6:35 am in reply to: What is OwnerId in ContentDistribution in Salesforce?

    It is a reference field type in ContentDistribution

  • Person accounts page layouts do not support the Reports To and Parent Account fields. ... In Salesforce Classic, you can use the Partners related list to relate person accounts to each other. We recommend that you rename the Partners related list to reflect how your person accounts are connected.

  • Sumit

    Member
    June 19, 2020 at 6:58 am in reply to: Can you merge Person Account with Business Account in Salesforce?

    You can't merge person accounts that are enabled as portal or community users. ... You can, however, use Contacts to Multiple Accounts to create indirect relationships between a person account and another person account, business account, or contact.

  • Sumit

    Member
    June 18, 2020 at 7:03 am in reply to: How do I query ContentDocument in Salesforce?

    Search Results
    Featured snippet from the web
    Execute the below queries in the Developer Console.
    SELECT Id, LinkedEntityId, ContentDocumentId FROM ContentDocumentLink WHERE LinkedEntityId=<<Id og the document>> 2 records will be returned.
    SELECT Id, Title FROM ContentDocument WHERE Id=<<ContentDocumentId from the above query>> 2 rows will be returned.

  • Sumit

    Member
    June 18, 2020 at 7:01 am in reply to: What is ContentVersion in Salesforce?

    ContentVersion. Represents a specific version of a document in Salesforce CRM Content or Salesforce Files. This object is available in versions 17.0 and later for Salesforce CRM Content documents. This object is available in versions 20.0 and later for Salesforce Files.

  • Sumit

    Member
    June 18, 2020 at 7:00 am in reply to: What are content bodies in Salesforce?

    Search Results
    Featured snippet from the web
    Represents the body of a file in Salesforce CRM Content or Salesforce Files. This object is available in API version 40.0 and later

  • Sumit

    Member
    June 17, 2020 at 7:15 am in reply to: What is tofu MoFu and BoFu in Salesforce?

    For marketers, TOFU stands for top-of-funnel. MOFU is shorthand for middle-of-funnel, and BOFU — you guessed it — stands for bottom-of-funnel. ... Each of these acronyms contains a whole set of goals and best practices that help marketers craft and execute campaigns.

  • Sumit

    Member
    June 17, 2020 at 7:14 am in reply to: What is top funnel marketing in Salesforce?

    The top of the funnel signifies the goal of every business — to generate as many leads as possible — while the narrow bottom reflects how many of those leads are converted to customers by the end of the sales process. Stages of a sales funnel can vary, but a traditional model follows these phases: Awareness. Interest.

  • Sumit

    Member
    June 17, 2020 at 7:13 am in reply to: What are quick actions in Salesforce?

    Quick Actions. Quick actions enable users to do more in Salesforce and in the Salesforce mobile app. With custom quick actions, you can make your users' navigation and workflow as smooth as possible by giving them convenient access to information that's most importan

  • Sumit

    Member
    June 16, 2020 at 6:50 am in reply to: How to reduce Ping Value?

    You can lower ping without any hassle if you can cover the list of to do things that will be mentioned here.
    Select Nearest Servers.
    Force Close a Program.
    Turn Off Your Updates.
    Reset Your Network Settings.
    Clean Your Computer.
    Getting a Wired Connection.
    Lower Your Ping With Kill Ping.

  • Sumit

    Member
    June 16, 2020 at 6:49 am in reply to: What is Ping?

    Search Results
    Web results
    Troubleshoot network performance issues with ping and ...help.salesforce.com › apex › HTViewSolution › urlname
    Salesforce transmits packets of various sizes when communicating with your machine. If you have done successful basic traceroutes and pings to salesforce.com

  • Sumit

    Member
    June 16, 2020 at 6:48 am in reply to: What is Jitter?

    Connect to any file or database, local or in the cloud.
    Built-in wizards guide you through the setup of your Insert, Update, Upsert, Query, Delete, or Bulk Load operations.
    The Jitterbit AutoMapper graphically maps and transforms your data, automatically matching similar fields to save you time and resources.

Page 3 of 8