Pooja
IndividualForum Replies Created
-
A trigger is called again and again than it is called a recursive trigger.
To avoid recursive triggers we can create a class with a static Boolean variable with default value true. -
getter method will return a value to a visualforce page whenever a name variable is called.
Setter method will take the value from the visualforce page and stores to the Apex variable name. -
Pooja
MemberMay 22, 2020 at 3:26 pm in reply to: Is there any limit on how many component to have in one Application?There is a 10,000 inner component limit.
-
Pooja
MemberMay 22, 2020 at 3:25 pm in reply to: What is the use of lightning:checkboxGroup in Salesforce lightning?A lightning:checkboxGroup component represents a checkbox group that enables selection of single or multiple options. If the required attribute is set to true , at least one checkbox must be selected.
-
Pooja
MemberMay 21, 2020 at 8:01 am in reply to: What are the Best Practices of Creating Contact Sharing Rules in Salesforce?As a best practice, keep the number of ownership-based sharing rules to 100 per object, and keep the number of criteria-sharing rules to 50 per object.
-
Pooja
MemberMay 21, 2020 at 8:00 am in reply to: How can we push or pull code from scratch org in Salesforce?You can use force:source:push for scratch orgs only. If you're synchronizing source to another org, use the Metadata API.
-
Pooja
MemberMay 21, 2020 at 8:00 am in reply to: What is a capability of a StandardSetController in Salesforce?StandardSetController objects allow you to create list controllers provided by Salesforce.
-
Pooja
MemberMay 20, 2020 at 3:57 pm in reply to: Can we include one lightning component to another?Yes , you can include it.
-
Pooja
MemberMay 20, 2020 at 3:56 pm in reply to: How to retrieve data from multiple Objects in one query ?SELECT (SELECT Obj1__r.Name FROM Junction1__r),
(SELECT Obj3__r.Name FROM Junction2__r),
Name
FROM Obj2__c -
Pooja
MemberMay 20, 2020 at 3:55 pm in reply to: When should we use Component event and application events in Salesforce?Component Event can be used by same component or component in containment hierarchy. Use Application events only if components are present in 2 different app or are not in containment hierarchy
-
Lookup relationships can be one-to-one or one-to-many. The Account to Contact relationship is one-to-many because a single account can have many related contacts
-
Pooja
MemberMay 19, 2020 at 2:49 pm in reply to: What is the use of lightning: tree component in Salesforce?A lightning:tree component displays the visualization of a structural hierarchy, such as a sitemap for a website or a role hierarchy in an organization.
-
A recall action occurs when a submitted approval request is recalled. By default, the record is unlocked. Record locking prevents users from editing a record, regardless of field-level security or sharing settings.
-
It is an instant computing infrastructure, provisioned and managed over the internet.
-
All the validations we build ( using validation rules/ VF page ) are the custom validations.
-
Pooja
MemberMay 18, 2020 at 2:47 pm in reply to: What is the difference between Person Account and Business Account in SalesforceSalesforce accounts are business accounts which stores companies/organization information.
Person accounts are used to store information about individual consumers. -
Pooja
MemberMay 15, 2020 at 5:29 pm in reply to: Importance and purpose of triggerDispatcher in Salesforce?There are following importance-
1) The trigger dispatcher classes contains the methods to handle the trigger events.
2) This is the place where the developers had to instantiate the appropriate trigger event handler classes. -
Pooja
MemberMay 15, 2020 at 5:26 pm in reply to: What is a benefit of using a trigger framework Salesforce?The benefits of using a trigger framework is as follows-
1 ) Removing trigger logic from the trigger makes unit testing and maintenance much easier.
2) Standardising triggers means all of your triggers work in a consistent way.
3) A single trigger per object gives full control over order of execution. -
Pooja
MemberMay 15, 2020 at 5:24 pm in reply to: How to delete the whole records of the Acoounts from Salesforce?By applying these steps you can delete the whole records-
Enter Mass Delete Records in the Quick Find box,
Select Mass Delete Records and click the link for the type of record to delete.
Review the information that is deleted with the records.
Specify conditions that the selected items must match, for example, “State equals Ghaziabad.” -
Salesforce provides three layers of security with lots of flexibility to accommodate virtually any business need. Profiles controls object-level and field-level access. Permission sets are used to provide access to additional objects. Field-level security controls provide access to individual fields within an object.
-
Yes, Activity is a standard object in Salesforce.
-
Lightning includes the Lightning Component Framework and some exciting tools for developers.
-
To roll out the new domain name to your org, from Setup, enter My Domain in the Quick Find box, select My Domain, and then select Deploy to Users. The domain is activated immediately, and your users are redirected to pages with the new domain.
-
Select Tools | Query Builder | Query Builder.
Drag tables (Salesforce objects) from the Object Explorer to the Diagram pane. Existing relationships display.
Note: You cannot create new relationships when building a Salesforce SOQL query.
If a pair of tables (objects) has more than one relationship, choose one relationship and remove the others.
To add additional existing relationships, add multiple instances of a table.
To restore a dropped relationship between tables, right-click the child table and select Restore FK.
Select the columns (Salesforce fields) you want to add to the query. For more information, see Build Queries Visually.
To use a SOQL date range function, select a date column and click in the Where field for that column. Then select a date range from the Date Range tab of the Where Condition dialog.
Click Execute SQL to run the query. -
It takes every single Apex test that you or anyone else has created and running it twice.