Ayush
Individual
@ayushsriv97gmail-com
•
Joined December 2019
Forum Replies Created
-
Ayush
MemberJanuary 23, 2020 at 1:27 pm in reply to: In Salesforce Dashboard, how many reports can be added?Maximum limit for using Reports in the Dashboard is 20 .
-
Ayush
MemberJanuary 23, 2020 at 1:13 pm in reply to: What are the best practices for designing and maintaining Global classes in Salesforce?There are two best practices :
1. Always add (empty) constructors to global classes;
2.Make method arguments generic;
-
Ayush
MemberJanuary 23, 2020 at 1:07 pm in reply to: What is Wrapper class in visualforce page in Salesforce ?Wrapper class is used to display different objects on a Visual Force page in same table.
-
Use of local variable within SOQL statement is called a bind .
-
Ayush
MemberJanuary 22, 2020 at 2:57 pm in reply to: In what order do methods fire within a controller in Salesforce?There is no guarantee of the precise order.
-
Ayush
MemberJanuary 22, 2020 at 2:23 pm in reply to: Which one is better to used DML Statements or Database Methods in Salesforce to perform data manipulation?Database method. because of database method are more flexible .
- This reply was modified 4 years, 10 months ago by Ayush.
-
Ayush
MemberJanuary 22, 2020 at 11:19 am in reply to: Can we pass sObjects in Future method as parameter?No, The object can change between the time you call the method and the time it actually executes.Because future methods are executed when system resources become available.