Kirandeep
IndividualForum Replies Created
-
Kirandeep
MemberJuly 22, 2020 at 3:06 PM in reply to: Can we say that Lightning Component is based on MVC architecture?Though the Lightning Component framework adopts the MVC paradigm, it is a true component-based framework first.
-
Kirandeep
MemberJuly 22, 2020 at 3:04 PM in reply to: Which exception type Cannot be caught in Salesforce?Limit exception ( System. LimitException ) that the runtime throws if a governor limit has been exceeded, such as when the maximum number of SOQL queries issued has been exceeded.
-
Kirandeep
MemberJuly 22, 2020 at 2:56 PM in reply to: Which two components are available to deploy using the Metadata API?a.) Lead conversion settingsb.) Case Settings
-
Kirandeep
MemberJuly 21, 2020 at 12:57 PM in reply to: What is database getQueryLocator in Salesforce?database. getQueryLocator in Salesforce returns a Query Locator that runs your selected SOQL query returning list that can be iterated over in batch apex
-
Kirandeep
MemberJuly 21, 2020 at 12:51 PM in reply to: What is the use of virtual keyword for a class in Salesforce?If you use the 'virtual' keyword, then it indicates that this class can be extended and overrides are allowed. If the methods need to be overridden, then the classes should be declared with the virtual keyword.
-
A controller extension is an Apex class that extends the functionality of a standard or custom controller. Use controller extensions when: You want to leverage the built-in functionality of a standard controller but override one or more actions, such as edit, view, save, or delete. You want to add new actions.
-
Kirandeep
MemberJuly 20, 2020 at 2:58 PM in reply to: What is difference between virtual class and abstract class?virtual classes permits subclassing and method overriding. However, a virtual class does implement functionality itself and can be instantiated and used directly. Conversely, abstract classes must be subclassed and have methods overridden to provide functionality.
-
A PushTopic is an sObject that contains the criteria of events you want to listen to, such as data changes for a particular object. You define the criteria as a SOQL query in the PushTopic and specify the record operations to notify on (create, update, delete, and undelete).
-
Streaming API lets you push a stream of notifications from Salesforce to client apps based on criteria that you define
-
Kirandeep
MemberJuly 17, 2020 at 12:30 PM in reply to: How do I create multiple users in Salesforce?Hi Marziya ,
You can refer the link below :-
https://help.salesforce.com/articleView?id=users_adding_multiple.htm&language=en&r=https:%2F%2Fwww.google.com%2F&type=5 -
To add users: From Setup, enter Users in the Quick Find box, then select Users. Click New User to add a single user or click Add Multiple Users to add up to 10 users at a time. Enter each user's name, email address, and a unique username in the form of an email address.
-
Kirandeep
MemberJuly 17, 2020 at 12:27 PM in reply to: Difference Between Component.get() And Component.find() in Salesforce Lightningget() method to access the data from respective component(UI). The find() function has one parameter, which is the local ID of a component within the markup. find() returns different types depending on the result. If the local ID is unique, find() returns the component
-
Kirandeep
MemberJuly 16, 2020 at 3:48 PM in reply to: What is the benefit of using @isTestSetup instead of @isTest in Salesforce@testSetup annotation are used for creating common test records that are available for all test methods in the class. main benefit is code reusablility.
-
Kirandeep
MemberJuly 16, 2020 at 3:46 PM in reply to: What is the maximum length of character to create a apex class100,000 chars per class, and 1MB total for all classes.
-
Kirandeep
MemberJuly 16, 2020 at 1:04 PM in reply to: Convert javascript object into string in lightning component?Use the JavaScript function JSON. stringify() to convert it into a string. var myJSON = JSON. stringify(obj);
-
Kirandeep
MemberJuly 15, 2020 at 4:45 PM in reply to: What are the possible ways to integrate with Salesforce?You can refer the link below :-
https://www.forcetalks.com/salesforce-topic/what-are-possible-ways-to-integrate-with-salesforce-force-com/ -
Kirandeep
MemberJuly 15, 2020 at 4:44 PM in reply to: What are the types of custom settings in Salesforce?There are two types of custom Setting :-
List Custom Setting and Hierarchy Custom Setting -
Kirandeep
MemberJuly 15, 2020 at 4:31 PM in reply to: What is the difference between enterprise WSDL and partner WSDL?Enterprise WSDL
-The Enterprise WSDL is strongly typed, which means that it contains objects and fields with specific data types, such as int and string.
-The Enterprise WSDL document is for customers who want to build an integration with their Salesforce organization only.
-Customers who use the enterprise WSDL document must download and re-consume it whenever their organization makes a change to its custom objects or fields or whenever they want to use a different version of the API.Partner WSDL:
-The Partner WSDL is loosely typed, which means that you work with name-value pairs of field names and values instead of specific data types.
-This WSDL document is for customers, partners, and ISVs who want to build an integration that can work across multiple Salesforce organizations, regardless of their custom objects or fields.
-The Partner WSDL is static, and hence does not change if modifications are made to an organization’s Salesforce configuration. -
Kirandeep
MemberJuly 14, 2020 at 3:53 PM in reply to: What are the benefits of the Salesforce Marketing Cloud?-Create a customized and targeted customer journey.
-Understand your consumer-base better.
-Correctly engage your audience during every important customer touchpoint.
-Create targeted CTAs (calls-to-action) .
-Power your efforts with data (analytics) .
-Deliver cross-channel and cross-functional marketing campaigns. -
We can override existing functionality
– We can create new functionality.
– We can customize navigation.
– We can use HTTP callouts & Web Services
– We can have control for how information is accessed on the page. -
Kirandeep
MemberJuly 14, 2020 at 3:28 PM in reply to: Which field types could be used in roll up summary fields?Number, currency, and percent fields
-
Kirandeep
MemberJuly 13, 2020 at 2:49 PM in reply to: How to get fields API name using Schema class?Get a list of API Names of all Fields for an Object.
Schema.DescribeSObjectResult r =Object__c.sObjectType.getDescribe();
List<String>apiNames = new list<String>();
for(Schema.DescribeSObjectResult result : r){
apiNames. add(); //this is where I am lost.
} -
Kirandeep
MemberJuly 13, 2020 at 2:47 PM in reply to: What is screen in Flow Builder in Salesforce?Screen Flows – as the name suggests includes screen element to gather information from a user, this means that the flow type requires a user interaction. This type of flow can be accessed in a number of places: custom button; custom link; direct URL, Visualforce Page, or Salesforce app action
-
Kirandeep
MemberJuly 13, 2020 at 1:57 PM in reply to: How to cover the multiple catch blocks in test class of Salesforce?Hi Aditya ,
You can refer the link below
https://developer.salesforce.com/forums/?id=9060G000000UY64QAG -
Kirandeep
MemberJuly 10, 2020 at 4:03 PM in reply to: Can a trigger make a call to Apex callout method in Salesforce?Callout from triggers are currently not supported. As a workaround you can invoke callouts from triggers by encapsulating the callouts in @future methods.