Posts

Showing posts from September, 2007

Add icon to Top of NavBar on MSCRM30...

You can add icon into Navigation Bar on MSCRM 30. to do this 1- edit ..\wwwroot\_root \navbarpage.aspx 2- add /* */ tag after scripts 3 - save & close 4 - Refresh CRM Main Page IMPORTANT NOTICE: This script is not supported by MICROSOFT. it may be harmful for Microsoft CRM.

How to Create Custom LookUp on MSCRM 30

Image
Creating lookup on CRM.We need 2 text fields on Appropriate CRM Entity and also have to publish on CRM Form invisibly. ( LookupObjects(lookupField, lookupStyle, lookupClass, lookupTypes, lookupBrowse, bindingColumns, additionalParams, showNew, showProp, bPopulateLookup, defaultType, searchString) n ) Javascript code must be run OnLoad Event; function ChangeDisplayPicture(object,OnOff) { var obj = document.getElementById(object); if ( obj != null ) { if (OnOff == 'On') obj.src = '/_imgs/btn_on_lookup.gif'; else obj.src = '/_imgs/btn_off_lookup.gif'; } } function OpenSelectedDetails(namefield, idfield, typecodefield) { // Window resize functions at the beginning and end of the function for Turkish Character Bug in MSCRM window.resizeBy(2,2); nameObject = window.document.forms("crmForm").elements(namefield); IdObject=window.document.forms("crmForm").elements(idfield); TypeCode=window.document.forms("crmForm").elements(typecodefield); i...

MSCRM 30 Operation failed due to a SQL integrity violation

if you get a message like " Server was unable to process request. 0x80040237 Operation failed due to a SQL integrity violation. Platform " - Please check your webservices credentials under domain. - verify that there is no debuging on IIS - notice that CRM tables are not locked .