Aditya
IndividualForum Replies Created
-
Hi Shweta,
Trigger factory is used for avoiding bad practice in Salesforce such as multiple triggers on an object and Repetitive SOQL queries that can exceed governor limit. It is basically a pattern.
-
Aditya
MemberFebruary 20, 2020 at 6:16 am in reply to: What is the use of a Junction Object in Salesforce?Hi Pooja ,
Junction object is used to create many to many relationship.Master-Detail, the Lookup and the External Lookup relationships are supported in junction object
- This reply was modified 4 years, 9 months ago by Forcetalks.
-
merge is a DML like insert or update but this can only be executed with some Standard objects, Accounts, Contact and Leads.
This merge statement is used in order to remove duplicate records from your database.
For instance, you have 2 contacts duplicated associated to the same Account -
Aditya
MemberFebruary 18, 2020 at 4:08 pm in reply to: What will happen if the Account is deleted in Salesforce?Most accounts and their associated records can be deleted in one click - but some accounts can't be deleted until associations have been removed. This is not related from where you delete the Account: page layout, apex code, API, etc. Deleted accounts are moved to the Recycle Bin, along with these associated items.
-
Aditya
MemberFebruary 18, 2020 at 4:06 pm in reply to: How can we Query on deleted records in Salesforce ?Hi Kiran,
In search query, Select Include under Deleted and archived records.
After getting the record ID ,choose Undelete from the data drop-down at the top of the page.
Enter the Id and follow the prompts on the screen to restore the record.
-
Hi Ayush,
Tab is a user interface which is used to Build Records for the Objects to view it.
There is three types of Tabs in Salesforce:
1.Custom object tab
2.Web tab
3.Visualforce tab -
Change Data Capture publishes events for changes in Salesforce records corresponding to Create, Update, Delete, and Undelete operations. You can receive changes of Salesforce records in real time and synchronize corresponding records in an external data store
-
Aditya
MemberFebruary 17, 2020 at 4:08 pm in reply to: Difference between OnBlur & OnError in Lightning Component in Salesforce?Hi Deepak,
OnBlur: It is an event in Salesforce Lightning component. It shows Blur on performing any event.
OnError: In this component, the onerror attribute of lightning:container specifies handleError as the error handling method. To display the error, the component markup uses a conditional statement, and another attribute, error, for holding an error message
-
Aditya
MemberFebruary 14, 2020 at 3:24 pm in reply to: What is the meaning of Upsert in Salesforce?Hi Ratnesh,
UPSERT is a DML operation in Salesforce. Upsert is a combination of Update and Insert record in Salesforce Organisation
- This reply was modified 4 years, 9 months ago by Forcetalks.
-
Aditya
MemberFebruary 14, 2020 at 3:18 pm in reply to: Why do we use the response status code in the Salesforce API?Hi Pooja,
Response status code is used for error identification and to check whether a request is a success or not.
- This reply was modified 4 years, 9 months ago by Forcetalks.
-
WSDL: Web Services Description Language is an XML Document which describe a web service.
There is two type of WSDL
1.Enterprise WSDL
2.Partner WSDL -
Aditya
MemberFebruary 13, 2020 at 2:34 pm in reply to: What is setCompressed(flag) method in Salesforce Apex?Hi Sumit,
Its return Boolean values either TRUE or FALSE
TRUE: Data is delivered to endpoint in the ZIP format
FALSE: No comparasion format is used.
-
Aditya
MemberFebruary 13, 2020 at 1:37 pm in reply to: What is setHeader(key, value) method in Salesforce Apex?Hi Sumit,
To Set the content of the header which is requested
-
Aditya
MemberFebruary 13, 2020 at 1:15 pm in reply to: What is setClientCertificateName(certDevName) method in Salesforce Apex?Hi Sumit,
If the external service requires a client certificate for authentication, set the certificate name.
-
Aditya
MemberFebruary 10, 2020 at 3:10 pm in reply to: How many template options available when creating a new apex class in Salesforce?Performance, Unlimited, Developer, and Enterprise Editions
An Apex class is a template or blueprint from which Apex objects are created. Classes consist of other classes, user-defined methods, variables, exception types, and static initialization code. Once successfully saved, class methods or variables can be invoked by other Apex code, or through the SOAP API (or AJAX Toolkit) for methods that have been designated with the webService keyword.
-
Aditya
MemberFebruary 10, 2020 at 2:06 pm in reply to: How can you expose an apex class as a REST webService in Salesforce?6MB:
The Salesforce Heap size truly depends on the type of transaction, Salesforce provides a heap size limit of 6MB for synchronous transaction
12MB:
for asynchronous transaction. Whenever, too much data is stored during processing an error occurs prompting Apex heap size too large.
-
Aditya
MemberFebruary 4, 2020 at 8:22 am in reply to: Can We Create A Formula Type In Reports Salesforce?Hi Sumit,
Yes, Formula are not available in tabular reports but available for other report types.
Formula can be only in number, currency and percent format.
-
Hi Sumit,
Bucketing lets you quickly categorize report records without creating a formula or a custom field. For example, create a bucket field named Size based on the # Employees field. Then, create buckets that group records into “Large,” “Medium,” or “Small” ranges that you define. Bucket fields can be used like any other field to sort, filter, and group your report.
- This reply was modified 4 years, 9 months ago by Aditya.
-
Aditya
MemberFebruary 4, 2020 at 8:16 am in reply to: What All Reports Can Be Used To Generate Dashboards Salesforce?Hi Sumit,
No, Only Summary and Matrix reports can be used to generate Dashboards
-
Dependent picklist is used for controlling the field or multi-select picklist for which the valid values depend on the value of another field, called the controlling field
-
Hi Pooja,
A key feature of Solutions called Suggested Solutions can help to cut costs by reducing case resolution times and enabling self‐service for your customers via your Self‐Service Portal, Customer Portal, or Customer Community. In order to leverage Suggested Solutions, you must ensure that your organization can do so.
-
Aditya
MemberFebruary 3, 2020 at 10:31 am in reply to: How many types of Events available in Salesforce Lightning?There is two types of events:
Component Events: It is handled by the component itself or contains the components.
Application Events: It is handled by the all component that are listening to the events
-
An assignment rule dictates to whom a lead or case is assigned based on criteria that is specified within Salesforce. Typically, your organization will have one rule for each overall purpose.
-
Hi Manish,
The methods which are used in conjunction with HTTP callout parse XML data or skip unused events.
Example:
String xmlStrgs= '<pen><pen>My pen</pen><pen>Your pen</pen></pen>';
XmlStreamReader xsr = new XmlStreamReader(xmlStrgs); -
Aditya
MemberJanuary 31, 2020 at 11:29 am in reply to: What is the use of Renderer in Salesforce Aura Component Bundle?Hi Udit,
Component bundle contains a component of all its related resources. such as Documentation, Style, Helper, Controller, Components, and Event handler.
- This reply was modified 4 years, 9 months ago by Aditya.
- This reply was modified 4 years, 9 months ago by Forcetalks.