Friday, April 8, 2011

CRM 4.0 - Message: This customer is filtered due to AntiSpam settings., ErrorCode: -2147220699



The Anti-Spam Setting excludes records that have been contacted within the specified number of days.
Set 0 in anti-spam setting (Form Campaign Activity).



Nicola Grillo

Wednesday, March 16, 2011

CRM 2011 - Get and set Java Script Microsoft CRM 2011

Xrm.Page.getAttribute('statuscode').getValue()
Xrm.Page.getAttribute('statuscode').setValue(1)


Set value in picklist type :
Xrm.Page.getAttribute('statuscode').setValue(1).getSelectOption().text


Nicola Grillo

Friday, February 18, 2011

SQL SERVER - Database Suspected in SQL Server 2008

Connected to your database and check if it is in emergency mode, else run this comand:
ALTER DATABASE DB_NAME SET EMERGENCY
set single user in the database property and run this command:
DBCC CHECKDB ('DB_NAME',REPAIR_ALLOW_DATA_LOSS)

Nicola Grillo