Tag Archives: workflow

How do you find the Workflow Action Buttons from custom content?

Let’s say that there is a workflow action button named “samplewkflbtn” on your screen and you want to track the same for attaching your custom URL or some other purpose. You may follow the below given steps to achieve the same. 1. Find the “Table” element by getElementById method. var a=document.getElementsByTagName(“Table”); 2. Loop through all… Read More: How do you find the Workflow Action Buttons from custom… »

EOleException error while executing Procedure

You must have seen this irritating error while executing Stored Procedure from Workflow Action. EOleException: Procedure or function TESTSP has too many arguments specified. Solution: The point is that, when Stored Procedure gets executed from the Workflow action, CRM appends default parameters to the Execute Procedure statement. So we have to declare these parameters at… Read More: EOleException error while executing Procedure »

Hide workflow buttons

Write this script written between in custom content field of Opportunity Detail Screen with Window’s Onload event. datediff=document.EntryForm. hdndiff.value; if(datediff>2) { var a=document.getElementsByTagName(“Table”); for(i=0;i

Activate workflows for Opportunity/Cases created through Email manager server in ACCPAC CRM.

Need to keep track of incoming mails? Want to sort them with reference to cases?Solution:Now it is possible with in Sage CRM. We have the tool which will track the subject line for any incoming mail in outlook and find the reference case for this email. If the case does not exist, then it will… Read More: Activate workflows for Opportunity/Cases created through Email manager server in… »