
Yogesh Sharma
Individual-
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 5 years ago
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?
-
Yogesh started the discussion What is the case of system change event in Salesforce lightning? in the forum Salesforce® Discussions 5 years ago
What is the case of system change event in Salesforce lightning?
What is the case of system change event in lightning?
-
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 5 years ago
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
-
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 -
Yogesh started the discussion What is the use case of <lightning:notificationsLibrary /> tag in Salesforce lightning? in the forum Salesforce® Discussions 5 years ago
What is the use case of <lightning:notificationsLibrary /> tag in Salesforce lightning?
What is the use case of <lightning:notificationsLibrary /> tag in lightning?
-
Yogesh started the discussion How can we use same aura:id for multiple Salesforce lightning tags in a component? in the forum Salesforce® Discussions 5 years ago
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 ?
-
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 5 years ago
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
-
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 5 years ago
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 -
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 5 years ago
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.
-
Yogesh started the discussion How to set default value in <lightning:select> in Salesforce? in the forum Salesforce® Discussions 5 years ago
How to set default value in <lightning:select> in Salesforce?
I have to set default value in <lightning:select>.
-
Yogesh replied to the discussion How to schedule batch class based on country in Salesforce? in the forum Salesforce® Discussions 5 years ago
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
-
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 5 years ago
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.
-
Yogesh started the discussion Is 'name' field required while inserting a list custom setting record from apex in Salesforce? in the forum Salesforce® Discussions 5 years ago
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?
-
Yogesh started the discussion How to insert a list custom setting record from apex in Salesforce? in the forum Salesforce® Discussions 5 years ago
How to insert a list custom setting record from apex in Salesforce?
I have to insert a list custom setting record from apex.
-
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 5 years ago
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.
-
Yogesh replied to the discussion How can I send an email while using PageReference getContent() method in Salesforce? in the forum Salesforce® Discussions 5 years ago
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 -
Yogesh started the discussion How to implement Custom Validation in a Salesforce Lightning Input Field Component? in the forum Salesforce® Discussions 5 years ago
How to implement Custom Validation in a Salesforce Lightning Input Field Component?
How to implement Custom Validation in a Lightning Input Field Component .
-
Yogesh started the discussion How to open a div on a particular row in a Salesforce lightning table list? in the forum Salesforce® Discussions 5 years ago
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.
-
Yogesh replied to the discussion Is there any tool in Salesforce related to sustainable development goal? in the forum Salesforce® Discussions 5 years ago
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
-
Yogesh replied to the discussion What is profile wizard in salesforce? in the forum Salesforce® Discussions 5 years ago
Reply to What is profile wizard in salesforce?
Hello,
Its an app on appExchange.
- Load More