Forcetalks | Aditya | Activity https://www.forcetalks.com/munna-rkgit42gmail-com/activity/ Activity feed for Aditya. Tue, 31 Mar 2026 06:51:58 +0530 https://buddypress.org/?v=2.16.0 en-US 30 hourly 2 fee600d91506fe47de7968169be6c3f3 Aditya posted a new post. https://www.forcetalks.com/?p=96031 Thu, 23 Sep 2021 19:40:26 +0530
Install and Configure a Twilio App in Salesforce

Twilio for Salesforce Prerequisites Create a Twilio Account, if you don’t have it yet.  MyDomain is configured for your Salesforce Instance. Create Twilio Account and…

]]>
35e40c0ae139ed1779f0a260d2a74337 Aditya posted a new post. https://www.forcetalks.com/?p=94315 Wed, 21 Jul 2021 14:31:29 +0530 f5f79365904c7e66a7cdc94901fb44fe Aditya posted a new post. https://www.forcetalks.com/?p=93928 Thu, 08 Jul 2021 17:59:58 +0530
Mail a Table of Opportunity Records With a Link of Detail Page | Salesforce Tutorial

In this blog, we have checked the closedDate of the whole Opportunity records and sent a mail of all opportunities whose closedDate is less than…

]]>
65941d6d20e19ece7b683c35f4532dc7 Aditya posted a new post. https://www.forcetalks.com/?p=93661 Tue, 29 Jun 2021 15:28:21 +0530 c182a1b73f33b5a4213cea1fae9e2977 Aditya posted a new post. https://www.forcetalks.com/?p=93609 Fri, 25 Jun 2021 15:55:16 +0530 6446c23b123c0160f2b56a9a3891a105 Aditya posted a new post. https://www.forcetalks.com/?p=93350 Thu, 17 Jun 2021 20:23:10 +0530
How To Resolve When Salesforce Error Apex Heap Size Too Large

Salesforce upholds an Apex Heap Size Limit of 6MB for synchronous execution and 12MB for Asynchronous execution. The "Pinnacle stack size excessively huge" mistake happens…

]]>
a67b9f9b0ead6dc3c4e0d19c54993dd0 Aditya joined the group Leaptree Optimize - Dynamic QA Scorecards for Customer Service https://www.forcetalks.com/activity/p/121422/ Thu, 13 May 2021 09:04:46 +0530 0 a17f17106e64f666313e51a18281041d Aditya joined the group Salesforce Partners and Professionals https://www.forcetalks.com/activity/p/121421/ Thu, 13 May 2021 09:04:30 +0530 0 0ecac4b6ca34c63572bf3da6a6120035 Aditya joined the group Salesforce Support https://www.forcetalks.com/activity/p/121420/ Thu, 13 May 2021 09:04:23 +0530 0 b98ca6a9b3e96d75a0bf72e41052295b Aditya posted a new post. https://www.forcetalks.com/?p=91734 Fri, 23 Apr 2021 19:21:56 +0530 dbc60880bb692d3ce85c7f7a78531a90 Aditya posted a new post. https://www.forcetalks.com/?p=90263 Mon, 01 Mar 2021 18:22:19 +0530
Insert ContentVersion By Rest API | The Salesforce Developer Guide

In this document, we are going to insert a contentVersion from a Salesforce Source org to a particular sObject of target Salesforce org by using…

]]>
90d5f2220dedbe59cd5db07158294b88 Aditya posted a new post. https://www.forcetalks.com/?p=90243 Fri, 26 Feb 2021 15:45:14 +0530
TriggerFactory in Salesforce Apex | The Developer Guide

Trigger structures in Apex are something clever. We as a whole realize we need them, we as a whole realize that it is best practice…

]]>
f0ca198fecac6333a8e7595200d9320f Aditya started the discussion What is lightning message Service in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-is-lightning-message-service-in-salesforce/ Tue, 23 Feb 2021 07:12:43 +0530 What is lightning message Service in Salesforce?

What is lightning message Service in Salesforce?

]]>
f7b87098422a58317f8795c76f62925c Aditya replied to the discussion How do I get the value of the selected value in LWC Combobox? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-do-i-get-the-value-of-the-selected-value-in-lwc-combobox/#post-90309 Tue, 23 Feb 2021 07:11:40 +0530 Reply to How do I get the value of the selected value in LWC Combobox?

