Manish
IndividualForum Replies Created
-
Manish
MemberFebruary 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
MemberFebruary 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.
-
Manish
MemberFebruary 20, 2020 at 1:58 pm in reply to: What is the role of getAsyncSaveResult(asyncLocator) Database method in Salesforce ?Returns the status of an asynchronous insert or update operation based on the unique identifier associated with each modification.
-
Manish
MemberFebruary 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.
-
Hi Sumit,
A dashboard is a visual display of key metrics and trends for records in your org.
-
Manish
MemberFebruary 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 ChartsLine Charts
Pie Charts
Donut Charts
Funnel Charts
Scatter Charts
-
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
MemberFebruary 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
MemberFebruary 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
MemberFebruary 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.
-
Manish
MemberJanuary 31, 2020 at 12:08 pm in reply to: Which interface helps us to show the Component in Salesforce Lightning Tabs?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.
-
Manish
MemberJanuary 31, 2020 at 12:04 pm in reply to: Can we access one Javascript Controller Method on another Controller Method in Salesforce Lightning Component?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
MemberJanuary 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
MemberJanuary 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
-
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
MemberJanuary 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.
-
Manish
MemberJanuary 28, 2020 at 1:25 pm in reply to: What are the public groups and who can create public groups in Salesforce ?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.
-
Manish
MemberJanuary 28, 2020 at 1:21 pm in reply to: What is the difference between Managed and Unmanaged Package in Salesforce?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.
-
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
-
Manish
MemberJanuary 28, 2020 at 6:28 am in reply to: What is the use of <apex:panelBar> and <apex:panelBarItem> tags in Salesforce?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> -
Manish
MemberJanuary 28, 2020 at 6:23 am in reply to: What is the use of a Roll-Up Summary Field and where it can be used in Salesforce?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
MemberJanuary 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
MemberJanuary 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
MemberJanuary 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.
-
Manish
MemberJanuary 27, 2020 at 1:34 pm in reply to: Is there any limit on the number of triggers defined on an Object in Salesforce?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.