Tag Archives: ASP

Calling DLL method and .asp Page on New Tab

Sage CRM is widely used because of its easy customization and different ways of customization as per the user requirements.  User can achieve multiple things without new customization, by using different setting option in Administration. So in this Blog we are going to see some tricks, How to add Tab in Team CRM and call… Read More: Calling DLL method and .asp Page on New Tab »

Customization for exporting Notes

Hello everyone! In my previous blog I have explained how we can export notes for leads using sage CRM’s standard report functionality. We can do the same with the help of coding as well. New Stuff: Client Side Script to Concatenate Address Recently, one of our client asked us to add a button on notes… Read More: Customization for exporting Notes »

Opening Asp.Net page in CRM 7.2 without losing context menus

Transition of Sage CRM into its new look and feel in version 7.2 includes major changes in technical aspects. The version is made compatible with wide range of recent versions of browsers. One of the major changes is that iFrames are eliminated in 7.2 version of Sage CRM as most of the latest browsers do… Read More: Opening Asp.Net page in CRM 7.2 without losing context menus »

Executing Stored Procedures using COM API methods

This is developer specific technical tip which can be used in CRM customizations. In customizations we usually execute sql statements using CreateQueryObj function. For Eg. SqlQuery = “Select comp_name from company (nolock) where comp_compname=”+sCompId; SqlObj = eWare.CreateQueryObj(SqlQuery); SqlObj.SelectSQL(); Here to retrieve the value of comp_name we can use SqlObj(“comp_name”). The above example is for the… Read More: Executing Stored Procedures using COM API methods »