Ayush
IndividualForum Replies Created
-
Objects are database tables that allow us to store data specific to the organization in salesforce
-
Ayush
MemberApril 3, 2020 at 1:55 pm in reply to: What is Test.startTest() and Test.stopTest()? When you will use it?reset the governor limits.
-
Database. QueryLocator : when used the governor limit for the total number of records retrieved by SOQL queries is bypassed.
-
Dynamic SOQL and SOSL queries provide the ability to execute SOQL or SOSL as a string at runtime, while dynamic DML provides the ability to create a recorddynamically and then insert it into the database using DML.
-
Ayush
MemberFebruary 18, 2020 at 2:33 pm in reply to: Why we prefer one trigger per object in Salesforce?Hii Anjali,
Best practice is not necessary "one trigger per object". It is one trigger per event and per object. An event is anything like before insert, before update, after insert....
You cannot update trigger code from an installed managed package. In this situation, you need to have your own trigger even if the package has already its own trigger on the same object and same event. -
A tab is like a user interface that is used to build records for objects and to view the records in the objects
-
A report is a list of records that meet the criteria you define. It’s displayed in Salesforce in rows and columns, and can be filtered, grouped, or displayed in a graphical chart.
-
Ayush
MemberFebruary 3, 2020 at 1:31 pm in reply to: When we erase a field from page layout, does it get erased from the object in Salesforce?No.
-
Ayush
MemberJanuary 31, 2020 at 2:07 pm in reply to: Why do we need to have a Custom Domain in the Salesforce Lightning Component?It is also used for SSO, with authentication providers and external identity providers.
-
Ayush
MemberJanuary 31, 2020 at 1:58 pm in reply to: Is it possible to change Grant Access using role hierarchy for standard objects in Salesforce?No, Grant access using hierarchies is by default active for standard objects.
-
Ayush
MemberJanuary 30, 2020 at 1:31 pm in reply to: What is the use of aura:iteration tag in Salesforce Lightning Aura Component?aura:iteration iterates over a collection of items and renders the body of the tag for each item.
- This reply was modified 4 years, 9 months ago by Forcetalks.
-
Ayush
MemberJanuary 30, 2020 at 1:25 pm in reply to: What is the Difference between Roles and Profiles in Salesforce?In Salesforce role defines record level access of the user. Profile is mandatory for every user in salesforce. You cannot have a user without a profile
-
Ayush
MemberJanuary 30, 2020 at 1:08 pm in reply to: Is Lightning Server Side or Client-Side stateful in Salesforce?Lightning Component framework uses a client -side stateful.
-
Ayush
MemberJanuary 29, 2020 at 6:48 pm in reply to: What is the use of @AuraEnabled annotation in Salesforce Apex?This annotation exposes an apex method to the Aura framework for use in lightning components.
-
Ayush
MemberJanuary 29, 2020 at 6:46 pm in reply to: What is an Inline Salesforce Visualforce Page?An inline visualforce page is a vf page which can be embedded within a detail page of a record. Salesforce allows doing so, in the edit page layout option.
-
Ayush
MemberJanuary 29, 2020 at 6:39 pm in reply to: Is Opportunity is a Child Of Contact in Salesforce?No, There is no direct relationship between opportunity and account.
-
Ayush
MemberJanuary 28, 2020 at 2:02 pm in reply to: What is the way to restore lost code in Salesforce Developer Console?There is no way to restore code that is not saved.
-
Ayush
MemberJanuary 28, 2020 at 1:28 pm in reply to: What is a Data Type and What are the different Data Types are available in Salesforce Apex?Following types of data types are used in Salesforce.
ID
String
Boolean
Double
Varies by type -
Single sign-on (SSO) users access authorized network resources with one login.
-
A handler is basically a message queue. You post a message to it, and it will eventually process it by calling its run method and passing the message to it. Since these run calls will always occur in the order of messages received on the same thread, it allows you to serialize events
-
Ayush
MemberJanuary 27, 2020 at 4:54 pm in reply to: Why there is a need for Salesforce Custom Objects?They provide a structure for sharing data. build your own custom objects to satisfy specific business needs.
-
Ayush
MemberJanuary 27, 2020 at 4:37 pm in reply to: What are the limitations of FUTURE METHOD in Salesforce?Future methods can’t take objects as arguments.
Future methods won’t necessarily execute in the same order they are called -
SOSL statement evaluates the list of sObjects, where each list contains the search results for a particular sobject type, The result lists are always returned in the same order as they were specified in the query.
-
Doubles click on a field, and Edit name and value of the respective field .
-
Ayush
MemberJanuary 24, 2020 at 2:38 pm in reply to: What is the difference between insert() and database .insert() in Salesforce?Using the insert method we can insert the records but if any error occurs in any record system will throw an error insertion fail and none of the records are inserted. If we want to execute partially success of bulk insert operation we will use database .insert.