• SFAdmin3
  • NEWBIE
  • 25 Points
  • Member since 2021

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 1
    Replies
Hi all! 

I have a visualforce page that is automatically linking records from the page it is on in Classic. It is not working in Lightning though. It will go to create the record, but not link the related records. I think it is because of the different format, but would love some help! 

Currently:

  <section class="icon tco-request">
          <h3 class="aligner"><a href="https://OurDomain.my.salesforce.com/a6z/e?retURL=%2Fhome%2Fhome.jsp&RecordType=0122J000000VCwP&ent=01I50000000fTLg&CF00N2J00000Ah1Jw={!Opportunity.Name}&CF00N5000000AZMPT={!Opportunity.Account.Name}&00N2J00000Axp8e=TRUE" target="_blank">TCO Request</a></h3>
        </section>
 
HI! I am an admin and have used destructive changes to remove APEX before, but I am curious if I can use it to delete a custom button from a managed package. Here is what I pieced together, but it is not working:

Package: 
package.xml

<?xml version="1.0"?>

<!--?xml version="1.0" encoding="UTF-8"?-->

-<package xmlns="http://soap.sforce.com/2006/04/metadata">

<version>30.0</version>

</package>

Destructive Changes:
destructiveChanges.xml

<?xml version="1.0"?>

-<types>

<members>Opportunity.DeliveryStatus</members>

<members> Opportunity.DeliveryStatus </members>

<name>webLink</name>

</types>
 
Is it possible to just delete a button from a managed package. We dont want to uninstall the entire managed package, just the button. Any advice?
Hello, we want to have 2 lightning paths, representing 2 different picklists, on the same record type, on the same lightning page. We also want the button at the end of the path, so would need to use the "Lighting:path" component (and not the "Lighting:picklist" component, which seems does not have the button.) Is this possible to do?