Forum Replies Created

Page 9 of 10
  • Manish

    Member
    February 20, 2020 at 3:12 pm in reply to: What is the use of select tags in Salesforce?

    A lightning:select component creates an HTML select element. This component uses HTML option elements to create options in the dropdown list, enabling you to select a single option from the list

  • Manish

    Member
    February 20, 2020 at 1:59 pm in reply to: Can we convert Master Detail to Lookup in Salesforce?

    Yes, We can Convert Master Detail Relationship into Lookup.

  • Returns the status of an asynchronous insert or update operation based on the unique identifier associated with each modification.

  • Manish

    Member
    February 20, 2020 at 1:54 pm in reply to: What is the role of Utility Methods in Salesforce ?

    Utility Classes are helper classes that are reused for further use.

  • Manish

    Member
    February 4, 2020 at 10:03 am in reply to: What Is Dashboard Salesforce?

     

    Hi Sumit,

    A dashboard is a visual display of key metrics and trends for records in your org.

  • Manish

    Member
    February 4, 2020 at 10:01 am in reply to: What Are Different Chart Types Available For Dashboards in Salesforce?

    Hi Sumit

    Please find chart types salesforce Dashboards:

    Bar Charts
    Column Charts

    Line Charts

    Pie Charts

    Donut Charts

    Funnel Charts

    Scatter Charts

  • Manish

    Member
    February 4, 2020 at 6:53 am in reply to: What is a Tabular report Salesforce ?

    Hi Sumit,

     

    Tabular reports are the simplest and fastest way to look at data. Similar to a spreadsheet, they consist simply of an ordered set of fields in columns, with each matching record listed in a row. Tabular reports are best for creating lists of records or a list with a single grand total. They can't be used to create groups of data or charts, and can't be used in dashboards unless rows are limited. Examples include contact mailing lists and activity reports.

  • Manish

    Member
    February 3, 2020 at 9:25 am in reply to: What is an Attribute in Salesforce Lightning?

    Hi Aditya

     

    Attribute refers to the declaration on the variable as we do in apex.

     

    <aura:attribute name=”accObj” type=”Account” access=”public” default=”{‘sobjectType’: ‘Account’, ‘Name’: ”, ‘Website’: ”, ‘Phone’: ”, ‘Description’: ”, ‘Industry’: ”}” />

    • This reply was modified 4 years, 11 months ago by  Forcetalks.
  • Manish

    Member
    February 3, 2020 at 9:22 am in reply to: How to Declare attributes in lightning component of Salesforce?

    Hi Aditya,

    you can find here,

     

    <aura:attribute name="accObj" type="Account" access="public" default="{'sobjectType': 'Account', 'Name': '', 'Website': '', 'Phone': '', 'Description': '', 'Industry': ''}" />

  • Manish

    Member
    February 3, 2020 at 9:18 am in reply to: What are escalation rules in Order of Execution in Salesforce?

    Escalation rules are used to escalate cases automatically when they meet the criteria which are defined in rule entry. We create rule entries where criteria is defined to escalate a case.

  • Hi Anuj

    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 the Lightning Experience and the Salesforce mobile app.

     

    • This reply was modified 4 years, 11 months ago by  Forcetalks.
  • Hi Anuj,

     

    We can not access one Controller Method to another Controller Method, for that we need to go for Helper.js Component.

    • This reply was modified 4 years, 11 months ago by  Forcetalks.
  • Manish

    Member
    January 30, 2020 at 1:45 pm in reply to: Where we can display Salesforce Lightning Component?

    Hi Arun

     

    You can display lightning component by lightning Application

    <aura:Application>

    <c.Name of Component/>

    </aura:Application>

    • This reply was modified 4 years, 11 months ago by  Manish.
    • This reply was modified 4 years, 11 months ago by  Forcetalks.
  • Manish

    Member
    January 30, 2020 at 1:41 pm in reply to: What are Salesforce Lightning Component Bundles?

    Lightening component bundle collection of 8 parts:

    Component

    Controllar.js

    Helper.js

    Style

    Documentation

    Renderer

    Design

    Svg

     

  • Manish

    Member
    January 30, 2020 at 1:29 pm in reply to: What is attribute in Salesforce Lightning?

    Hi Ayush

    Attribute is an lightning component, and used to declare variables in same way as we declare in apex:

    Example: <aura:attribute name="accObj" type="String" description="account Object" access="public" default="{'sobjectType': 'Account', 'Name': '', 'Website': '', 'Phone': '', 'Description': '', 'Industry': ''}" />

    public static Account accObj;

  • Manish

    Member
    January 28, 2020 at 1:29 pm in reply to: What is the way to restore lost code in Salesforce Developer Console?

    No , There is no way to restore code that is not saved.

  • The purpose of having public groups is to assign things or resources to it which are meant to be seen or used by everyone in the organization. Making a data or resource to everybody in an organization may be cumbersome and time consuming but by assigning it to a public group it can be done with 1 click.

    Only Administrators can create public groups.

  • Managed packages differ from unmanaged packages by having some locked components, allowing the managed package to be upgraded later. Unmanaged packages do not include locked components and cannot be upgraded.

  • Manish

    Member
    January 28, 2020 at 8:24 am in reply to: What is OWD in Salesforce?

    Hi Aditya,

    Owd Stands for Organisation wide default, and it is used for record-level security.

    Public Read/Write/Transfer (only available of Leads and Cases)
    Public Read/Write: All users can view, edit, and report on all records(Given that they have object-level permission).
    Public Read/Only: All users can view and report on records, but only the owner, and users above that role in the hierarchy, can edit them.
    Private: Only the record owner, and users above that role in the hierarchy, can view, edit, and report on those records.

    Controlled by Parent

  • Hi Shweta

    <apex:panelBar> is used to insert headers in visualforce page.

    Example:

    <apex:page >
    <apex:panelBar >
    <apex:panelBarItem label=" Test1">Panel Bar Test1</apex:panelBarItem>
    <apex:panelBarItem label="Test2">Panel Bar Test2</apex:panelBarItem>
    <apex:panelBarItem label="Test3">Panel Bar Test3</apex:panelBarItem>
    </apex:panelBar>
    </apex:page>

  • Hi Ayush,

    Rollup summary field always created on the objects who tightly coupled (Master-Detail relationship ) to each other .It is used to calculate 4 automatic calculations on related object.

    Count

    Sum

    Min

    Max

  • Manish

    Member
    January 28, 2020 at 6:14 am in reply to: Is it possible to assign two profiles to the same user in Salesforce ?

    Hi Anjali,

    You can not provide two profiles to same User , but you can provide one profile multiple users in Salesforce.

  • Manish

    Member
    January 27, 2020 at 1:42 pm in reply to: What is the meaning of newMap and oldMap in Salesforce trigger?

    Hi Aditya

     

    Trigger.NewMap: Trigger.newMap returns map of new records which are trying to insert into Database. This is available in Before Insert, Before Update, After Insert,  After Update Triggers and undelete Triggers. This list of records can only modified in Before triggers.

     

    Trigger.OldMap: Trigger.oldMap returns map of old records which are updated with new values. These List of records already there in Database. Trigger.oldmap available in Before update, after update, Before Delete and After Delete triggers.

  • Manish

    Member
    January 27, 2020 at 1:36 pm in reply to: What is the meaning of Bulkifying Trigger in Salesforce?

    Hi Arun,

    The term bulkifying Apex code refers to the concept of making sure the code properly handles more than one record at a time. When a batch of records initiate Apex, a single instance of that Apex code is executed, but it needs to handle all of the records in that given batch. For example, a trigger could be invoked by an Force.com Web Services API call that inserted a batch of records. Or a custom Apex Web Service. So if a batch of records invokes the the same Apex code, all of those records need to be processed as a bulk, in order to write scalable code and avoid hitting governor limits.

  • Hi Arun,,

    You can write n number of triggers on single object but best practics says write once trigger with multiple events on single object.

Page 9 of 10