Pooja
IndividualForum Replies Created
-
A permission set is a collection of settings and permissions that give users access to various tools and functions.
-
Use sharing rules to extend access beyond the role hierarchy structure.
-
Pooja
MemberJune 4, 2020 at 3:11 pm in reply to: How to avoid mixed_DML_operation error in test class in Salesforce?Use @future to Bypass the Mixed DML Error in a Test Method
Mixed DML operations within a single transaction aren't allowed. You can't perform DML on a setup sObject and another sObject in the same transaction. -
Pooja
MemberJune 4, 2020 at 3:11 pm in reply to: How will you retrieve the name of the button that fired the event?To retrieve the name of the button that fired the event, use event. getSource(). get("v.name") .
-
Lightning Data Service is a centralized data caching framework which is used to load, save, create and delete a record without server-side apex code. It supports the sharing rules and field-level security as well.
-
Because Future methods can be accessed from any class and not depend on any class instance.
-
The Stack Tree panel displays two tree views that show information “top down”—from initiating calls to the next level down—so that you can see the hierarchy of items in a process.
-
Pooja
MemberJune 3, 2020 at 7:45 am in reply to: Which standard chart types can be placed on a Salesforce dashboard?Bar charts, Column charts, Line charts, Pie Charts, Donut charts, Funnel charts.
-
The Execution Stack panel displays a “bottom-up” view of the currently selected item in the debug log.
-
It Consists of the time when the event occurred and a value between parentheses. ... event identifier : Specifies the event that triggered the debug log entry (such as SAVEPOINT_RESET or VALIDATION_RULE ).
-
Pooja
MemberJune 2, 2020 at 2:46 pm in reply to: What is meant by @InvocableMethod in Apex class in Salesforce?Invocable methods are called with REST API and used to invoke a single Apex method.
-
Pooja
MemberJune 1, 2020 at 1:56 pm in reply to: Can you have a Roll-up Summary field in the case of a Master–Detail RelationshipYes you can implement it
-
Pooja
MemberJune 1, 2020 at 1:55 pm in reply to: What happens when you deactivate a user in Salesforce?Deactivating a user in Salesforce means that user will not be deleted from the system but will no longer be able to log in to Salesforce and their records can be transferred to another user.
-
Pooja
MemberJune 1, 2020 at 1:53 pm in reply to: Can you name three types of object relationships available in Salesforce?1) Master-detail relationship.
2) Lookup relationship.
3) Many-to-many. -
Pooja
MemberMay 31, 2020 at 2:10 pm in reply to: insertImmediate(sobjects) method of Database class in Salesforce ?The requests are executed synchronously and are sent to the external systems that are defined by the external objects' associated external data sources.
-
Click Add Chart in report builder. For existing charts, click Edit Chart.
Select a chart type.
Enter the appropriate settings on the Chart Data tab for the chart type you selected.
Enter the appropriate settings on the Formatting tab.
Click OK -
Pooja
MemberMay 31, 2020 at 2:08 pm in reply to: What is the use of slds-scrollable--y class in Salesforce?The scrollable utility is used when you need to provide scrolling within a section of a page.
-
Visualforce components are small, reusable pieces of functionality—think widgets, panels, user interface elements.
-
It can't be possible.
-
Pooja
MemberMay 28, 2020 at 5:46 pm in reply to: How can we access Installed Packages in Salesforce?To access the package detail page, from Setup, enter Installed Packages in the Quick Find box, select Installed Packages, and then click the name of the package that you want to view.
-
Pooja
MemberMay 27, 2020 at 3:57 pm in reply to: How to get current record id in the Salesforce lightning component?To get current record id in lightning component(aura component), we had to implement force:hasRecordId to get record id in lightning aura component. But in lightning we component its very simple, we only need to use recordId property with @api decorator.
-
Future methods are used to run the process in a separate thread, at later time when system resources are available.
-
Pooja
MemberMay 27, 2020 at 3:55 pm in reply to: Can we include external JavaScript/CSS libraries in components?Yes, We can include it.
-
Workbench is a web-based tool which helps administrators and developers to interact with Salesforce for Data Insert, Update, Upsert, Delete and Export.
-
A trigger is a stored procedure in database which automatically invokes whenever a special event in the database occurs.