Category Archives: ASP

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 »

XML based Fusion charts in COM API

Fusion charts component added to SageCRM improves the overall visual experience of reports. We can display fusion charts on dashboards too. There are already methods explained in Developer guide to build the charts using API methods. In this blog I will explain how we can use fusion widget xml to build the chart and display… Read More: XML based Fusion charts in COM API »

Adding multiple Screen blocks on the same page based on different conditions in COM API

Here is the scenario. We were working on the mutual fund applications tracking. As you might be already familiar with, we need to collect all the necessary details of an applicant for filing application in the system. I am taking one of the scenarios out of design we had achieved. There is a First Applicant… Read More: Adding multiple Screen blocks on the same page based on… »

Simple split function in SQL

Most of the times while designing procedures and cursors for customization you may need to use a function which will split your string based on predefined delimiter and return you items set. Below is the function you can create and use in SQL for the same. CREATE FUNCTION dbo.Split(@String nvarchar(4000), @Delimiter char(1)) returns @Results TABLE… Read More: Simple split function in SQL »

Writing validate scripts and handling ASP pages to fire validations

Sage CRM provides a very essential way of writing an validate script at the Screen level in the Validate Script section to validate different types of fields in Sage CRM. This is a very basic part of development practice. Now, if you are writing validate script in the standard Sage CRM screens, then above method… Read More: Writing validate scripts and handling ASP pages to fire validations »