Ayush
IndividualForum Replies Created
-
Apex Metadata API to add your new field to the page layouts in all your orgs directly from Apex.
-
Activity is a standard object in Salesforce.
-
There are 3 types of Salesforce.com Portals.
-
Ayush
MemberMay 11, 2020 at 5:58 am in reply to: How we can Convert String containing date time to a DateTime in APEXHelp of this function valueOf(dateTimeString)
-
A "Connected App" is an application that can connect to salesforce over Identity and Data APIs
-
Ayush
MemberMay 8, 2020 at 1:18 pm in reply to: How to resolve "Invalid api version:0.0" Error in Salesforce Apex Batch Class?follow these steps
select all
copy
close file (yes to close without saving)
open file again
paste and save. -
Ayush
MemberMay 7, 2020 at 11:44 am in reply to: What is the use of finish method in batch apex class in Salesforce?The finish method is called after all batches are processed. used to send emails or execute post-processing operations.
-
A sObject Token is mainly used when we are not sure about the SObject we are using, We can call the getSObjectType() to get the token for a particular SObject using which we can refer that SObject.
-
Ayush
MemberMay 6, 2020 at 10:20 am in reply to: How to check whether an ArrayList is empty or not in Apex in Salesforce?the isEmpty() method, it check the size of arraylist to determine if the list is empty or not
-
Ayush
MemberMay 6, 2020 at 10:16 am in reply to: Can we call a future method from future method in Apex in Salesforce?You cannot call a method annotated with future from a method that also has the future annotation.
-
Migration Tool is used to retrieve metadata from an org in simple file formats
-
Ayush
MemberMay 5, 2020 at 6:58 am in reply to: What is hierarchy type custom settings in Salesforce?A type of custom setting that uses a built-in hierarchical logic that lets you “personalize” settings for specific profiles or users.
-
Ayush
MemberMay 5, 2020 at 6:47 am in reply to: What is the benefit of using list custom settings in Salesforce?It provides a set of static data that can be accessed across your organization. list custom settings, we can access that data without writing SOQL.
-
5,000 users
-
Field update is one of the workflow actions available in Salesforce. Field update actions let you automatically update field values
-
Custom labels are custom text values that can be accessed from Apex classes, Visualforce pages, or Lightning components.
-
Trigger.oldmap available in Before update, after update, Before Delete and After Delete triggers.
Trigger.newMap This is available in Before Insert, Before Update, After Insert, After Update Triggers and undelete . -
Ayush
MemberApril 30, 2020 at 8:19 am in reply to: What is Maximum length of SOQL statements in Salesforce?It is 20,000 characters
-
Ayush
MemberApril 30, 2020 at 8:16 am in reply to: How many custom labels can you define in Salesforce?create up to 5,000 custom labels for your organization
-
works for the old values that are already in the Fields, it may be to Delete or Update the records
-
Trigger.New is context Variables which returns records in List.
-
Ayush
MemberApril 29, 2020 at 9:39 am in reply to: What is the feature of Lightning Bolt in Salesforce?Lightning Bolt Solutions are the packages of different solutions bundled in one package.
-
An Apex transaction which represents a collection of operations that are retrieved as a single unit. All DML operations in a transaction either complete successfully or if an error occurs in one operation,
-
Apex allows developers to access Salesforce.com's back-end database and client-server interfaces to create third-party SaaS applications.
-
The test data set is kept in the external files or resources such as MS Excel Sheets, MS Access Tables, SQL Database, XML files etc., The test scripts connect to the external resources to get the test data.