Kirandeep
IndividualForum Replies Created
-
only way to execute a callout from a trigger is to run it asynchronously and this can be achieved by executing a method with the @future method.
-
Kirandeep
MemberFebruary 27, 2020 at 4:13 pm in reply to: What form of data return by the SOQL in Salesforce?SOQL query will always return a list of sobjects.
-
Kirandeep
MemberFebruary 25, 2020 at 5:07 pm in reply to: What do you mean by callout in Salesforce?In Salesforce a 'callout' is any https call that accesses an external URL -- some other webservice or website.
-
An HTTP callout is code that you write within Salesforce to (generally) call out to an external API over HTTP. REST and SOAP are types of APIs. So, you could make a callout to an external SOAP API or a REST API
-
Kirandeep
MemberFebruary 25, 2020 at 4:36 pm in reply to: Is it possible to call future method from apex scheduler or not in Salesforce?No,it is possible to call future method from apex scheduler .
-
Kirandeep
MemberFebruary 24, 2020 at 4:42 pm in reply to: What is the use of event.getSource() method in Salesforce Lightning Components?event.getSource() is used to retrieve the component that fired the event.
-
Kirandeep
MemberFebruary 24, 2020 at 4:32 pm in reply to: Can we call a batch class from another batch class in Salesforce?Yes,we can call a batch class from another batch class in finish method .
-
Kirandeep
MemberFebruary 21, 2020 at 3:13 pm in reply to: What is the use of size() in map in Salesforce?Hi Pooja,
size() is a pre defined function in map class which returns the number of key-value pairs in the map.
-
Kirandeep
MemberFebruary 21, 2020 at 3:07 pm in reply to: What are the various types of integration in Salesforce ?Hi Aditya,
- UI integration
- Business Logic Integration
- Data integration.
-
Kirandeep
MemberFebruary 21, 2020 at 3:05 pm in reply to: What is the use of values() in map in Salesforce?Values() is a predefined method in map class which return list which contains all the values in the map.
-
Kirandeep
MemberFebruary 20, 2020 at 11:52 am in reply to: How many Roll-Up Summary Fields can be created in an Object in Salesforce?Hi Ratnesh,
You can add 25 roll-up summary fields per objects in salesforce.
-
Kirandeep
MemberFebruary 20, 2020 at 11:49 am in reply to: Can we convert Master Detail to Lookup in Salesforce?Hi Ratnesh,
We can convert Master Detail to Lookup Relationship if no roll-up summary fields exist on the master object.
-
Kirandeep
MemberFebruary 20, 2020 at 11:46 am in reply to: What are the different methods in date class in Salesforce?Hi Aditya,
List of Methods in date Class :-
- addDays(additionalDays)
- addMonths(additionalMonths)
- addYears(additionalYears)
- day()
- dayOfYear()
- daysBetween(secondDate)
- daysInMonth(year, month)
- isLeapYear(year)
- format()
-
Kirandeep
MemberFebruary 19, 2020 at 5:28 pm in reply to: What is the use of a Junction Object in Salesforce?Hi Pooja,
Junction Object is custom Objects and acts a mediator or link two Objects.
- This reply was modified 4 years, 9 months ago by Forcetalks.
-
Kirandeep
MemberFebruary 19, 2020 at 5:24 pm in reply to: What are the types of Workflow in Salesforce?Hi Pooja,
Types of Workflow in Salesforce :-
- Immediate Workflow rule.
- Time Dependent Workflow rule.
-
Hi Shweta,
Trigger factory is a pattern of writing trigger with best practices like One trigger per Object,Context-Specific Handler Methods etc.
-
Kirandeep
MemberFebruary 18, 2020 at 3:34 pm in reply to: What will happen if the Account is deleted in Salesforce?If the Account will deleted then Contact will also get deleted.
-
DeepClone is a predefined function which clone(duplicate copy) the list of object and doesn’t have any reference.
-
Kirandeep
MemberFebruary 18, 2020 at 3:05 pm in reply to: What are the benefits of creating Test Class in SalesForce?Hi Marziya,
Test class gives the code coverage which means that which percentage the code works.Basically we find the bugs through test class and fix it to give better output.
-
A tab is used to expose an object and its data to the end user through the web interface
-
Kirandeep
MemberFebruary 17, 2020 at 4:15 pm in reply to: Can we call Future method from another future method in Salesforce?Hi Aditya,
Future method cannot be called from another future method.
-
Kirandeep
MemberFebruary 17, 2020 at 3:55 pm in reply to: What is the need of future method in Salesforce?Hi Aditya,
- Handles the Mixed DML operation
- Provide the ability to make long running callout from Trigger.
- Run in its own thread.
-
Kirandeep
MemberFebruary 14, 2020 at 1:45 pm in reply to: What is the return type of Future method in Salesforce?Hi shweta,
future method should have void as return type .
-
Hi Anjali,
Action region component only defines which components the server processes during a request—it doesn’t define what areas of the page are re-rendered when the request completes.
-
Hi Anjali ,
ViewState holds state of the visualforce page that holds state that includes the fields, components and controller state.