@track selectedLabel;

get options() {
    return [
        { label: 'New', value: 'new' },
        { label: 'In Progress', value: 'inProgress' },
        { label: 'Finished', value: 'finished' },
    ];
}

handleChange(event) {
    this.selectedLabel = event.target.options.find(opt => opt.value === event.detail.value).label;
}
]]>
46d63f877e214f76869e6e44713b9224 Aditya replied to the discussion How do I iterate the array list in LWC? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-do-i-iterate-the-array-list-in-lwc/#post-90308 Tue, 23 Feb 2021 07:10:22 +0530 Reply to How do I iterate the array list in LWC?

Hi,

To render a list of items, use for:each directive or the iterator directive to iterate over an array. Add the directive to a nested <template> tag that encloses the HTML elements you want to repeat. We can call it for loop in LWC.

]]>
5ddfb22c03a46f5942ced4ad2a177f82 Aditya replied to the discussion How to display comma seperated values in list view visualforce not string ? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-display-comma-seperated-values-in-list-view-visualforce-not-string/#post-90307 Tue, 23 Feb 2021 06:56:43 +0530 Reply to How to display comma seperated values in list view visualforce not string ?

/ a list of string, you wanna display

List<String> tempLst = new List<String>{'Lee','Jeff','Dogules','Alok'};

// making a single string with comma seprated from above list

String commaSepratedList='';

for(String str : tempList)

{

commaSepratedList += str + ',' ;

}

// remove last additional comma from string

commaSepratedList…

Read more

]]>
d573e2a58c1a80137b7e95f02bc91441 Aditya started the discussion What is the need of encoding url of public site in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-is-the-need-of-encoding-url-of-public-site-in-salesforce/ Mon, 22 Feb 2021 08:59:13 +0530 What is the need of encoding url of public site in Salesforce?

What is the need of encoding url of public site in Salesforce?

]]>
e23d8255144b3d907aafad9dc285b830 Aditya started the discussion How to decode the url link of a public site in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-decode-the-url-link-of-a-public-site-in-salesforce/ Mon, 22 Feb 2021 08:57:52 +0530 How to decode the url link of a public site in Salesforce?

How to decode the url link of a public site in Salesforce?

]]>
cbc0a43f01d8817cdb8367c97d86dfb9 Aditya started the discussion How to encode the url of a public site by apex in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-encode-the-url-of-a-public-site-by-apex-in-salesforce/ Mon, 22 Feb 2021 08:56:30 +0530 How to encode the url of a public site by apex in Salesforce?

How to encode the url of a public site by apex in Salesforce?

]]>
606998157043df9b6575ccf20a111333 Aditya replied to the discussion What is the use of Future method in Batch class in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-is-the-use-of-future-method-in-batch-class-in-salesforce/#post-90282 Mon, 22 Feb 2021 08:54:34 +0530 Reply to What is the use of Future method in Batch class in Salesforce?

A future method runs in the background, asynchronously. You can call a future method for executing long-running operations, such as callouts to external Web services or any operation you'd like to run in its own thread, on its own time.

]]>
f11fbcaa30fbe6bfee548dbe29a566f7 Aditya replied to the discussion How to include a unique coupon code to each lead in auto response email in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-include-a-unique-coupon-code-to-each-lead-in-auto-response-email/#post-90272 Fri, 19 Feb 2021 14:31:06 +0530 Reply to How to include a unique coupon code to each lead in auto response email

trigger AfterCaseInsert on Case (after insert) { 
    if (trigger.isAfter && trigger.isInsert) { 
        List<Case> newlyInsertedCases = [SELECT Id From Case WHERE Id IN :trigger.new]; 
        Database.DMLOptions autoResponseOptions = new Database.DMLOptions(); 
        autoResponseOptions.EmailHeader.triggerAutoResponseEmail =…

Read more

]]>
d8284a482526e634827687ab25f875b6 Aditya replied to the discussion Is There Any Way To Control The Sequence Of Execution Of These Triggers? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/is-there-any-way-to-control-the-sequence-of-execution-of-these-triggers/#post-90270 Fri, 19 Feb 2021 14:24:12 +0530 Reply to Is There Any Way To Control The Sequence Of Execution Of These Triggers?

