Author Archives: greysagecrm

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… »

Object Expected error on Screen level customization

You must have experienced this error populating sometimes when you handle the screen level customizations. Mostly this problem deals with the “View mode” and “Edit Mode” of the screens. Whenever we do some screen level customizations we will always have to take into consideration the view mode and edit mode of the screens. For example… Read More: Object Expected error on Screen level customization »

eWare and CRM objects in Sage CRM

In Sage CRM, for ASP pages customization, we always use eWare.GetContextInfo() or eWare.AddButton() and etc. Have you ever thought, what is eWare? eWare is an object of ACCPAC CRM class. This object is created and initialized in the two files named as “”crmwizardnolang.js and “accpaccrmNoLang.js”. In order to use eWare object and its related properties… Read More: eWare and CRM objects in Sage CRM »

SQL Trigger to track previous & new values for fields

Description: Think about tracking the old data whenever it is changed to new one??? Suppose you want to track this information in single table and display in the tab against any CRM entities. This can be achieved using sql trigger functionality. Solution: For this first you may need to create two magic tables (i.e. inserted… Read More: SQL Trigger to track previous & new values for fields »

SQL Trigger to track previous & new values for fields

Description: Think about tracking the old data whenever it is changed to new one??? Suppose you want to track this information in single table and display in the tab against any CRM entities. This can be achieved using sql trigger functionality. Solution: For this first you may need to create two magic tables (i.e. inserted… Read More: SQL Trigger to track previous & new values for fields »