Forcetalks | Yogesh | Activity https://www.forcetalks.com/yogesh-sharma01195gmail-com/activity/ Activity feed for Yogesh. Sat, 06 Dec 2025 17:57:46 +0530 https://buddypress.org/?v=2.15.3 en-US 30 hourly 2 8f6e279ca2492392837c09e9f42e6bb7 Yogesh started the discussion How does system change event not work for change in object type attribute in Salesforce lightning? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/does-system-change-event-not-work-for-change-in-object-type-attribute-in-lightning/ Thu, 12 Dec 2019 07:53:16 +0530 How does system change event not work for change in object type attribute in Salesforce lightning?

does system change event not work for change in object type attribute in lightning?

]]>
dc28607c8ba4b607b2b3095ef1b1fedf Yogesh started the discussion What is the case of system change event in Salesforce lightning? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-is-the-case-of-system-change-event-in-lightning/ Thu, 12 Dec 2019 07:50:35 +0530 What is the case of system change event in Salesforce lightning?

What is the case of system change event in lightning?

]]>
d3481daf7ce92c9e3319f8a1e4e4dc04 Yogesh replied to the discussion Hoe to override new button to choose the record type automatically in Salesforce for below use case? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/override-new-button-to-choose-the-record-type-automatically/#post-66424 Thu, 12 Dec 2019 07:49:18 +0530 Reply to Hoe to override new button to choose the record type automatically in Salesforce for below use case?

Hi,

Click on Name | Setup | App Setup | Customize | Cases | Buttons, Links and Actions
Click on Edit link available near to New button
Navigate to Override Properties Section select Visualforce page and then select a value for Skip Record Type Selection Page checkbox
I hope this will help You.

Thank you

]]>
8fc481e413e507d84bd921c43d35def2 Yogesh replied to the discussion How to display dynamically added picklist value as a picklist value and as picklist field for that parent object in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-display-dynamically-added-picklist-value-as-a-picklist-value-and-as-picklist-field-for-that-p/#post-66350 Wed, 11 Dec 2019 10:29:20 +0530 Reply to How to display dynamically added picklist value as a picklist value and as picklist field for that parent object in Salesforce?

Hello,

I m assuming your controller property to get the options looks something like one of the following

If you are taking the values directly from a specific picklist field

public List<SelectOption> getMyOptions() {

List<SelectOption> options = new List<SelectOption>();
Schema.DescribeFieldResult field… Read more

]]>
d12e4e5a0dd31b18b9e239683464bd86 Yogesh started the discussion What is the use case of <lightning:notificationsLibrary /> tag in Salesforce lightning? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-is-the-use-case-of-lightningnotificationslibrary-tag-in-lightning/ Wed, 11 Dec 2019 10:26:06 +0530 What is the use case of <lightning:notificationsLibrary /> tag in Salesforce lightning?

What is the use case of <lightning:notificationsLibrary /> tag in lightning?

]]>
3ccc2acad72e0300d55fffee5b649504 Yogesh started the discussion How can we use same aura:id for multiple Salesforce lightning tags in a component? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/can-we-use-same-auraid-for-multiple-lightning-tags-in-a-component/ Wed, 11 Dec 2019 10:23:41 +0530 How can we use same aura:id for multiple Salesforce lightning tags in a component?

can we use same aura:id for multiple lightning tags in a component ?

]]>
b91aa052e7c083b84242019b2d49829d Yogesh replied to the discussion What is the user external id in the upsert operation? Which fields can be external id fields in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-is-the-user-external-id-in-the-upsert-operation-which-fields-can-be-external-id-fields/#post-66345 Wed, 11 Dec 2019 10:22:14 +0530 Reply to What is the user external id in the upsert operation? Which fields can be external id fields in Salesforce?

Hello,

External ID is field in Salesforce to say that this field is primary key in external Database which can be used to identify that external record exists in Salesforce or not ? There are many benefits of external key like :

It can be used to identify if record exists or not and record automatically inserted or updated using… Read more

]]>
d24bc5c1ef0037bf5a1c993d6718e26c Yogesh replied to the discussion How to send an email notification to specific set of users when a Salesforce Visualforce Page gets updated? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-send-an-email-notification-to-specific-set-of-users-when-a-visualforce-page-gets-updated/#post-66344 Wed, 11 Dec 2019 10:19:52 +0530 Reply to How to send an email notification to specific set of users when a Salesforce Visualforce Page gets updated?

