Tag Archives: Sage CRM 7.0

Shortcut Keys in Sage CRM

Come Meet the Greytrix Team Exhibiting at Sage South Africa Annual Conference Sage Insights 2014 from Thursday 6th – 9th February 2014. Our Sage CRM session on Friday 7th February, 2014 10h45 – 11h25 End to end customer management with Greytrix Service CRM verticals: Service Management, Survey Management and Customer Portals for Sage CRM – With… Read More »

Modify Sage CRM field Captions in No Time

Sage CRM system is an easily configurable and adaptable in most of companies as it manages customer information in an organized manner. Due to this fact, Sage CRM can be used across any industry to manage business processes. Some business processes are simple and straight forward where plain vanilla Sage CRM can be used with… Read More »

You may need to recreate views manually – II

Sage CRM was installed 3 months back on our server for internal use and was working fine. Now our network administrators had changed password for SA account for security purpose and trying to logon to Sage CRM and get You May Need to Recreate Views Manually. (He was simply not aware that Sage CRM had… Read More »

Retrieve Primary Keys in TLS

Table Level Scripts (TLS) are an alternative method of creating SQL triggers that can be performed in Sage CRM system. Table Level Script (TLS) are used to perform various operations after inserting records, updating or deleting records in Sage CRM. To perform operations, it is necessary to fetch the primary ID of the current entity in… Read More »

Remove Action Buttons using client side script

We had posted much detailed content earlier for removing buttons from standard screens using client side scripts. This is in continuation with the same. When you are customize any List or Summary screen you can find there are lots of action buttons available on right hand side; for example communication search screen. On this screen you can see Find,Clear… Read More »

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 »

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 »