Pooja
IndividualForum Replies Created
-
The response header contains an HTTP status code. If the response isn’t successful, the response body contains an error message, and if appropriate, information about the field or object where the error occurred.
200
Success with GET, PATCH, or HEAD request
201
Success with POST request
204
Success with DELETE
400
The request could not be understood, usually because the ID is not valid for the particular resource. For example, if you use a userId where a groupId is required, the request returns 400. -
Pooja
MemberMarch 6, 2020 at 1:33 pm in reply to: Is the following TRUE or FALSE for Salesforce? (See description)It is true to Delete A Note Or Attachment,You Must be the owner of the note or attachment or an Administrator with the”Modify All Data Permission”.
-
Pooja
MemberMarch 6, 2020 at 1:32 pm in reply to: What is Lightning Data Service in Lightning Component in Salesforce ?Lightning Data Service is a centralized data caching framework which is used to load, save, create and delete a record without server-side apex code. It supports the sharing rules and field-level security as well. Lightning Data Service improves performance by eliminating the multiple SOQL query call for a single record from the multiple instances. Instead, components share a single copy of the record data by saving the record with its update state in the cache and eliminate refreshing the component when a record is updated. If a user gets disconnected from the network, it allows him to work in offline with data. Data status gets updated once the network connection gets restored.
-
Pooja
MemberMarch 4, 2020 at 4:09 pm in reply to: Can we change the name of standard object in Salesforce?Yes, we can change the standard objects name in Salesforce.
-
Pooja
MemberMarch 4, 2020 at 3:11 pm in reply to: What is the key benefit of Knowledge articles in Salesforce?The key benefit of Knowledge articles is that it automatically suggests useful information to agents based on each case's details.
-
JSON design and the deserialization of serialized JSON content. It contains strategies used to serialize objects into JSON content utilizing the standard JSON encoding.It contains methods for serializing Apex objects into JSON format and deserializing JSON content that was serialized using the serialize method in this class. JSON has a smaller footprint than XML, which means it can be transmitted and parsed faster than XML.
-
Custom Metadata Type let you use records to configure your app without worrying about migrating those records to other orgs.
-
Pooja
MemberMarch 2, 2020 at 2:57 pm in reply to: What is rerender in Salesforce Lightning Component?It allows the component to update themselves, when other component updates since they were last rendered. It doesn’t return any value. It automatically called when data is updated in the component. Call superRerender() to chain rerendering to the components in body attribute.Rerender function will be called when a component’s value changes due to user action like a button click or some other event like component/application event. Rerender function updates component upon rerendering of the component.
-
Pooja
MemberMarch 2, 2020 at 2:55 pm in reply to: What is the difference between Auto-Response Rule and Workflow Rule in Salesforce?The emails sent thru' Auto Response Rules are tracked in Email message object against the Case record while workflow email alerts cannot track the emails sent. The emails tracked in Email message object includes all the email exchanges between the support agent and the customer.
-
Pooja
MemberFebruary 28, 2020 at 2:27 pm in reply to: What are the advantages of statelessness in RESTful Webservices in Salesforce?As RESTful web services constantly deal with HTTP protocols which are also a statelessness protocol that matches the basic criteria.
-
Pooja
MemberFebruary 28, 2020 at 2:25 pm in reply to: Can the future method is called from another future method in Salesforce?You cannot call future method from another future method in Salesforce
-
Pooja
MemberFebruary 28, 2020 at 2:13 pm in reply to: Can we create field in custom object containing some records with master detail relationship in Salesforce?Yes,We Can create field in custom object containing some records with master detail relationship in Salesforce
-
HTTP POST in Salesforce is used to take the data from the resources.
-
You cannot make a HTTP callout from triggers.
-
Pooja
MemberFebruary 27, 2020 at 2:22 pm in reply to: What are Aggregate Functions in Salesforce SOQL?Aggregate functions include AVG() , COUNT() , MIN() , MAX() , SUM() , and more.
Avg()- It is used to give the average.
Count()- It is used to give the total count.
Min()- It is used to give the minimum.
Max()- It is used to give the maximum.
-
If we talk in simple words so the word Hammer means taking every single Apex test that you or anyone else has created and running it twice.
-
Pooja
MemberFebruary 25, 2020 at 1:18 pm in reply to: How do we import products in Salesforce for professional edition?Professional Edition. So you can definitely use Data Loader in PE, but make sure to complete your migration within the given timeframe or else you would need to pay for getting the API access later.Professional edition does not support API access therefore dataloader is not supported.
-
If a folder does not have Manager access, it’s public, and users with the View Reports in Public Folders permission can view it. Depending on their object access, these users can also run the report. To hide report folders that are not in use in your organisation, you have to disable access levels for sharing report and dashboard folders.first.
-
Pooja
MemberFebruary 25, 2020 at 1:15 pm in reply to: What is a typical use case flags for Account-Specific hours in Salesforce?Account Level Flags can be set individually or en masse. They need not be specified for every Account; the default hours specified above will be used automatically in the absence of Account Level Flags. Salesforce allows you to configure Organization Business Hours to select the days and hours that your support team is available. When Business Hours is selected from the General Setup section of the setup wizard, as shown below, Case Flags will exclude the time elapsed outside of your company’s normal hours of operation.
-
Lighting events are provided by Salesforce Library that can be often used based on your requirement.There are 2 types of events in Salesforce:-
1.Component Events
2.Application Events -
Using a static resource is preferable to uploading a file to the Documents tab and Static resources allow you to upload content that you can reference in a Visualforce page, including archives (such as .zip and .jar files), images, style sheets, JavaScript, and other files.
-
Pooja
MemberFebruary 23, 2020 at 4:22 pm in reply to: What is API in Salesforce and why we use API ?API is Nothing but it is a application programming interface and basically it is used to communicate between the server and the client side.
-
Tab is a user interface which is used to Build Records for the Objects to view it.Custom tabs display custom object data or other web content embedded in the application.
-
Pooja
MemberFebruary 23, 2020 at 4:20 pm in reply to: What is the need of future method in Salesforce?We can use future methods for any operation we would like to run asynchronously in its own thread. It provides the ability to make long running callout from Trigger.
-
Pooja
MemberFebruary 23, 2020 at 4:18 pm in reply to: How to show an error message in apex code in Salesforce ?ApexPages.Message myMsg = new ApexPages.Message(ApexPages.Severity.ERROR,'Error Message');
ApexPages.addMessage(myMsg);