Forum Replies Created

Page 18 of 24
  • Deepak

    Member
    April 28, 2020 at 6:00 am in reply to: What is the use of dataTable in Salesforce lightning components?

    A lightning:datatable component displays tabular data where each column can be displayed based on the data type. lightning:datatable also supports inline editing.

  • Deepak

    Member
    April 27, 2020 at 2:06 pm in reply to: What is meant by tag in Salesforce?

    A set of content that is grouped together, rendered with an HTML tag, <div> tag, or neither. Use an <apex:outputPanel> to group components together for AJAX refreshes.

  • Deepak

    Member
    April 27, 2020 at 2:04 pm in reply to: How to make global picklist in Salesforce for objects?

    A global picklist is a restricted picklist by nature. Only a Salesforce admin can add to or modify its values. Users can’t add unapproved values, even through the API.

    1. From Setup, enter Picklist in the Quick Find box, then select Picklist Value Sets.
    2. Next to Global Value Sets, click New.
    3. Enter a label for the global value set. This name appears in Setup, and when users create a picklist based on this global value set.
    4. To tell users what these values are for, enter a specific description of the global value set. This text appears on the Picklist Value Sets list page in Setup.
    5. Enter the values, one per line.
    6. Optionally choose to sort the values alphabetically or to use the first value in the list as the default value, or both.
    7. If you select both options, Salesforce alphabetizes the entries and then sets the first alphabetized value as the default.
    8. Click Save.
  • Deepak

    Member
    April 27, 2020 at 1:45 pm in reply to: $A namespace in javascript controller lightning cmp in Salesforce?

    The $A namespace is the entry point for using the framework in JavaScript code.
    For all the methods available in $A, see the JavaScript API at https://<myDomain&gt;.lightning.force.com/auradocs/reference.app, where <myDomain> is the name of your custom Salesforce domain.
    A component bundle can contain JavaScript code in a client-side controller, helper, or renderer. Client-side controllers are the most commonly used of these JavaScript resources.

  • Deepak

    Member
    April 24, 2020 at 4:06 pm in reply to: What is the use of lightning layoutItem tag in Salesforce?

    A lightning:layoutItem defines content to display within lightning:layout . You can arrange one or more lightning:layoutItem components inside lightning:layout . Use the attributes of lightning:layoutItem to configure the size of the layout item, and change how the layout is configured on different device sizes.

  • Deepak

    Member
    April 24, 2020 at 4:04 pm in reply to: Call Helper.js directly from Component in Salesforce?

    helper. getLeadData(component, event); In the Controller, we can call function directly from action of component like: {!

  • There are two different methods to store and segment subscriber data within Marketing Cloud: Lists and Data Extensions. Lists have limited functionality, whereas Data Extensions provide full flexibility to store and relate subscriber information.

  • Deepak

    Member
    April 23, 2020 at 3:58 pm in reply to: What is Blob in Apex in Salesforce ?

    Blob is a collection of binary data stored as a single object. You can convert this data type to String or from String using the toString and valueOf methods, respectively. Blobs can be accepted as Web service arguments, stored in a document (the body of a document is a Blob), or sent as attachments.

  • Deepak

    Member
    April 23, 2020 at 3:57 pm in reply to: what are platform events in salesforce?

    Platform Events are used to deliver secure, scalable, and customizable notification within Salesforce or external app. Platform Event is based on Event-Driven Architecture. This is built in real time integration patterns in the Salesforce Platform which helps to reduce point-to-point integration.

  • Deepak

    Member
    April 23, 2020 at 3:56 pm in reply to: What are Trace Flags in Salesforce?

    USER_DEBUG trace flags cause logging of an individual user's activities. CLASS_TRACING trace flags override logging levels for Apex classes and triggers, but don't generate logs. This field is required.

  • Deepak

    Member
    April 22, 2020 at 2:46 pm in reply to: What is shadow DOM in lightning in Salesforce?

    Shadow DOM is a web standard that encapsulates the elements of a component to keep styling and behavior consistent in any context. Since not all browsers that Salesforce supports implement Shadow DOM, LWC uses a shadow DOM polyfill. A polyfill is code that allows a feature to work in a web browser.

  • Deepak

    Member
    April 22, 2020 at 2:44 pm in reply to: What is Partner Web Services WSDL in Salesforce?

    The Partner Web Services WSDL is used for client applications that are metadata-driven and dynamic in nature. It is particularly—but not exclusively—useful to Salesforce partners who are building client applications for multiple organizations.

  • Deepak

    Member
    April 22, 2020 at 2:39 pm in reply to: What is Business Logic Integration in Salesforce?

    Business Logic Integration uses Apex Web Services for Inbound and Apex Callouts for Outbound. It typically handles a scenario where business logic is spread across several applications to implement the complete end-to-end business process.

  • Deepak

    Member
    April 21, 2020 at 4:24 pm in reply to: What Is Analytical Snapshot in salesforce?

    An analytic snapshot lets you report on historical data. Authorized users can save tabular or summary report results to fields on a custom object, then map those fields to corresponding fields on a target object. They can then schedule when to run the report to load the custom object's fields with there port's data.

  • Deepak

    Member
    April 21, 2020 at 4:23 pm in reply to: What Are Limitations Of Salesforce Reports?
    • Too much training required.
    • Sales VPs should not have to invest a great deal of time in learning how to use or understand reports in Salesforce.
    • Limited visualization.
    • Problems sharing reports.
    • Difficult cross-object reporting.
    • Difficulties accessing historical data.
  • Deepak

    Member
    April 21, 2020 at 4:13 pm in reply to: What is triggered sends in Salesforce Marketing Cloud?

    A triggered Send is an email communication sent to an individual subscriber in response to a subscriber action. Triggered Sends trigger a Salesforce Marketing Cloud email from Salesforce using the Salesforce Marketing Cloud integration action.

  • Deepak

    Member
    April 20, 2020 at 2:23 pm in reply to: How do I use Salesforce as an identity provider?
    1. Configure a domain using My Domain and deploy it to all users.
    2. From Setup, enter Identity Provider in the Quick Find box, select Identity Provider, and click Enable Identity Provider.
    3. By default, a Salesforce identity provider uses a self-signed certificate generated with the SHA-256 signature algorithm.
  • Deepak

    Member
    April 20, 2020 at 2:17 pm in reply to: What is meant by Salesforce Identity?

    Salesforce Identity connects your Salesforce org users with external apps and services while providing administrative tools for monitoring, maintaining, and reporting user apps and user authorization.Salesforce Identity Connect for integrating Microsoft Active Directory (AD) with Salesforce.

  • Deepak

    Member
    April 20, 2020 at 2:15 pm in reply to: What is Self-Relationship?

    A self relationship is just a lookup relationship that happens to look to the same object rather than a different object.

  • Deepak

    Member
    April 17, 2020 at 5:31 pm in reply to: What is event driven architecture in Salesforce?

    An event-driven (or message-driven) software architecture consists of event producers, event consumers, and channels. The architecture is suitable for large distributed systems because it decouples event producers from event consumers, thereby simplifying the communication model in connected systems.

  • Hi Krati,
    When the user click on the get Contact button, a server request create by js controller and aura:waiting event fired automatically . and call the showSpinner function on client side controller. showSpinner js function set the spinner attribute to true on component and the loading spinner is display on component body.

  • Deepak

    Member
    April 17, 2020 at 5:29 pm in reply to: How to create popup in lightning component in Salesforce?

    Hi Krati,
    You can create a modal or through validation in Lightning Component in Salesforce.

  • Deepak

    Member
    April 16, 2020 at 2:55 pm in reply to: What is the TestData factory in salesforce?

    Data Factories are apex classes that are responsible for generating data. They primarily generate Salesforce records in various ways. By far, test classes use Data Factories the most to generate their data.

  • Deepak

    Member
    April 16, 2020 at 2:54 pm in reply to: what is Application events in salesforce lightning ?

    An application event is fired from an instance of a component. All components that provide a handler for the event are notified. Application Event Propagation. The framework supports capture , bubble , and default phases for the propagation of application events.

  • Deepak

    Member
    April 16, 2020 at 2:52 pm in reply to: What is Padding in Salesforce?

    These utility classes are for added convenience in laying out components. Classes prefixed by slds-p- are used for adding padding. Classes prefixed in slds-m- are used for adding margin. The directions available for the spacing classes are top , right , bottom , and left .

Page 18 of 24