Hi Neha,

To control the sequence of execution of multiple context of a trigger is by using trigger factory

]]>
87a966ab361d59a10bba4445737e1535 Aditya posted a new post. https://www.forcetalks.com/?p=89917 Thu, 04 Feb 2021 18:28:27 +0530
Lightning DataTable in Salesforce | The Developer Guide

A lightning-datatable part shows even information where every segment can be shown depending on the information type. For instance, an email address is shown as…

]]>
0ef5ac1d296f944425d6c81c4b944056 Aditya started the discussion Is it possible to apply DML in beforeUpdate trigger in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/is-it-possible-to-apply-dml-in-beforeupdate-trigger-in-salesforce/ Wed, 03 Feb 2021 08:11:12 +0530 Is it possible to apply DML in beforeUpdate trigger in Salesforce?

Is it possible to apply DML in beforeUpdate trigger in Salesforce on same Record?

]]>
424472664bd47c9bd33ee0a57a0748e5 Aditya started the discussion How to convert sObject to account in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-convert-sobject-to-account-in-salesforce/ Wed, 03 Feb 2021 08:08:05 +0530 How to convert sObject to account in Salesforce?

How to convert sObject to account in Salesforce?

]]>
8ac65896c0a23a65bf0aa7f4e6b5a857 Aditya replied to the discussion What is data sync in Salesforce Einstein analytics? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-is-data-sync-in-salesforce-einstein-analytics/#post-89883 Wed, 03 Feb 2021 08:01:41 +0530 Reply to What is data sync in Salesforce Einstein analytics?

Data Sync is a mechanism for establishing a link to an object in a data source (we call them connections facilitated by connectors in Einstein Analytics) that can be used to copy some or all of the data into Einstein Analytics.

]]>
dd962fbc07107ab3bdfafc6c02f9f3aa Aditya replied to the discussion How to implement data sync in Salesforce Einstein analytics? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-implement-data-sync-in-salesforce-einstein-analytics/#post-89882 Wed, 03 Feb 2021 07:51:46 +0530 Reply to How to implement data sync in Salesforce Einstein analytics?

In Analytics, click Data Manager in the left pane to open Data Manager. Click the Connect tab. The Connect tab displays a list of objects enabled for sync, grouped by connection. If you can't see the Connect tab, you must enable data sync in your org.

]]>
c0d8de9c44a0456daea28bfbd10a646a Aditya started the discussion What is triggerDispatcher in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-is-triggerdispatcher-in-salesforce/ Tue, 02 Feb 2021 06:55:44 +0530 What is triggerDispatcher in Salesforce?

What is triggerDispatcher in Salesforce?

]]>
b14964890de852b2d53d4b2b1825d976 Aditya started the discussion What is application of triggerFactory in apex Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-is-application-of-triggerfactory-in-apex-salesforce/ Tue, 02 Feb 2021 06:54:56 +0530 What is application of triggerFactory in apex Salesforce?

What is application of triggerFactory in apex Salesforce?

]]>
040d89ced7bbca161ce66375bd80f628 Aditya replied to the discussion What is the use of retainAll(ele) in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-is-the-use-of-retainallele-in-salesforce/#post-89851 Tue, 02 Feb 2021 06:52:53 +0530 Reply to What is the use of retainAll(ele) in Salesforce?

In simple words, it compares a set with another set/list and check for common elements. if there is any common element between them, it keeps the element and removes the uncommon element.

]]>
67d9bf2e7f3f38c0106ea9e0b548309f Aditya replied to the discussion How to deserialize JSON in Apex in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-deserialize-json-in-apex-in-salesforce/#post-89850 Tue, 02 Feb 2021 06:52:04 +0530 Reply to How to deserialize JSON in Apex in Salesforce?