Hello,

ublic class CheckPageUpdates implements Schedulable {
public void execute(SchedulableContext context) {
LastTimeChecked__c check = LastTimeChecked__c.getOrgDefaults();
if(check != null) {
check = new LastTimeChecked__c(LastCheckedDateTime__c=DateTime.now());
}
ApexPage[] pagesModified = [SELECT Name FROM ApexPage WHERE LastModifiedDate… Read more

]]>
f1ce5007b81105607345915cf85d3ba3 Yogesh started the discussion How to implement a custom toast message without firing a event in a Salesforce lightning component? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-implement-a-custom-toast-message-without-firing-a-event-in-a-lightning-component/ Tue, 10 Dec 2019 07:22:50 +0530 How to implement a custom toast message without firing a event in a Salesforce lightning component?

I have to implement a custom toast message without firing a event in a lightning component.

]]>
e4af48e6eb748fe267e4805c56d34769 Yogesh started the discussion How to set default value in <lightning:select> in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-set-default-value-in-lightningselect/ Tue, 10 Dec 2019 07:20:31 +0530 How to set default value in <lightning:select> in Salesforce?

I have to set default value in <lightning:select>.

]]>
b0c291603cb4ef2e0594ed259b601e14 Yogesh replied to the discussion How to schedule batch class based on country in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-schedule-batch-class-based-on-country/#post-66266 Tue, 10 Dec 2019 07:18:56 +0530 Reply to How to schedule batch class based on country in Salesforce?

Hello,

global class Scheduler_class implements Schedulable{

public static String sched = '0 00 00 * * ?'; //Every Day at Midnight

global static String scheduleMe() {
Scheduler_class SC = new Scheduler_class();
return System.schedule('My batch Job', sched, SC);
}

global void execute(SchedulableContext sc) {

batchAUpdate_based_on_stage b1 =… Read more

]]>
20854f71141551eacfe2c33dcecb07b5 Yogesh replied to the discussion Do you know how to get the thumbs up/down icon for the Einstein bot response in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/do-you-know-how-to-get-the-thumbs-up-down-icon-for-the-einstein-bot-response/#post-66265 Tue, 10 Dec 2019 07:16:56 +0530 Reply to Do you know how to get the thumbs up/down icon for the Einstein bot response in Salesforce?

Hello,

I think you're referring to emojis and emoticons. This is possible since this was mentioned from this trailhead:

https://trailhead.salesforce.com/en/content/learn/modules/service_bots_basics/plan-your-bot-content

Not sure how to do it.

]]>
56f579f2015c0d1ac0e1ceff8412debb Yogesh started the discussion Is 'name' field required while inserting a list custom setting record from apex in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/is-name-field-required-while-inserting-a-list-custom-setting-record-from-apex/ Mon, 09 Dec 2019 07:25:29 +0530 Is 'name' field required while inserting a list custom setting record from apex in Salesforce?

Is 'name' field required while inserting a list custom setting record from apex?

]]>
8ab814e4ed5b794427f94b2a89aa9e7d Yogesh started the discussion How to insert a list custom setting record from apex in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-insert-a-list-custom-setting-record-from-apex/ Mon, 09 Dec 2019 07:22:51 +0530 How to insert a list custom setting record from apex in Salesforce?

I have  to insert a list custom setting record from apex.

]]>
42220cabe6ee186930eff9b341baf8d8 Yogesh replied to the discussion Can I edit a flow to add some feature after saving and activating it in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/can-i-edit-a-flow-to-add-some-feature-after-saving-and-activation-it/#post-66191 Mon, 09 Dec 2019 07:21:31 +0530 Reply to Can I edit a flow to add some feature after saving and activating it in Salesforce?

Hello,

after you activated a Process, you need to Clone it in order to be able to edit it:

Once you have cloned it, you will be able to edit it. Just select 'Version of the current process' , when you do 'Save Clone as.

]]>
8f611d48bd90b43f46fa50feb1349b38 Yogesh replied to the discussion How can I send an email while using PageReference getContent() method in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-can-i-send-an-email-while-using-pagereference-getcontent-method-in-salesforce/#post-66190 Mon, 09 Dec 2019 07:16:05 +0530 Reply to How can I send an email while using PageReference getContent() method in Salesforce?

