Forum Replies Created

Page 23 of 24
  • Shweta

    Member
    February 12, 2020 at 2:24 pm in reply to: What is the use of OAuth in Salesforce?

    OAuth : It is an open protocol that authorizes a client application to access data from a protected resource through the exchange of tokens and used to approve a client application’s access to your org’s protected resources.

     

    • This reply was modified 4 years, 9 months ago by  Shweta.
  • setCallback()  Method : It is used to provide a callback function when making a call to a server-side controller.

  • Shweta

    Member
    February 11, 2020 at 2:54 pm in reply to: Why do we use lightning components in Salesforce?

    Benefits of using the Lightning Component framework :

    • It comes with an out-of-the-box set of components to kick start building apps.
    • Fast Development
    • Apps use responsive design and support the latest in browser technology such as HTML5, CSS3.
  • Shweta

    Member
    February 11, 2020 at 2:49 pm in reply to: How many times trigger will fire in Salesforce?

    Maximum 16 times the trigger will fire recursively. After 16 th time it will throw the error "maximum trigger depth exceeded".

  • Shweta

    Member
    February 11, 2020 at 2:44 pm in reply to: What are managed packages in Salesforce?

    Managed package : It is a collection of application components that are posted as a unit on AppExchange, and are associated with a namespace and a License Management Organization. It include locked components and also It can be upgraded.

  • Shweta

    Member
    February 10, 2020 at 1:13 pm in reply to: What is heap size in Salesforce Apex?

    Salesforce provides a heap size limit of

    • 6MB for synchronous transaction &
    • 12 MB for the asynchronous transactions.
    • This reply was modified 4 years, 9 months ago by  Forcetalks.
  • Shweta

    Member
    February 10, 2020 at 1:10 pm in reply to: How many types of sandbox orgs are available in Salesforce ?

    Types of Sandbox :

    • Developer Sandbox : It is a copy of production and it copies all application and configuration information to the sandbox.
    • Developer Pro Sandbox : It is a copy of your production organization’s reports, dashboards, price books, products, apps, and customizations under Setup, but exclude all of your organization’s standard and custom object records, documents, and attachments.
    • Partial Copy Sandbox : It is used as a testing environment. It includes the reports, dashboards, price books, products, apps, and customization under Setup.
    • Full Copy Sandbox : It is an exact copy of production including standard and custom objects records, attachments and documents.
  • Shweta

    Member
    February 10, 2020 at 1:01 pm in reply to: What is the difference between List, Map and Set in Salesforce?

    List: This is the most common collection data type. It includes a sort() method, so we use a list whenever we need something to be ordered.

    Set: Sets are unordered collection and It enforces uniqueness (it means, used to prevent duplicates in our code).

    Map: It is a collection that consists of key-value pairs.

    • Keys - It behaves like a set (which is unique).
    • Values - It behaves like a list.
    • This reply was modified 4 years, 9 months ago by  Forcetalks.
    • This reply was modified 4 years, 9 months ago by  Forcetalks.
  • Shweta

    Member
    February 7, 2020 at 1:04 pm in reply to: How do I create a quick action in salesforce ?

    Create a Quick action :

    • Click Setup.
    • Enter Global Actions in the Quick Find and select Global Actions.
    • Click New Action.
    • Leave the Action Type as Create a Record. In the Target Object field, choose Waypoint.
    • In the Label field, enter Waypoint. This automatically populates the Name field with Waypoint as well.
    • Click Save.
    • In the next Action Layout screen, leave Waypoint Name as the only field in the layout. Click Save.
  • Shweta

    Member
    February 7, 2020 at 1:00 pm in reply to: What are phases in Component Event in Salesforce?

    Component Event supports capture and bubble phases . Phases give you flexibility for how to best process the event for your application.

    Capture Phase : In this, Event is captured and trickles down from the application root to the source component.The event can be handled by a component in the containment hierarchy that receives the captured event.

    <aura:handler name="compEvent" event="c:compEvent" action="{!c.handleCapture}" phase="capture" />

    Bubble Phase : In this, Event can be handled by a component in the containment hierarchy that receives the bubbled event. The event then bubbles up from the source component to the application root.

     <aura:handler name="compEvent" event="c:compEvent" action="{!c.handleBubbling}"/>

     

  • Shweta

    Member
    February 7, 2020 at 12:44 pm in reply to: What is the use of the aura:method tag in Lightning component?

    <aura:method > :

    • It is used to to define a method as part of a component’s API.
    • It is used to simplifies the code needed for a parent component to call a method on a child component that it contains.
  • Shweta

    Member
    February 6, 2020 at 2:36 pm in reply to: What are the limitations of FUTURE METHOD in Salesforce?

    Limitations of future method :

    • 10 future calls per Apex transection and also the limit of future calls in a 24 hour period.
    • A future call cannot make another future call.
    • Future calls cannot be guaranteed to run in a certain order.
  • Shweta

    Member
    February 5, 2020 at 1:56 pm in reply to: What is the use of Blob Variable in Salesforce?

    Blob Variable :

    • It is a collection of Binary data which is stored as object.
    • It is used to store the attachment in Salesforce into a variable and it converts the attachments into a single object.
  • Shweta

    Member
    February 5, 2020 at 1:52 pm in reply to: What is a Static Resource in salesforce?

    Static Resource :

    • It is managed and distributed by Lightning Platform, which acts as a content distribution network for the files.
    • You can reference a static resource using the $Resource global variable, or used as a parameter to functions such as URLFOR().
  • Shweta

    Member
    February 4, 2020 at 12:31 pm in reply to: How Many Records We Can Display On Page For A Report in Salesforce?

    We can display up to 2k records on a page for a report.

  • Shweta

    Member
    February 4, 2020 at 12:23 pm in reply to: What Are Different Chart Types Available For Dashboards in Salesforce?

    Type of chart available in dashboards are:

    • Bar Charts
    • Column Charts
    • Line Charts
    • Pie Charts
    • Donut Charts
    • Funnel Charts
    • Scatter Charts
  • If you want to make your component available for only record pages  then implement flexipage:availableForRecordHome.

  • Shweta

    Member
    February 3, 2020 at 1:49 pm in reply to: How many days will the Recycle Bin hold deleted data in Salesforce?

    Deleted data is only available for 15 days in recycle bin. After 15 days, they are permanently deleted from recycle bin.

  • Shweta

    Member
    February 3, 2020 at 1:46 pm in reply to: what is Cross Object Formula Field in Salesforce?

    Cross Object Formula Field : It is a formula that displays one object data in other related object by referencing data in a related record. It also works with lookup relationship. It get data from related parent objects to display on the child object. Use cross object formula field   to avoid duplicate work, duplicate data, and data inconsistency.

  • Shweta

    Member
    February 3, 2020 at 1:36 pm in reply to: What Is Report in Salesforce?

    Report : It is a list of records that meet the criteria you define. It give access to Salesforce data. Every record stored in folder.  Folder can be public, hidden, shared, and can be set to read-only or read/write.

    Type of report formats :

    • Tabular Report : Use this format when you want a simple list .
    • Summary Report : It provide a listing of data with groupings and sub totals.
    • Matrix Report : It allow you to group records both by row and by column.
    • Joined Report : Use this report to group and show data from multiple report types in different views.
  • Shweta

    Member
    January 31, 2020 at 1:39 pm in reply to: Is Lightning Components build on the MVC pattern in Salesforce?

    No, There are similarities but Lightning components is View Controller Controller Model. The main difference between the Lightning component and MVC is dual controller design. Dual controller design means when you interact with Salesforce, your components will have a server-side controller in addition to the client-side controller.

     

  • Shweta

    Member
    January 31, 2020 at 1:31 pm in reply to: What is CRUD permission in profile in Salesforce?

    CRUD ( Create Read Update Delete) : Object-level security within the salesforce environment is referred as CRUD. It can be used to restrict the actions that users can take on each type of standard and custom object.

  • Custom domain is required for use some feature in Salesforce.

    • It is used for display Lightning components in Lightning component tabs,  pages, App Builder, or lightning standalone apps.
    • It is also used for single sign-on with authentication providers and external identity providers.

     

  • Shweta

    Member
    January 30, 2020 at 2:00 pm in reply to: What is Salesforce CLI?

    Salesforce CLI  : (Command Line Interface): It simplifies development and build automation when working with the Salesforce org.

    It is used to :

    • Create and manage org.
    • Create and install packages.
    • Import and export data
    • Aggregate all the tools you need to develop with and perform commands against  Salesforce org.
    • This reply was modified 4 years, 9 months ago by  Forcetalks.
  • Shweta

    Member
    January 30, 2020 at 1:33 pm in reply to: What is force:appHostable in Salesforce Lightning?

    force:appHostable : This interface makes the component available for use as a custom tab and it doesn’t require you to add anything else to the component. It is a marker interface.

Page 23 of 24