Kirandeep
IndividualForum Replies Created
-
Kirandeep
MemberSeptember 17, 2020 at 12:31 pm in reply to: What are the two features of knowledge in Salesforce?- Knowledge is contextual and it can be re-used.
- Benefits of knowledge obtained only if it is applied.
- The values of knowledge may change over time.
- Knowledge has to be renewed or maintained.
- It can be difficult to transfer, capture and distribute knowledge.
-
Kirandeep
MemberSeptember 16, 2020 at 2:37 pm in reply to: What are the different types of reports available in Salesforce?<div>Types of Reports :-</div>Tabular, Summary,Matrix and Joined Reports.
-
Enterprise WSDL
1. The Enterprise WSDL is strongly typed.2. The Enterprise WSDL is tied (bound) to a specific configuration of Salesforce (ie. a specific organization's Salesforce configuration).3. The Enterprise WSDL changes if modifications (e.g custom fields or custom objects) are made to an organization's Salesforce configuration. -
Kirandeep
MemberSeptember 16, 2020 at 2:32 pm in reply to: What is heap size limit for synchronous calls in Apex in Salesforce?Salesforce enforces an Apex Heap Size Limit of 6MB for synchronous transactions and 12MB for asynchronous transactions. The "Apex heap size too large" error occurs when too much data is being stored in memory during processing.
-
Kirandeep
MemberSeptember 16, 2020 at 2:31 pm in reply to: How can we generate WSDL file in Salesforce?To generate the WSDL file form Salesforce Organization :
- Log in to your Salesforce Account. You must log in as an administrator or as a user who has the “Modify All Data” Permission.
- Go to Setup — > Develop –> API , Click to API.
- Download the Enterprise WSDL.
-
Kirandeep
MemberSeptember 15, 2020 at 1:40 pm in reply to: Can we Detect Apex Runtime Context in Salesforce ?After Apex Winter 21 Release,We can now detect Apex context at runtime and correlate multiple logs triggered by the request, using Request ID and Quiddity values.
Use the methods in the System.Request class to obtain the Request ID and Quiddity of the current Salesforce request. -
Kirandeep
MemberSeptember 15, 2020 at 1:39 pm in reply to: How can we invoke future methods of callout in Apex class from trigger? -
Kirandeep
MemberSeptember 15, 2020 at 1:37 pm in reply to: What is the batch limit batch for big objects using deleteImmediate() in SF?Before Apex Winter Release 21 batch limit for big objects using deleteImmediate() is 2,000 records at a time.
Now we can delete up to 50,000 big object records at once using Database.deleteImmediate() method. -
Kirandeep
MemberSeptember 14, 2020 at 1:18 pm in reply to: How can we permanently delete the record from salesforce?Hi Anuj,
You Can use Hard Delete function for permanently deleting a record. -
Kirandeep
MemberSeptember 14, 2020 at 12:36 pm in reply to: What are the prerequisite to create a person account in salesforce?Please ensure the record type is made available to all profiles that need access to it's functionality. To confirm the record type is assigned for the profiles, follow these steps:
1. Click on Your Name ; Setup ; Admin Setup ; Manage Users ; Profiles.
2. Click on the name of a specific profile, and scroll down to the "Account Record Type Defaults" section to select values for Business or Person Accounts. Or, if you have the new Enhanced Profile version enabled, then Object Settings > Accounts.
3. User profiles that have read access to accounts have read access to contacts. The organization-wide default sharing is set so that "contacts" are controlled by "parents" or "accounts" and "contacts" are both "private".
4. From Setup, enter Account Settings in the Quick Find box, and then select Allow Customer Support to enable Person Accounts.After this you have to log a case for salesforce customer support to enable Person Account. -
Kirandeep
MemberSeptember 14, 2020 at 12:33 pm in reply to: What are limitations of Person Account in salesforce?Limitations of Person Account:-
1. Personal accounts use large amounts of data storage.
2. You can't disable a Person Account once you enable them.
3. Limited Reporting i.e,You are not able to pull a joined report of Orders (which are related to the Account part of the Person Account) and Emails (which are related to the Contact part of the Person Account).Instead, you need to create 2 separate reports.
4. Person Accounts never get new features released to them.
5. Person Accounts Not Supported in Lightning Sync.
6. Person accounts can’t have contacts.
7. Person accounts can’t have an account hierarchy.
8. Person accounts can't have direct relationships with other accounts or contacts. -
Hi Aditya,
you can refer the link below :-
https://docs.bmc.com/docs/change91/configuring-approval-processes-609067354.html -
Workflow tasks assign a new task to a user, role, or record owner. For example, automatically assign follow-up tasks to a support representative one week after a case is updated. To get started with workflow tasks, from Setup, enter Tasks in the Quick Find box, then select Tasks.
-
Kirandeep
MemberSeptember 11, 2020 at 4:27 am in reply to: What are the Limitations of Time-dependent workflow in Salesforce?Time triggers don't support minutes or seconds. Time triggers can't reference the following: DATE or DATETIME fields containing automatically derived functions, such as TODAY or NOW.
-
Kirandeep
MemberSeptember 10, 2020 at 4:16 pm in reply to: How can you refresh a particular section of a Visualforce page?ReRender is used to refresh a particular section of the visual force page.
-
Kirandeep
MemberSeptember 9, 2020 at 11:13 am in reply to: What is the use of Approval Process in Salesforce?Approval Process in Salesforce is an automated process that automates how Salesforce records are approved in your org. Approval Process in Salesforce is a combination of steps for a record to be approved/rejected either by a user, queue or public groups.
-
A forecast category is the category within the sales cycle to which an opportunity is assigned based on its opportunity stage. The standard forecast categories are Pipeline, Best Case, Commit, Omitted, and Closed. You can customize the forecast category names.
-
Kirandeep
MemberSeptember 8, 2020 at 2:27 pm in reply to: What are unbound exepressions in Lightning Component in Salesforce?Unbound Expression is represented as {#v.str}. Whenever the value of the string is changed, this expression will not reflect the change, we can say the value remains static through this expression.
-
Kirandeep
MemberSeptember 7, 2020 at 1:48 pm in reply to: How do you check if a map is empty or not?Hi Marziya ,
You can use isEmpty() method of map class -
Kirandeep
MemberSeptember 7, 2020 at 1:41 pm in reply to: How do I convert a list to a map in Salesforce?Hi Marziya,
You can convert like this :-
List<Account> AccList = new List<Account>();
Map<Id,Account> AccMap = new Map<Id,Account>();
for(Account acc :AccList)
{
AccMap.put(acc.id,acc);
} -
Kirandeep
MemberSeptember 7, 2020 at 1:38 pm in reply to: can we check if an Sobject has errors without performing DML in Salesforce ?Hi Anuj,
In winter 21 Release Salesforce Introduced two new methods hasErrors() and getErrors() to track errors without performing a DML operation to check the result for errors. -
Hi Anuj ,
Yes we can like this :-
List<Map<String, Integer>> maplist = new List<Map<String, Integer>>(); -
Kirandeep
MemberSeptember 7, 2020 at 11:17 am in reply to: How to generate response in Mock Class in Salesforce?Hi Deepak,
You can refer the link below:-
https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_classes_restful_http_testing_httpcalloutmock.htm -
Kirandeep
MemberSeptember 7, 2020 at 10:31 am in reply to: How to cover JSON.deserialized type in test class in Salesforce?Hi Deepak ,
You can refer the link below :-
https://salesforce.stackexchange.com/questions/104288/code-coverage-for-json-deserialize-object-in-apex-test-classes-in-salesforce -
Kirandeep
MemberSeptember 4, 2020 at 3:06 pm in reply to: Is it possible to send Custom Notifications Using Apex without making API Call?Hi Anuj,
In winter 21 Release Salesforce Introduced Messaging.CustomNotification class to create, configure, and send custom notifications directly from Apex code without making API callouts.- This reply was modified 4 years, 2 months ago by Kirandeep.