Hello,

PageReference ref = Page.PDF_DEMO;
Blob b = ref.getContentAsPDF();

Messaging.SingleEmailMessage email = new Messaging.SingleEmailMessage();

Messaging.EmailFileAttachment efa1 = new Messaging.EmailFileAttachment();
efa1.setFileName('attachment_WORK.pdf');
efa1.setBody(b);

String addresses;
email.setSubject(… Read more

]]>
2896ac1827dd7fea5e5399fc546a3f02 Yogesh started the discussion How to implement Custom Validation in a Salesforce Lightning Input Field Component? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-implement-custom-validation-in-a-lightning-input-field-component/ Fri, 06 Dec 2019 08:03:42 +0530 How to implement Custom Validation in a Salesforce Lightning Input Field Component?

How to implement Custom Validation in a Lightning Input Field Component .

]]>
915995c2d267c4a88c9c8afe3b7d19b3 Yogesh started the discussion How to open a div on a particular row in a Salesforce lightning table list? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-open-a-div-on-a-particular-row-in-a-lightning-table-list/ Fri, 06 Dec 2019 08:01:16 +0530 How to open a div on a particular row in a Salesforce lightning table list?

I have to open a div on a particular row in a lightning table list.

]]>
fc3e48c4eee319a674dfbd0941e18e0a Yogesh replied to the discussion Is there any tool in Salesforce related to sustainable development goal? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/is-there-any-tool-in-salesforce-related-to-sustainable-development-goal/#post-66101 Fri, 06 Dec 2019 07:57:38 +0530 Reply to Is there any tool in Salesforce related to sustainable development goal?

Hello,

Here are 17 ways you can learn, give back, and act in support of these goals at Dreamforce:

1. Quest: We’re calling on attendees to help unlock $1 million to accelerate progress on these goals by completing the Quest, a scavenger hunt in the Salesforce Events App. For every Quest completed, Salesforce will donate to an organization… Read more

]]>
81af99c4f5fb713d6e39944e3ee163d2 Yogesh replied to the discussion What is profile wizard in salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-is-profile-wizard-in-salesforce/#post-66100 Fri, 06 Dec 2019 07:53:04 +0530 Reply to What is profile wizard in salesforce?

Hello,

Its an app on appExchange.

]]>
2636e7262c8e25a92b78d33885d5ed9d Yogesh replied to the discussion How to pass a string as a json which contains different objects in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-pass-a-string-as-a-json-which-contains-different-objects/#post-66084 Thu, 05 Dec 2019 11:05:07 +0530 Reply to How to pass a string as a json which contains different objects in Salesforce?

Hello,

use this method below:-

Map<String, Object> meta = (Map<String, Object>) JSON.deserializeUntyped(JsonString);
List<Map<String, String>> myMaps = (List<Map<String, String>>) meta.get('results');

]]>
282b000bc308e07827c99df8b3cd555a Yogesh replied to the discussion What feature would you use to track changes to settings in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-feature-would-you-use-to-track-changes-to-settings-in-salesforce/#post-66083 Thu, 05 Dec 2019 11:02:34 +0530 Reply to What feature would you use to track changes to settings in Salesforce?

Hello,

The Audit Trail helps you track the recent Setup changes that you and other administrators havemade to your organization. This is especially useful in organizations with multiple administrators.
...
It lists:
The date and time (with timezone) of the change.
Who made it (by username).
What the change was.

]]>
3672f797e5bd89714e0a0b8f8482a0d5 Yogesh started the discussion How to call child component's method in parent component in Salesforce lightning? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-call-child-componens-method-in-parent-component-in-lightning/ Thu, 05 Dec 2019 11:00:08 +0530 How to call child component's method in parent component in Salesforce lightning?

how to call child componen's method in parent component in lightning.

]]>
260116ffd556e739adf4536d267b05fb Yogesh started the discussion How to insert hierarchy custom setting record in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-insert-hierarchy-custom-settting-record/ Thu, 05 Dec 2019 10:58:53 +0530 How to insert hierarchy custom setting record in Salesforce?