suggest you paste your JSON into http://json2apex.herokuapp.com/ and try the generated code. This tool generates simple Apex classes with a field per JSON field and then you can parse with a single JSON. deserialize call.

]]>
cb71e2646a212e379268c3a2d4b24d52 Aditya started the discussion What is serialize and deserialize in Apex Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-is-serialize-and-deserialize-in-apex-salesforce/ Wed, 27 Jan 2021 07:57:23 +0530 What is serialize and deserialize in Apex Salesforce?

What is serialize and deserialize in Apex Salesforce?

]]>
53d58cd75265c080f65a5f6d17c051b2 Aditya started the discussion What is the use of isSet() methods in Apex Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-is-the-use-of-isset-methods-in-apex-salesforce/ Wed, 27 Jan 2021 07:54:06 +0530 What is the use of isSet() methods in Apex Salesforce?

What is the use of isSet() methods in Apex Salesforce?

]]>
9480701576882549779c3bc8d9f37466 Aditya replied to the discussion How to add Formstack button on Salesforce object page layout? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-add-formstack-button-on-salesforce-object-page-layout/#post-89728 Wed, 27 Jan 2021 07:48:18 +0530 Reply to How to add Formstack button on Salesforce object page layout?

Add your new button to a Page Layout

Go to the Detail page for your object, and click the Edit Layout link.

Choose Buttons from the left side and then drag your newly created button onto your layout, and save.

]]>
f8197adba6a14c977f82d87a92cf5c9b Aditya replied to the discussion How to add Conga query to Conga solution in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-add-conga-query-to-conga-solution-in-salesforce/#post-89725 Wed, 27 Jan 2021 07:46:05 +0530 Reply to How to add Conga query to Conga solution in Salesforce?

Copy the Salesforce Record Id of the Conga Query record.

Edit your Conga Composer button.

(Optional) Include a “Query Alias”

(Optional) Specify the values to pass into the Conga Query.

Save the button.

Add the newly available merge fields to your template.

]]>
ce934689be8a9fa7b753d1622fbd0e57 Aditya started the discussion How to change a map into sObject in Salesforce Apex? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-change-a-map-into-sobject-in-salesforce-apex/ Wed, 20 Jan 2021 07:56:03 +0530 How to change a map into sObject in Salesforce Apex?

How to change a map into sObject in Salesforce Apex?

]]>
8d6476c4b52abe7fad3be48241b39d39 Aditya started the discussion How to convert Json into wrapper class in Salesforce Apex? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-convert-json-into-wrapper-class-in-salesforce-apex/ Wed, 20 Jan 2021 07:54:35 +0530 How to convert Json into wrapper class in Salesforce Apex?

How to convert Json into wrapper class in Salesforce Apex?

]]>
75a7ffe3ae01dd14cfefa701ae6347b1 Aditya replied to the discussion How to get nested table in Conga template in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-get-nested-table-in-conga-template-in-salesforce/#post-89611 Wed, 20 Jan 2021 07:53:23 +0530 Reply to How to get nested table in Conga template in Salesforce?

Define the desired layout for the repeating items (the interior/nested table) in a stand-alone table. Optionally, set the desired row height for each row of the table, or simply allow them to adapt as necessary to accommodate the merge data. Insert merge fields into the table you built in step 2.

]]>
ee7ebb9959d18dea9c4446e38f55699a Aditya replied to the discussion What are the benefits of using Formstack for document generation in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-are-the-benefits-of-using-formstack-for-document-genearation-in-salesforce/#post-89610 Wed, 20 Jan 2021 07:52:13 +0530 Reply to What are the benefits of using Formstack for document generation in Salesforce?

Formstack Documents automates your document generation so your sales team can easily generate contracts and proposals. Merge Salesforce data into documents and speed up your time to close by never copying and pasting data or contact information again.

]]>
7a6edcbf4b382c43c3a85d6989673356 Aditya replied to the discussion What is Your Favorite Salesforce Spring ’21 Features ? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-is-your-favorite-salesforce-spring-21-features/#post-89609 Wed, 20 Jan 2021 07:50:53 +0530 Reply to What is Your Favorite Salesforce Spring ’21 Features ?

Flow Updates. Flow is truly becoming the rising star of the Salesforce platform, with huge updates being made with each release, and Spring '21 is no different. Lightning Flow has now been renamed to Salesforce Flow

]]>
97bab8473eaa2f8c09d4bba28e881b62 Aditya started the discussion How to query a file body in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-query-a-file-body-in-salesforce/ Mon, 18 Jan 2021 07:09:24 +0530 How to query a file body in Salesforce?

