Category Archives: Sage CRM

Greytrix Sage CRM/CRM.com – Product Import

SageCRM apart from being an excellent web based CRM also offers other features like data upload. This option enables a user to import data from a flat file into company, person and address entities of SageCRM. But one other thing that is most frequently imported in SageCRM is the product import. Since there was no… Read More »

GUMU™ for Sage CRM – MAS 90/200 Integration

Greytrix has released GUMU™ for Sage CRM – MAS 90/200 Integration version 3.0. This is a real time bi directional integration between Sage CRM and Sage MAS 90/200. Based on our experiences with the earlier versions and resellers feedback we have incorporated some new features and likewise we have dropped some unwanted and cumbersome steps… Read More »

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 »

Sage CRM Product Import

Greytrix released a new tool that will import the products from an excel sheet into Sage CRM and Sage CRM.com. Like most of the other integration products, the product import tool uses Sage CRM web-services to import data in Sage CRM. Along with the installation, Greytrix provides the user with the excel spreadsheet template. The… Read More »

Grid column header alignment

To change the alignment of the grid column header, you can write client side script using CustomContent of the required List Block of your Entity from “Administration>>Customization>>Entity Name>>Lists tab>>List Block Name”. Changing the Caption Name to use HTML will affect all occurrences of this field name in CRM. Write below mentioned script with Onload event… Read More »

Debugging custom ASP pages

The following information can be useful for you while working with custom ASP pages. It seems that, whenever your page crashes you see the HTTP 500 error. The problem might be with Included Files in ASP page or there might be some Tags missing. You can uncheck the settings in browser to show friendly HTTP… Read More »

Changing field length of a text field

Yes, we can easily change the field length of an existing text field. We will have to just make changes in the component file. Here, for example, we have changed the field length of the text type field (i.e. “Test”) from 20 to 30. FamilyType=’Tags’; Family=’ColNames’; Code=’comp_test’; Captions[‘US’]=’Test’; AddCaption(); AddColumn(‘Company’,’comp_test’,’10’,’(30)‘,’true’,’false’); var EditsId11144 = AddCustom_Edits(‘Company’,’comp_test’,’10’,’0′,”,’20’,”,”,”,”,”); AddCustom_Data(‘Custom_Edits’,’ColP’,’ColP_ColPropsId’,’ColP_ColPropsId,ColP_TiedFields,ColP_Restricted,ColP_DataType,ColP_DataSize’,EditsId11144+’,”,”,””,”4″,”30″‘,’1’)… Read More »