kishan giri
IndividualForum Replies Created
-
kishan
MemberJune 14, 2021 at 3:02 pm in reply to: What are the three languages used in the Visualforce page in salesforce?HTML markup, CSS, and JavaScript.
-
kishan
MemberJune 14, 2021 at 2:53 pm in reply to: What are the data cleansing tool for Salesforce?You can checkout this link:-
https://www.tye.io/en/blog/data-cleaning-tools/ -
The recordSetVar attribute indicates that the page uses a list controller and the variable name of the record collection. This variable can be used to access data in the record collection. Above displays all account with number.
-
kishan
MemberMay 18, 2021 at 9:23 pm in reply to: How to create share table record using apex in Salesforce?1.Click “Setup | Create | Objects”.2.Select the custom object. (In this case, the “Test” Custom object.)
3.Click New in the Apex Sharing Reasons related list. ..
4.Enter a label for the Apex sharing reason.
5.Enter a name for the Apex sharing reason.
6.Click Save. -
Apex managed sharing enables developers to programmatically manipulate sharing to support their application's behavior through Apex or the SOAP API. This type of sharing is similar to managed sharing. Only users with “Modify All Data” permission can add or change Apex managed sharing on a record.
-
-
The digital transformation bought by CRM software in India gives effortless access to an organization's centralized data so that anyone in the system can access the data irrespective of their location to increase speed, productivity, efficiency and provide a quality customer experience.
-
kishan
MemberMay 17, 2021 at 10:53 am in reply to: Can we call a future method from a Salesforce batch class using Apex?No, We cannot call future methods directly from batch apex but we can call a web service from batch class and that web service can call the @future method. Also, we can call the future method from finish method in the batch class.
-
CRM-POS enabled systems automate the data processes that you use in your back office, saving both time and money. In addition to automatically collecting and exporting sales data, they create custom reports from this data as well.
-
CRM in Higher Education helps you identify inquiries that have higher chances of taking admission. When students submit their queries, the software captures it as a lead. Simultaneously, CRM keeps track of every activity of the student on your website.
-
kishan
MemberMay 12, 2021 at 1:31 pm in reply to: How is Trigger.New Different from Trigger.newMap in salesforce?new is simply a list of the records being processed by the trigger, so if all you need to do is loop through them then you can use that. trigger. newMap just allows you to target specific records by Id should you not need to process everything, or if you need to map other records back to these.
-
kishan
MemberMay 11, 2021 at 7:39 am in reply to: What are the considerations while implementing the Triggers in salesforce? -
kishan
MemberMay 11, 2021 at 7:36 am in reply to: What do you mean by the bulkifying trigger in Salesforce?The term bulkifying Apex code refers to the concept of making sure the code properly handles more than one record at a time. When a batch of records initiateApex, a single instance of that Apex code is executed, but it needs to handle all of the records in that given batch.
-
Testing is an important part of the Software Development Life Cycle (SDLC). Before moving the code in production, Salesforce ensures that your code has minimum 75% code coverage. This means that you have tested your code and it would not break in the production environment.
-
kishan
MemberApril 13, 2021 at 7:12 am in reply to: What are different ways to make field required in salesforce?1.Click on gear icon then Setup > Object Manager.
2.Choose the object > Page Layouts.
3.Select the page layout that you use on the object.
4.Click on the wrench icon beside the custom field that you will make required.
5.Select the Required checkbox.
6.Click on Ok, then click on Save. -
kishan
MemberApril 13, 2021 at 7:07 am in reply to: Is it possible to create the Master – Detail Relationship field for the child obNo, directly we cannot create master-detail relationship if custom object contains existing records.
-
kishan
MemberApril 13, 2021 at 7:07 am in reply to: What are cross object formula fields in Salesforce?Cross-object formulas incorporate fields from related objects for calculations and display on detail pages, list views, and reports. These formulas get data from related parent objects to display on the child object. Using them is a great way to avoid duplicate work, duplicate data, and data inconsistency.
-
kishan
MemberApril 9, 2021 at 8:48 am in reply to: Which declarative tool would you use for the following use case in Salesforce?It can be done with the help of Process Builder. The correct tool is to use Process Builder.
-
kishan
MemberApril 6, 2021 at 11:46 am in reply to: What is the use of Page reference in the Salesforce Visualforce Page?Use a PageReference object: To view or set query string parameters and values for a page. To navigate the user to a different page as the result of an action method.
-
kishan
MemberApril 6, 2021 at 11:39 am in reply to: I want to delete 20000 records and I don't want them to be recovered from recycle bin. Is this possible if yes then how?Yes this is possible by Using "Hard Delete" Option in data loader.By using Hard Delete option data will permanently delete from salesforce and it will not go to in Recycle Bin. And also you can not recover deleted records.
-
Wrapper Class in Apex Salesforce : A wrapper or container class is a class, a data structure, or an abstract data type which contains different objects or collection of objects as its members. A wrapper class is a custom object defined by programmer wherein he defines the wrapper class properties.
-
A workflow alert is an email generated by a workflow rule or approval process and sent to designated recipients. This object is available in API version 32.0 and later.
-
Salesforce Marketing Cloud is a customer relationship management (CRM) platform for marketers that allows them to create and manage marketing relationships and campaigns with customers.
-
kishan
MemberMarch 26, 2021 at 6:06 pm in reply to: Can we call workflow from process builder in Salesforce?In short, you can do everything you can do with workflows using process builder as well, except for sending outbound messages with point&click.
-
kishan
MemberMarch 26, 2021 at 6:03 pm in reply to: How many Maximum Records can be migrated using Data loader?You can load 50,000 to 5,000,000 records by using Data Loader.