WSDL Error: “Schema item ‘element’ named ‘string’ from namespace ‘http://schemas.microsoft.com/crm/2006/WebServices’. […]”

Hey, Have you ever encountered the following error?“Schema item ‘element’ named ‘string’ from namespace ‘http://schemas.microsoft.com/crm/2006/WebServices’. The global element ‘http://schemas.microsoft.com/crm/2006/WebServices:string’ has already been declared.” That’s what I got when I update my webservice references. Totally nagging and a real pain. That error prevented me from being able to access all the custom fields I created on… Continue reading WSDL Error: “Schema item ‘element’ named ‘string’ from namespace ‘http://schemas.microsoft.com/crm/2006/WebServices’. […]”

How to extract Email attachments IDs (CRM 3.0)

Howdy, At some point, I was requested by a manager to extend the functionality of the email entity (multiplying the number of messages sent) and I came across the attachment side. The following function is my solution to the occurring issue: // Author: Octavian Cucuta ( octavian.cucuta [ AT ] gmail.com )// Release: 1.0.0.1 (… Continue reading How to extract Email attachments IDs (CRM 3.0)

An easier way to hide or show a certain field in CRM

Simply use the function below: // Shows or hides a certain fieldfunction HandleField(field, display) { document.getElementById(field+”_c”).style.display = display; document.getElementById(field+”_d”).style.display = display;}/* Calling */HandleField(“fieldid”, “inline”); // show inlineHandleField(“fieldid”, “block”); // show blockHandleField(“fieldid”, “none”); // hide

Back…

Well, like I said, I’m back in business and I promise that asap I’ll post a few useful ideas. I’d like to think that 2008 will be the year of CRM in Romania and not only, as MS Dynamics CRM Titan will replace, step by step, CRM 3.0. Stay tuned… P.S. Thanks Microsoft for the… Continue reading Back…

Generating tooltips on certain events

A tooltip is a small box of explanatory text (usually on yellow background) that appears when the mouse pointer is held over a button or other interface element.In Microsoft Dynamics CRM we can define constraints (masks) on certain fields. It is desired that the user is well informed about the text’s format, in real time,… Continue reading Generating tooltips on certain events