Enter your email address:

Delivered by FeedBurner

Archives

Categories

Step Up to the Power of Microsoft Dynamics CRM by Powerobjects

Are you interested in improving productivity and strengthening your customer relationships? Then you won’t want to miss PowerObjects’ free upcoming Microsoft Dynamics CRM (customer relationship management) learning opportunities!

Contact Management vs. Customer Relationship Management Webinar

Limited by your existing Contact Management System (CMS)? Join PowerObjects for an informational webinar and learn how Customer Relationship Management (CRM) is the best solution [...]

CRM 4.0 Links to Entities in Workflow Email

Many times we would like to include an HTML link in an email notification sent to user. Sometimes we could just use ‘Regarding’ field of email, but this only works if user uses Outlook Client and even then, email tagging may take a while and ‘View Regarding’ button is not available when user actually reads [...]

Report Subscriptions

Recently, one of our clients was experiencing problems with one of their reports created via the Report Wizard within CRM. The client wanted to take advantage of SSRS’ ability to schedule automatic report delivery via a ’subscription.’ The client wanted to have a copy of this report emailed to the Sales Manager every Monday evening [...]

Setting security for Entity navigation pane

Many times we have come across the need to set privileges using Sitemap. The SiteMap defines the areas represented in the CRM client’s main application Navigation Pane. We use the predefined privilege tags to achieve this.

Same feature is not available for entity Navigation Pane using isv.config. For implementing Role based security in Entity navigation pane, im presenting [...]

How to read / write files using JavaScript

We will use an ActiveX Object from the Scripting.FileSystemObject library to read and write files from JavaScript, which knows how to handle files. The parameter of the OpenTextFile function can be (read = 1, write = 2, append = 8).And here are the scripts:

1. Reading a file

function ReadFile()
{
var FileOpener = new ActiveXObject(”Scripting.FileSystemObject”);
var FilePointer = FileOpener.OpenTextFile(”C:\\Zeeshan.txt”, [...]