Browse By Tags

  • Using a Website gadget to include a custom script page in an Interactive Dashboard

    Sage CRM has a wide range of different gadget types that can be included in the Interactive Dashboard. Below you can see that I have created a custom Dashboard which includes List Gadgets, Chart Gadgets and a Record Summary Gadget. There is also a custom…
  • Visual Studio snippets available for partners to download

    If you work with Visual Studio then a library of snippets has been added to the General Development Resources folder that is available to all partners within the community. This is a resource that will prove very useful for you when customising the Sales…
  • The eWareQuery Object: A warning.

    I was going to call this a 'warning from history' but as you read the rest of the article you may realise that the 'updateddate' may never have been filled in. The eWareQuery object is a fantastically useful tool for on-premise developers to use in…
  • Example Code to Generate a Pseudo-Random Password

    A Customer had a need as part of a Case Workflow to generate a Self Service username and password for their contacts. They were using an ASP page to do this and asked whether I had any code to generate a password for Self Service. This is a simple little…
  • Adding a Button that Passes Contextual Information to an External Webpage

    You can add a button In a custom ASP page In a the code of a .NET assembly In a an existing system screen Buttons in an ASP Page If this is in an ASP page then the code for a simple button to call an external ASP page looks like var strCallASPButton…
  • Useful Date Functions

    Occasionally you will need to fetch a date from either the CRM database or perhaps from an external system that is then needs to be formatted so it looks like a CRM date. All users are able to set their date preferences. The are other articles that…
  • How to filter a pipeline object based on filter screen values

    We know that a LIST block can be filtered based on a standard filter screen block via var filter = eWare.GetBlock("MyFilterBoxName"); var list = eWare.GetBlock("MyListName"); list.ArgObj = filter; Can we filter a pipeline object in a similar fashion…
  • [ASP Classic-Javascript] Redirecting from a third party site to SelfService without relogging.

    Hello, The current system we have with our customer is that the typical user logs through the customized self-service portal, register employees to participate in trainings and then pay for the registration. When the user pays, we redirect throught…
  • Still on custom screen building but help to convert Javascript to jQuery syntax

    Hi, If anyone has been following my journey to create a list screen with editable checkboxes in aprevious thread, you'll know I've hit a few issues. The basic page works, pretty much how I want it. I have to click the buttons twice to make the page…
  • JavaScript Intranet vs Extranet Version 7.3?

    Looking for some assistance with an Intranet vs Extranet issue. We are currently using Version 7.2.d. I am wondering if we upgrade to Version 7.3 if that might help solve our issue. It seems I read somewhere that 7.3 solved some of the cross browser compatibility…
  • Version 7.3 JavaScript Intranet vs Extranet

    Looking for some assistance with an Intranet vs Extranet issue. We are currently using Version 7.2.d. I am wondering if we upgrade to Version 7.3 if this might help solve our issue. It seems I read somewhere that 7.3 solved some of the cross browser compatibility…
  • Modify Save button

    Hoping someone can help with modifying the "Save" button on an asp page. The Save and Cancel buttons appear on the page as a default. I want to keep the buttons on the page. However, I would really like to change the image and text of the Save button…
  • Sage CRM 7.2 - Hide Phone and replace with Mobile Number on Person top content screen

    Hi, Anyone know how to hide "Phone" (in red square) and replace with "Mobile Number" (in green square) from Person top content screen. I can manage to put mobile number on screen but how to hide "Phone"? I did some research and found that someone…
  • Call External URL from Workflow

    I have a customer who wants to call an external url from a workflow action passing in some query string parameters. I created a new workflow action which calls a custom asp page. This custom asp page uses javascript to call window.open which opens up…