I am unable  to insert hierarchy custom settting record.

]]>
a9644a3f7a881bcdc7bc316a78ce740b Yogesh started the discussion what is the use of a case component event in Salesforce lightning? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-is-the-use-case-of-component-event-in-lightning/ Wed, 04 Dec 2019 08:26:50 +0530 what is the use of a case component event in Salesforce lightning?

what is the use case of component event in lightning?

]]>
355605fc64447b4a410924e48d4fb93d Yogesh started the discussion what is the use case of application event in Salesforce lightning? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-is-the-use-case-of-application-event-in-lightning/ Wed, 04 Dec 2019 08:24:51 +0530 what is the use case of application event in Salesforce lightning?

what is the use case of application event in lightning?

]]>
83c30f6fecaee1d50b983704d49e8ceb Yogesh replied to the discussion What are the OwnerType of a case object in Salesforce ? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-are-the-ownertype-of-a-case-object-in-salesforce/#post-65957 Wed, 04 Dec 2019 08:23:37 +0530 Reply to What are the OwnerType of a case object in Salesforce ?

Hello,

Possible values of Owner.Type are,

1. User
2. Queue

]]>
3871a866db841bb59fdcc7e8ca0e599a Yogesh replied to the discussion How to get know the OwnerType of a case is Queue in Salesforce apex? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-get-know-the-ownertype-of-a-case-is-queue-in-apex/#post-65955 Wed, 04 Dec 2019 08:20:59 +0530 Reply to How to get know the OwnerType of a case is Queue in Salesforce apex?

Hello,

you can check

if(string.valueOf(c.OwnerId).startsWith('005'))
{
//owner is User
}

if(string.valueOf(c.OwnerId).startsWith('00G'))
{
//owner is Queue
}

This can save you a SOQL 🙂 and is standard across all ORGS in salesforce

if our suggestion(s) worked,  let us know by marking the answer as "Best Answer" right under the… Read more

]]>
8e81ec2fda352c51a70a42ca4137abf1 Yogesh replied to the discussion How to create a report to compare current year sales vs. previous year sales in salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-create-a-report-to-compare-current-year-sales-vs-previous-year-sales-in-salesforce/#post-65864 Tue, 03 Dec 2019 09:10:01 +0530 Reply to How to create a report to compare current year sales vs. previous year sales in salesforce?

Hello,

You can do something like that using a Matrix report grouped by Division and CloseDate(Month) and CloseDate(Year).
However for the variance you'll need to create Custom Summary Formulas (CSF) and you might run into a problem displaying the monthly variance.

 

]]>
f4df7317474bd3a04ae87cd67a383404 Yogesh started the discussion what are the types of event to use in Salesforce lightning component? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-are-the-types-of-event-to-use-in-lightning-component/ Tue, 03 Dec 2019 09:05:10 +0530 what are the types of event to use in Salesforce lightning component?

I have to know the types of event what are used in lightning component .

]]>
7bc81f267785421884f79ff5cf2cc2c4 Yogesh started the discussion what are the use cases of system "change" event in Salesforce lightning component? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-are-the-use-cases-of-system-change-event-in-lightning-component/ Tue, 03 Dec 2019 09:02:07 +0530 what are the use cases of system "change" event in Salesforce lightning component?

what are the use cases of system "change" event in lightning component?

]]>
754ebd536f24ed554c38c971ecdf66cf Yogesh replied to the discussion How can I add a lookup relationship using an external id on a before insert/update trigger in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/can-i-add-a-lookup-relationship-using-an-external-id-on-a-before-insert-update-trigger/#post-65861 Tue, 03 Dec 2019 08:55:32 +0530 Reply to How can I add a lookup relationship using an external id on a before insert/update trigger in Salesforce?

Hello,

