Category Archives: Sage CRM

Error while writing scripts on OnChange script section

Recently I came across a problem with OnChangeScript in sage CRM version 7.1. Somehow OnChangeScript for search select advanced fields doesn’t like the script to be on multiple lines! i.e. Below written script doesn’t work: id = document.EntryForm.comp_type.value; alert (‘comp_type:’+id); and Below written script works: id = document.EntryForm.proj_companyid.value;alert (companyid :’+id); First script gives the following… Read More »

Desktop Size Limitation

In my earlier post I had explained the different workarounds if the user gets the below error. https://www.greytrix.com/blogs/sagecrm/2010/04/error-exporting-reports-to-excel-in-crm Recently, I faced the same issue while exporting the Sage CRM standard report into Excel. However when I run the report by setting Display Options as Screen/ Print Preview, then the report runs without any error. Looking… Read More »

Enable Sage CRM Entity for WebService

Sage CRM has very well implemented Entity structure to address the concerns of many business modules and efficient methods to access them from COM API as well as external utilities. We can design and implement Primary as well as secondary entities on the fly based on the requirement. All these entities are consolidated under single… Read More »

Alignment of buttons on custom filter screens

When we add new custom screens in Sage CRM, we always make sure that the look and feel of the screen is in synch with the standard screens in CRM. List and filter screen are amongst the common screens which we create for the custom entities. However there can be a little catch in adding buttons… Read More »

Expose hidden fields in Sage CRM entities

Sage CRM has a very good reporting structure inbuilt. You can create views; make them usable as Report view by checking the corresponding checkbox. Further you can attach this view to report and build search criterion/contents based on the same. Sometimes even though field is visible in your view you cannot find it to add… Read More »