Tag Archives: Sage CRM

Change Entry Type of Field in Sage CRM

Sage CRM standard functionality allows us to add multiple types (Text, Selection List, Multi Select, Search Select Advanced etc) of entries in an entity and showing them for at the entity level for informative purpose. What if you have created a field with wrong data type? Has anyone thought how one can change the data… Read More »

Setting AspMaxRequestEntityAllowed Value in IIS

You all might be aware of the problem that occurs while Importing Bulk Data into CRM. What actually happens is that CRM tries to upload the file though the routine but a small value in AspMaxRequestEntityAllowed in the IIS settings or rather the Metabase.XML file cause the import routine to fail mid way and throws… Read More »

Dropdown Sync in Sage CRM System

Everyone must be aware that standard Sage CRM system allows us to integrate with the Sage Accpac system. We have developed many routines for showing data from Sage Accpac in Sage CRM. I would like to explain one of the functionality of Sync Dropdowns using a new field lookup in Accpac.Let’s say assume you want… 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 »