trigger surveyTrigger on Survey__c (before insert) {
if(Trigger.isBefore){
if(Trigger.isInsert){
Map<String, String> extMap = new Map<String, String>();
Set<String> extIdSet = new Set<String>();
for(Survey__c survey : Trigger.new){
extIdSet.add(survey.Account_Key__c);
}
for(Account a : [select Id, Foreign_Key__c from Account… Read more

]]>
fbc90240b5f7d3390c535740bc5d3907 Yogesh started the discussion How to implement a custom auto complete lookup which is dependent on another auto complete value in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-implement-a-custom-auto-complete-lookup-which-is-dependent-on-another-auto-complete-value/ Mon, 02 Dec 2019 07:11:16 +0530 How to implement a custom auto complete lookup which is dependent on another auto complete value in Salesforce?

I heve  to implement a custom auto complete lookup which is dependent on another auto complete value.

]]>
e94600707f27220d96594352ca61a846 Yogesh started the discussion How to hide and show data on a particular progress indicator bar in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-hide-and-show-data-on-a-particular-progress-indicator-bar/ Mon, 02 Dec 2019 07:07:15 +0530 How to hide and show data on a particular progress indicator bar in Salesforce?

I have  to hide and show data on a particular progress indicator bar  inlightning component.

]]>
66136cd815a8d9f1f4a9491078ae7336 Yogesh replied to the discussion How to delete an apex class or apex trigger from a production org in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/deployement/#post-65798 Mon, 02 Dec 2019 07:04:44 +0530 Reply to How to delete an apex class or apex trigger from a production org in Salesforce?

Hello,

Here are the steps –

1.Download Force.com IDE.
2.Connect to the salesforce production org.
3.Download the apex class/trigger.
4.Open the XML file of the Apex class/trigger.
5.Change the status of the Apex class/trigger to Deleted.
6.Save and deploy to server.

]]>
9e520513e08fd42adfce068948fdc7b4 Yogesh replied to the discussion How to delete a lookup record in vf page on clicking a custom button in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-delete-a-lookup-record-in-vf-page-on-clicking-a-custom-button/#post-65796 Mon, 02 Dec 2019 07:01:36 +0530 Reply to How to delete a lookup record in vf page on clicking a custom button in Salesforce?

Hello,

I have written code for deleting selected contacts.

Apex Controller:-

public class WrapperDeleteContactsAccounts
{
List<WrapContacts> conListWrap ;
List<Account> accounts ;
List<Contact> contacts ;
List<Contact> delContacts;
public WrapperDeleteContactsAccounts()
{
conListWrap = new List<WrapContacts>();
accounts =… Read more

]]>
687146ca76b278586631d37e912d370f Yogesh started the discussion how to open multiple screens at a time in Salesforce lightning accordian? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-open-multiple-screens-at-a-time-in-lightning-accordian/ Fri, 29 Nov 2019 07:18:37 +0530 how to open multiple screens at a time in Salesforce lightning accordian?

how to open multiple screens at a time in lightning accordian.

]]>
fda88db6784ea7b31a8fa4413a1561f4 Yogesh started the discussion What are the use cases of slds-hide and slds-show classes in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-are-the-use-cases-of-slds-hide-and-slds-show-classes/ Fri, 29 Nov 2019 07:16:29 +0530 What are the use cases of slds-hide and slds-show classes in Salesforce?

I want to know the use cases of slds-hide and slds-show classes .

]]>
0757f2fa378c7971d0beb2b80a4b84e0 Yogesh replied to the discussion What are methods in rest in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-are-methods-in-rest-in-salesforce/#post-65729 Fri, 29 Nov 2019 07:14:46 +0530 Reply to What are methods in rest in Salesforce?

Hello,

These are the classes containing methods and properties you can use with Apex REST.

Class                Description
1.RestContext Class  Contains the RestRequest and RestResponse objects.
2.request  Represents an object used to pass data from an HTTP request to an Apex RESTful Web service method.
3.response  Represents an object used… Read more

]]>
84345ebc32e283667218635692d9fa51 Yogesh replied to the discussion What is protocal in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-is-protocal-in-salesforce/#post-65728 Fri, 29 Nov 2019 07:11:29 +0530 Reply to What is protocal in Salesforce?

Hello,

OAuth 2.0 is an open protocol used to allow secure data sharing between applications. The user works in one app but sees the data from another. For example, you're logged in to your Salesforce mobile app and see your data from yourSalesforce org.

]]>
8102ed0e324e28958f48a543ef8696bb Yogesh started the discussion How to save data in custom setting from a Salesforce lightning component? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-save-data-in-custom-setting-from-a-lightning-component/ Thu, 28 Nov 2019 09:06:35 +0530 How to save data in custom setting from a Salesforce lightning component?

There is a need  to save data in a custom setting from a lightning component.

]]>
c20408c3939970eb53e7157234c918de Yogesh replied to the discussion How many roles can I create in Salesforce org? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-many-roles-can-i-create-in-salesforce-org/#post-65666 Thu, 28 Nov 2019 09:04:44 +0530 Reply to How many roles can I create in Salesforce org?

