• Omi Deshmane
  • NEWBIE
  • 15 Points
  • Member since 2019
  • PopcornApps

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 2
    Replies
I have Standard button on Quote (Create PDF), for which i need to change the label. I have created custom button with required name and tried to replaced the Standard button by giving URL of Standard button. but its not behaving same as Std button.
below is my custom button formula.
Content Source is URL
Behavior : open in existing window

{!URLFOR($Action.Quote.CreatePdf,Quote.Id)}

anybody has idea on this.
I have a map<string, Location>, location has city,country,street state field.
consider String is name of person which has location
ex(map<sam,his location>).
I got the map from apex as expected with key and value.

I want name and associated location infornt
Name : Location
ex:
<lightning:formattedAddress  street= "{!mapValue.Street__c}"
                                                city= "{!mapValue.City__c}"
                                        province="{!mapValue.State__c}"
                                   postalCode="{!mapValue.Postal_Code__c}"
                                    country="{!mapValue.Country__c}"
                                                            />
I have used two iteration for key and value but values are not showing up.
I have Two List of object records.
List<Account> accList1 = {1st record, 2nd record, 3rd record, 4th record};
List<Account> accList2 = {1st record, 3rd record};
 
I have another List<Account> accList3 = new List<Account>()
now I want to compare both List list1 and list2, get the record from list1 which is not present in list2 and add to List3.
 
I have Two List of object records.
List<Account> accList1 = {1st record, 2nd record, 3rd record, 4th record};
List<Account> accList2 = {1st record, 3rd record};
 
I have another List<Account> accList3 = new List<Account>()
now I want to compare both List list1 and list2, get the record from list1 which is not present in list2 and add to List3.
 
I have Standard button on Quote (Create PDF), for which i need to change the label. I have created custom button with required name and tried to replaced the Standard button by giving URL of Standard button. but its not behaving same as Std button.
below is my custom button formula.
Content Source is URL
Behavior : open in existing window

{!URLFOR($Action.Quote.CreatePdf,Quote.Id)}

anybody has idea on this.
I have Two List of object records.
List<Account> accList1 = {1st record, 2nd record, 3rd record, 4th record};
List<Account> accList2 = {1st record, 3rd record};
 
I have another List<Account> accList3 = new List<Account>()
now I want to compare both List list1 and list2, get the record from list1 which is not present in list2 and add to List3.