الأحد، 7 يوليو 2013

Unable to Change Domain Logon Name error in CRM 2011.

1- Change “AutoGroupManagementoff” value set to 1 (false) in your registry (HKEY_LOCAL_MACHINE \SOFTWARE \Microsoft \MSCRM).
2- be sure that CRMAppPool is identified as "Network Service"

السبت، 6 يوليو 2013

Report render failure. Error: An error has occurred during report processing. (rsProcessingAborted)

setspn -L ADGROUP\dynamicsadmin

setspn -L ADGROUP\CRMSandbox

setspn -A http/WIN2K8-SQL2K8 ADGROUP\dynamicsadmin

setspn -A http/WIN2K8-SQL2K8.fqdn.com ADGROUP\dynamicsadmin

-- Also if the error contains the below details.

"System.ServiceModel.EndpointNotFoundException: Could not connect to net.tcp://ed-crmweb01/CrmSandboxSdkListener-w3wp. The connection attempt lasted for a time span of 00:00:21.0468750. TCP error code 10060: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 10.29.3.4:808. "

Then try adding an inbound rule to the Windows firewall allowing TCP traffic on port 808, domain network. 


Also you will find a full solutions on the following link:
http://blog.cobalt.net/blog/4-steps-that-will-help-you-conquer-the-rsprocessingaborted-error

The report server cannot decrypt the symmetric key used to access sensitive

1-Open Reporting Services Configuration Manager

2-Connect to your RS server

3-Select 'Encryption Keys' from the left pane

4-Press the 'Delete' button to get rid of your encrypted content 

5-After doing this, you will need to re-set the connection strings and stored credentials on your reports.

Useful Websites

الخميس، 4 يوليو 2013

Refresh Subgrid in MS CRM 2011

function SubGridRefresh() {
    var grid = document.getElementById("subgrid1");
    if (!grid) {
        setTimeout("SubGridRefresh();", 1000);
        return;
    }
    else {
        grid.control.add_onRefresh(AlertFun);
    }
}

function AlertFun() {
    alert('SubGrid has been Refreshed');
}