How to query a file body in Salesforce?

]]>
8f6c5d434f6c53aa81535f7ea44cd3d6 Aditya started the discussion How to convert a file into binary format in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-convert-a-file-into-binary-format-in-salesforce/ Mon, 18 Jan 2021 07:08:09 +0530 How to convert a file into binary format in Salesforce?

How to convert a file into binary format in Salesforce?

]]>
81f8d6c31c30f9505d0e75adfbd2845f Aditya replied to the discussion What is crm life-cycle in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/tell-me-about-what-is-crm-life-cycle/#post-89517 Sun, 17 Jan 2021 16:34:40 +0530 Reply to What is crm life-cycle

In customer relationship management (CRM), customer lifecycle is a term used to describe the progression of steps a customer goes through when considering, purchasing, using and maintaining loyalty to a product or service.

]]>
7aa80294c0fa453634f06d12ed0c4a7c Aditya replied to the discussion How to add Formstack document geneartion on button click in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-add-formstack-document-geneartion-on-button-click-in-salesforce/#post-89516 Sun, 17 Jan 2021 16:33:40 +0530 Reply to How to add Formstack document geneartion on button click in Salesforce?

If you need to merge data into your document that is not directly in your form submission but is in a related record that is not on your form. Create multiple documents from multiple related Salesforce objects. Trigger document merges using a button click on a record detail page or report.

]]>
830cbc051fd6b93fd6f8456a7a4f6a11 Aditya replied to the discussion What is the use of delivery option on Document in Formstack in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-is-the-use-of-delivery-option-on-document-in-formstack-in-salesforce/#post-89515 Sun, 17 Jan 2021 16:31:00 +0530 Reply to What is the use of delivery option on Document in Formstack in Salesforce?

You can use this option to input a Merge Field to Customize the File Owner. Update record fields - this is a major reason that customers choose to use a Salesforce delivery instead of using the Salesforce app. This option allows you to update multiple record files at once.

]]>
00f33ce338c0ea5b9a4c322fbf99950e Aditya started the discussion What is the of Schedule object in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-is-the-of-schedule-object-in-salesforce/ Tue, 12 Jan 2021 08:34:47 +0530 What is the of Schedule object in Salesforce?

What is the of Schedule object in Salesforce?

]]>
38eafbfea9f3adccaebb983ed4aece30 Aditya started the discussion Is it possible to delete name space in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/is-it-possible-to-delete-name-space-in-salesforce/ Tue, 12 Jan 2021 08:32:41 +0530 Is it possible to delete name space in Salesforce?

Is it possible to delete name space in Salesforce?

]]>
d21b32fa1d40ec1f7a60e6b7d516aab7 Aditya started the discussion How to assign setto list in Apex Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-assign-setto-list-in-apex-salesforce/ Tue, 12 Jan 2021 08:30:48 +0530 How to assign setto list in Apex Salesforce?

How to assign set<sObject>to list<sObject> in Apex Salesforce?

]]>
76336534c1e324bc1794191fd01bb90a Aditya replied to the discussion How to add conga solution on the object page layout? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-add-conga-solution-on-the-object-page-layout/#post-89337 Fri, 08 Jan 2021 08:58:39 +0530 Reply to How to add conga solution on the object page layout?

To create a new Solution record: Click the Conga Solutions tab. Click Create New and select Conga Solution. In the Conga Solution Name field, enter a name for the solution. In the Master Object field, select a master object from the list. Click Create Record. The new solution opens in the Conga Solution screen.

]]>
b517a303b860cc1f33b5b352efd962cc Aditya replied to the discussion How to integrate Formstack with Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-integrate-formstack-with-salesforce/#post-89336 Fri, 08 Jan 2021 08:56:51 +0530 Reply to How to integrate Formstack with Salesforce?

Adding the Salesforce Integration. To add the integration, click on Settings > Integration > CRM > the "Add" button next to Salesforce. Note: If you are sending file attachments to Salesforce, you must store your data in the Formstack database or those files won't be transferred.

]]>