• Sarah Boggio 3
  • NEWBIE
  • 10 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 1
    Likes Given
  • 3
    Questions
  • 5
    Replies
I downloaded a managed package last year, including 97 Apex Classes and a number of Apex Triggers, and the company recently went out of business. I'm not a developer and have had considerable trouble understanding how to use Eclipse and Force.com IDE to delete the Apex classes and triggers so that I may uninstall the package. Can someone point me in the direction of a comprehensive step-by-step to complete the delete and uninstall? I've found a number of articles to help with individual pieces of the process but I find myself stuck once I'm left to my own devices. I'm linking to a few of the articles I followed that didn't work. Any help would be greatly appreciated! Thank you.
https://www.salesforceben.com/way-to-delete-apex-classes-from-pro
https://developer.salesforce.com/forums/?id=906F00000008yIyIAI
http://sfdcsrini.blogspot.com/2014/08/how-to-delete-class-in-production-in.html

 
I've built a flow that triggers from a button on the opportunity, asks a few questions about the specifics of the demo, then creates a task that includes the answers to those questions. The flow I built successfully asks the questions and creates the task record but isn't populating the answers from the flow screen. This is the first flow I've built without the benefit of Trailhead or an internet resource to QA my work so I'm a bit lost as to why it's not including the demo detail on the task record.   My flow includes a record lookup of the opportunity, a screen that asks the questions the sales engineers need to scope priority, creates a record, and thanks the sales person with a link to the newly creates Sales Engineer task.
Hi there. My sales engineering team asked for some help prioritizing their demo queue. I've built a flow that triggers from a button on the opportunity, asks a few questions about the specifics of the demo, then creates a task that includes the answers to those questions. The flow I built successfully asks the questions and creates the task record but isn't populating the answers from the flow screen. This is the first flow I've built without the benefit of Trailhead or an internet resource to QA my work so I'm a bit lost as to why it's not including the demo detail on the task record. 

My flow includes a record lookup of the opportunity, a screen that asks the questions the sales engineers need to scope priority, creates a record, and thanks the sales person with a link to the newly creates Sales Engineer task. 
User-added image
User-added imageUser-added image
User-added imageUser-added image
I am trying to build a custom Send with DocuSign button that will perform three actions when clicked:
  1. Make sure all necessary Order Form fields are populated
  2. Populate the form with field merge data from Salesforce
  3. Identify which type of Subscription Order to send, and 
  4. Route the Order to the appropriate customer and internal Signing Group
I am getting the following Error: "A problem with the OnClick JavaScript for this button or link was encountered: missing ) after argument list" 

Here is all of my code. I have never used JavaScript before so this may be completely wrong but I bought a JavaScript Udemy class over the weekend to try and accomplish this goal. Any assistance you could provide would be greatly appreciated. Thank you!
Code:
{!REQUIRESCRIPT("/soap/ajax/19.0/connection.js")}