Hello,

By default, a Salesforce org can have up to 500 Roles or Territories. The current Maximum is 10000. A documented business case, including the specific amount ofroles or territories needed, is required when requesting a higher limit.

]]>
2dfe9bae29da4d91ad780c6c7af4a855 Yogesh started the discussion How to implement process indicator in Salesforce lightning component? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-implement-process-indicator-in-a-lightning-component/ Thu, 28 Nov 2019 08:56:16 +0530 How to implement process indicator in Salesforce lightning component?

I have to implement process indicator in a lightning component.

]]>
1e15f62c5cd911a657b7d849c960877a Yogesh replied to the discussion How to render Lightning flow through Visualforce page in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-render-lightning-flow-through-visualforce-page/#post-65662 Thu, 28 Nov 2019 08:53:31 +0530 Reply to How to render Lightning flow through Visualforce page in Salesforce?

Hello,

If you want your flow to render in Lightning runtime in your Visualforce page, embed the flow Aura component to your Visualforce page.
1. Create a Lightning app that declares a dependency on the lightning:flow component.
2. Add the Lightning Components for Visualforce JavaScript library to your Visualforce page using… Read more

]]>
e6aa07e6bd7411e43d48370f67baec0d Yogesh started the discussion How to make header values dynamic in a table of records while showing in a Salesforce Visualforce page? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-make-header-values-dynamic-in-a-table-of-records-while-showing-in-a-vf-page/ Wed, 27 Nov 2019 07:13:34 +0530 How to make header values dynamic in a table of records while showing in a Salesforce Visualforce page?

How to make header values dynamic in a table of records while showing in a vf page.

]]>
92c8377590ee64cde11b8ce1f78a3a96 Yogesh started the discussion How to convert a set of records into a list of records in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-convert-a-set-of-records-into-a-list-of-records/ Wed, 27 Nov 2019 07:10:41 +0530 How to convert a set of records into a list of records in Salesforce?

I have  to convert a set of records into a list of records .

]]>
0461341aa646f4972e0593dfec73370d Yogesh replied to the discussion What are possible Ways to Integrate with Salesforce Force.com? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/what-are-possible-ways-to-integrate-with-salesforce-force-com/#post-65613 Wed, 27 Nov 2019 07:09:09 +0530 Reply to What are possible Ways to Integrate with Salesforce Force.com?

Hello,

If we need to have a straightforward data exchange between a client application and Salesforce, we should go with the Data Integration options like SOAP API, but in case we need to have some logic before or after the data is committed or sent out of Salesforce,  we should opt for the Business Logic Integration options like Apex… Read more

]]>
3b3e10920380ef41879fda119b38128c Yogesh replied to the discussion How many types of API’s avaliable in salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-many-types-of-apis-avaliable-in-salesforce/#post-65612 Wed, 27 Nov 2019 07:02:14 +0530 Reply to How many types of API’s avaliable in salesforce?

Hello,

Salesforce offers two primary types of APIs based on industry standards. The first is a SOAP based API, and the second is a REST based API. The REST API is very lightweight, has no WSDL definition file that is needed to install, and performs very well.

]]>
502be74f8dc5d5fd62f85bd04b4503a4 Yogesh started the discussion How to redirect to a Salesforce lightning record deatil page on click event in JS? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-to-redirect-to-a-lightning-record-deatil-page-on-click-event-in-js/ Tue, 26 Nov 2019 09:55:52 +0530 How to redirect to a Salesforce lightning record deatil page on click event in JS?

How to redirect to a lightning record deatil page on click event in js.

]]>
59db71057f4cbbd3900be22be7a6ceb3 Yogesh started the discussion How many users can be created at a time in a org using mutiple user creation functionality in Salesforce? in the forum Salesforce® Discussions https://www.forcetalks.com/salesforce-topic/how-many-users-can-be-created-at-a-time-in-a-org-using-mutiple-user-creation-functionality/ Tue, 26 Nov 2019 09:54:00 +0530 How many users can be created at a time in a org using mutiple user creation functionality in Salesforce?

How many users can be created at a time in a org using mutiple user creation functionality.

]]>