Tag Archives: Sage CRM 7.1

Export to Excel and Export to PDF functionality on Sage CRM Self Service lists

Sage CRM Self Service allows customers to access information or request services and support over the Web whenever they want. Customers can directly receive information based on their preferences, requests, and history through self- service portal. Read our other Self-service offerings at the end of this post. Sage CRM user can export data into Excel/PDF/CSV… Read More »

Salesperson Mapping Functionality in GUMU™ Sage 100 ERP integration

In our GUMU™ integration, we can make use of Salesperson mapping functionality for linking Sage CRM users with Sage 100 (MAS 90/200) Salesperson. This functionality integrates Account Manger field in SageCRM with MAS 90/200 Salesperson field. Please refer the below screenshot. Once Salesperson Mapping functionality is established and territories are build  it will provide all… 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 »