//Verify that all fields are filled out
if(ISBLANK({!Opportunity.Subscription__c})||
ISBLANK({!Opportunity.Product__c})||
ISBLANK({!Opportunity.Payment_Terms__c})||
ISBLANK({!Opportunity.Project_City__c})||
ISBLANK({!Opportunity.Delivery__c})||
ISBLANK({!Opportunity.Payment_Terms__c})||
ISBLANK({!Opportunity.Primary_Contact__c})||
ISBLANK({!Opportunity.Accounting_Contact__c})||
ISBLANK({!Opportunity.Amount}))||
{
alert ("Please fill out all fields in the Order Form Information and Contract Detail sections.");
}
//Fill out and send Consultant Subscription template if the Subscription is Consultant
elseif({!Opportunity.Subscription__c}=="Consultant Subscription"||
{
CES='Please DocuSign: StreetLight Data Consultant Subscription'; //Email Subject
CEM='Attached is the StreetLight Data Subscription order for your signature. Thank you!'; //Email Message
LA='0'; //List Attachments from within Notes and Attachments - 0 or 1
DST='11647cd6-93eb-456a-94d1-9e0a4b7303b1'; //Default Standard Template ID
OCO='Send'; //On Click Options - Send or Tag
CRL='Email~(!Opportunity.Primary_Contact__c};LastName~{!Opportunity.Primary_Contact__c};RoutingOrder~1;Role~R1';
CCRM='Customer Signer~Signer 1';StreetLight Signer~Signer 2';

//********* Page Callout (Do not modify) *********//
window.location.href="/apex/dsfs__DocuSign_CreateEnvelope?DSEID=0&SourceID={!Opportunity.Id}&RC="+RC+"&RSL="+RSL+"&RSRO="+RSRO+"&RROS="+RROS+"&CCRM="+CCRM+"&CCTM="+CCTM+"&CRCL="+CRCL+"&CRL="+CRL+"&OCO="+OCO+"&DST="+DST+"&CCNM="+CCNM+"&LA="+LA+"&CEM="+CEM+"&CES="+CES+"&SRS="+SRS+"&STB="+STB+"&SSB="+SSB+"&SES="+SES+"&SEM="+SEM+"&SRS="+SRS+"&SCS="+SCS+"&RES="+RES;
//*******************************************//
}
//Verify that all fields are filled out
if(ISBLANK({!Opportunity.Subscription__c})||
ISBLANK({!Opportunity.Product__c})||
ISBLANK({!Opportunity.Payment_Terms__c})||
ISBLANK({!Opportunity.Project_City__c})||
ISBLANK({!Opportunity.Delivery__c})||
ISBLANK({!Opportunity.Payment_Terms__c})||
ISBLANK({!Opportunity.Primary_Contact__c})||
ISBLANK({!Opportunity.Accounting_Contact__c})||
ISBLANK({!Opportunity.Amount}))||
{
alert ("Please fill out all fields in the Order Form Information and Contract Detail sections.");
}

//Fill out and send Pay-per-use Subscription template if incorporated the Subscription is Pay-per-use
elseif({!Opportunity.Subscription__c}=="Pay-per-use Subscription"||
{
CES='Please DocuSign: StreetLight Data Pay-per-use Subscription'; //Email Subject
CEM='Attached is the StreetLight Data Subscription order for your signature. Thank you!; //Email Message
LA='0'; //List Attachments from within Notes and Attachments - 0 or 1
DST='07a29bf3-225e-494d-8c55-88fa5822e960'; //Default Standard Template ID
OCO='Send'; //On Click Options - Send or Tag
CRL='Email~{!Opportunity.Primary_Contact__c};LastName~{!Opportunity.Primary_Contact__c};RoutingOrder~1;Role~R1';
CCRM='Customer Signer~Signer 1';StreetLight Signer~Signer 2';

//********* Page Callout (Do not modify) *********//
window.location.href="/apex/dsfs__DocuSign_CreateEnvelope?DSEID=0&SourceID={!Opportunity.Id}&RC="+RC+"&RSL="+RSL+"&RSRO="+RSRO+"&RROS="+RROS+"&CCRM="+CCRM+"&CCTM="+CCTM+"&CRCL="+CRCL+"&CRL="+CRL+"&OCO="+OCO+"&DST="+DST+"&CCNM="+CCNM+"&LA="+LA+"&CEM="+CEM+"&CES="+CES+"&SRS="+SRS+"&STB="+STB+"&SSB="+SSB+"&SES="+SES+"&SEM="+SEM+"&SRS="+SRS+"&SCS="+SCS+"&RES="+RES;
//*******************************************//
}

Thank you!
Cheers,
Sarah

P.S. Apologies for posting this question here but DocuSign support doesn't provide JavaScript assistance and StackOverflow was not the kindest with my question. 
I downloaded a managed package last year, including 97 Apex Classes and a number of Apex Triggers, and the company recently went out of business. I'm not a developer and have had considerable trouble understanding how to use Eclipse and Force.com IDE to delete the Apex classes and triggers so that I may uninstall the package. Can someone point me in the direction of a comprehensive step-by-step to complete the delete and uninstall? I've found a number of articles to help with individual pieces of the process but I find myself stuck once I'm left to my own devices. I'm linking to a few of the articles I followed that didn't work. Any help would be greatly appreciated! Thank you.
https://www.salesforceben.com/way-to-delete-apex-classes-from-pro
https://developer.salesforce.com/forums/?id=906F00000008yIyIAI
http://sfdcsrini.blogspot.com/2014/08/how-to-delete-class-in-production-in.html

 
I've built a flow that triggers from a button on the opportunity, asks a few questions about the specifics of the demo, then creates a task that includes the answers to those questions. The flow I built successfully asks the questions and creates the task record but isn't populating the answers from the flow screen. This is the first flow I've built without the benefit of Trailhead or an internet resource to QA my work so I'm a bit lost as to why it's not including the demo detail on the task record.   My flow includes a record lookup of the opportunity, a screen that asks the questions the sales engineers need to scope priority, creates a record, and thanks the sales person with a link to the newly creates Sales Engineer task.
Hi there. My sales engineering team asked for some help prioritizing their demo queue. I've built a flow that triggers from a button on the opportunity, asks a few questions about the specifics of the demo, then creates a task that includes the answers to those questions. The flow I built successfully asks the questions and creates the task record but isn't populating the answers from the flow screen. This is the first flow I've built without the benefit of Trailhead or an internet resource to QA my work so I'm a bit lost as to why it's not including the demo detail on the task record. 

My flow includes a record lookup of the opportunity, a screen that asks the questions the sales engineers need to scope priority, creates a record, and thanks the sales person with a link to the newly creates Sales Engineer task. 
User-added image
User-added imageUser-added image
User-added imageUser-added image
I am trying to build a custom Send with DocuSign button that will perform three actions when clicked:
  1. Make sure all necessary Order Form fields are populated
  2. Populate the form with field merge data from Salesforce
  3. Identify which type of Subscription Order to send, and 
  4. Route the Order to the appropriate customer and internal Signing Group
I am getting the following Error: "A problem with the OnClick JavaScript for this button or link was encountered: missing ) after argument list" 

Here is all of my code. I have never used JavaScript before so this may be completely wrong but I bought a JavaScript Udemy class over the weekend to try and accomplish this goal. Any assistance you could provide would be greatly appreciated. Thank you!
Code:
{!REQUIRESCRIPT("/soap/ajax/19.0/connection.js")}

//Verify that all fields are filled out
if(ISBLANK({!Opportunity.Subscription__c})||
ISBLANK({!Opportunity.Product__c})||
ISBLANK({!Opportunity.Payment_Terms__c})||
ISBLANK({!Opportunity.Project_City__c})||
ISBLANK({!Opportunity.Delivery__c})||
ISBLANK({!Opportunity.Payment_Terms__c})||
ISBLANK({!Opportunity.Primary_Contact__c})||
ISBLANK({!Opportunity.Accounting_Contact__c})||
ISBLANK({!Opportunity.Amount}))||
{
alert ("Please fill out all fields in the Order Form Information and Contract Detail sections.");
}
//Fill out and send Consultant Subscription template if the Subscription is Consultant
elseif({!Opportunity.Subscription__c}=="Consultant Subscription"||
{
CES='Please DocuSign: StreetLight Data Consultant Subscription'; //Email Subject
CEM='Attached is the StreetLight Data Subscription order for your signature. Thank you!'; //Email Message
LA='0'; //List Attachments from within Notes and Attachments - 0 or 1
DST='11647cd6-93eb-456a-94d1-9e0a4b7303b1'; //Default Standard Template ID
OCO='Send'; //On Click Options - Send or Tag
CRL='Email~(!Opportunity.Primary_Contact__c};LastName~{!Opportunity.Primary_Contact__c};RoutingOrder~1;Role~R1';
CCRM='Customer Signer~Signer 1';StreetLight Signer~Signer 2';

//********* Page Callout (Do not modify) *********//
window.location.href="/apex/dsfs__DocuSign_CreateEnvelope?DSEID=0&SourceID={!Opportunity.Id}&RC="+RC+"&RSL="+RSL+"&RSRO="+RSRO+"&RROS="+RROS+"&CCRM="+CCRM+"&CCTM="+CCTM+"&CRCL="+CRCL+"&CRL="+CRL+"&OCO="+OCO+"&DST="+DST+"&CCNM="+CCNM+"&LA="+LA+"&CEM="+CEM+"&CES="+CES+"&SRS="+SRS+"&STB="+STB+"&SSB="+SSB+"&SES="+SES+"&SEM="+SEM+"&SRS="+SRS+"&SCS="+SCS+"&RES="+RES;
//*******************************************//
}
//Verify that all fields are filled out
if(ISBLANK({!Opportunity.Subscription__c})||
ISBLANK({!Opportunity.Product__c})||
ISBLANK({!Opportunity.Payment_Terms__c})||
ISBLANK({!Opportunity.Project_City__c})||
ISBLANK({!Opportunity.Delivery__c})||
ISBLANK({!Opportunity.Payment_Terms__c})||
ISBLANK({!Opportunity.Primary_Contact__c})||
ISBLANK({!Opportunity.Accounting_Contact__c})||
ISBLANK({!Opportunity.Amount}))||
{
alert ("Please fill out all fields in the Order Form Information and Contract Detail sections.");
}

//Fill out and send Pay-per-use Subscription template if incorporated the Subscription is Pay-per-use
elseif({!Opportunity.Subscription__c}=="Pay-per-use Subscription"||
{
CES='Please DocuSign: StreetLight Data Pay-per-use Subscription'; //Email Subject
CEM='Attached is the StreetLight Data Subscription order for your signature. Thank you!; //Email Message
LA='0'; //List Attachments from within Notes and Attachments - 0 or 1
DST='07a29bf3-225e-494d-8c55-88fa5822e960'; //Default Standard Template ID
OCO='Send'; //On Click Options - Send or Tag
CRL='Email~{!Opportunity.Primary_Contact__c};LastName~{!Opportunity.Primary_Contact__c};RoutingOrder~1;Role~R1';
CCRM='Customer Signer~Signer 1';StreetLight Signer~Signer 2';

//********* Page Callout (Do not modify) *********//
window.location.href="/apex/dsfs__DocuSign_CreateEnvelope?DSEID=0&SourceID={!Opportunity.Id}&RC="+RC+"&RSL="+RSL+"&RSRO="+RSRO+"&RROS="+RROS+"&CCRM="+CCRM+"&CCTM="+CCTM+"&CRCL="+CRCL+"&CRL="+CRL+"&OCO="+OCO+"&DST="+DST+"&CCNM="+CCNM+"&LA="+LA+"&CEM="+CEM+"&CES="+CES+"&SRS="+SRS+"&STB="+STB+"&SSB="+SSB+"&SES="+SES+"&SEM="+SEM+"&SRS="+SRS+"&SCS="+SCS+"&RES="+RES;
//*******************************************//
}

Thank you!
Cheers,
Sarah

P.S. Apologies for posting this question here but DocuSign support doesn't provide JavaScript assistance and StackOverflow was not the kindest with my question. 
I am trying to complete the Trailhead project to Incorporate Data from the Weather Company in Salesforce.  I've gotten to the Create a Lightning Component to Display the Weather unit, and have created the Apex controller class, and the Lightning Component bundle, copying the code as provided in the unit.  However, when I try to add the component to the page I get an "A Component Error has occurred!" Error.  This is what the error looks like:
User-added image

I am wondering what is causing this error, as I copied the code directly as it was located in the trailhead and have followed the directions exactly.  Any help would be appreciated.