Skip to main content
All,

 

I am wondering if there is a way to create a button, that will start another Button ( with conga composer parameters) based on a checkbox field in my custom object.

 

Currently, I have the following below created in my Recommendation__c custom object

 

1. Checkbox field - Docusign_Button_Start__c

 

2. Conga Composer button - Send_To_Docusign

 

3. Docusign_Button_Start javascript button 

 

{!REQUIRESCRIPT("/soap/ajax/20.0/connection.js")}

 

{!REQUIRESCRIPT("/soap/ajax/20.0/apex.js")}

 

if(ISBLANK({!Recommendation__c.Docusign_Button_Start__c})) {

 

alert ("Need to select the Docusign Button Start Checkbox ");

 

}

 

else{

 

window.open(  );

 

}

 

Request - When a user selects the Docusign_Button_Start , if the Docusign_Button_Start__c = FALSE, then I would like a Validation Rule to prevent the Send_To_Docusign button from starting. 

 

In the Docusign_Button_Start javascript button, I have the following code below, but I am having a difficult time trying to find the code that will start the Send_To_Docusign button.

 

I could appreciate all your help. 

 

 
2 answers
0/9000