Quantcast
Channel: Forum CRM Deployment
Viewing all 997 articles
Browse latest View live

Access data of parent form when open a dialog using new Mscrm.CrmDialog

$
0
0

I am opening a web-resource using Mscrm.CrmDialog. When web-resource is opened i need values from different fields of entity form. 

I am unable to access the entity form.... How to access this entity form.

1 method is by passing values is query string. But the values are long, so query string breaks. Is this any other mwthod??? i.e. like access the entity form.

Thanks....


Waheed


Installing Dynamics CRM 2013 on Workgroup

$
0
0

Hi,

I am trying to install Dynamics CRM 2013 on a system (Server 2008 R2) that is a part of a workgroup; and I am having a hard time to install it. The system has active directory installed but it's disabled (and I cannot start it probably because it's not a domain system). I created the different users for different roles as local users. Now when I go ahead and try to install CRM, in the setup it asks for the Organizational Unit which I cannot provide (I cannot browse), it says "No Active Directory" found.

Please can someone assist me here? I have done a lot of installations, but all on AD systems. This is the first time I am installing in a WorkGroup and I am really stuck. Am I missing anything? Is there anything extra I need to install? Does the CRM Setup differ for a Workgroup than for a Domain? Or is this something not possible at all?

Thanks!


Admin QuikView Solution for CRM 2013


All emails are not tracking through email router

$
0
0
Hello All,

I have configured email router with a email id and create a queue for the same email id which is configured in email router.
Some of the emails i am getting into the queue, but some emails are not tracking into the queue.

I am not getting the cause of this issue. 



Regards,

Kamal

Make sure to "Vote as Helpful" and "Mark As Answer",if you get answer of your question.

FederationMetaData not present https://internal.website.co.uk:444/federationmetadata/2007-06/federationmetadata.xml

$
0
0

Good Day,

I am trying to get a running version of Dynamics CRM 2011.  I am now stuck on Claims Based Authentication.

With Claims Based Authentication disabled, I am able to navigate to Microsoft Dynamics CRM using the http or https address.  I can access the ADFS federationmetadata at https://adfs.website.co.uk/federationmetadata/2007-06/federationmetadata.xml but I cannot access the internalcrm federationmetadata at https://internal.website.co.uk:444/federationmetadata/2007-06/federationmetadata.xml.  I have scoured the web and tried many things but still no further.

Dynamics works with claims based authentication disabled but I cannot get it enabled so that it can be accessible on the internal network because the internalcrm federationmetadata does not appear to be present or accessible.

Where do I start to look for the problem here?  What logs should I be looking at?

Any help is much appreciated.  Thanks

KC

CRM 2013 server-side sync issue: a server certificate required to connect to the email server using SSL could not be validated

$
0
0

Hello,

I am having my first go with the CRM 2013 server-side sync with Exchange 2010. However I am having some issues with the self-signed SSL certificate I have generated.

Basically I started following the instructions on the blog post by Nuno Costa. I proceeded to generate a self-signed SSL certificate for my Dynamics CRM implementation, and I accessed my CRM through the https://crmserver.domain.local which seems to be working fine. The issue I have, however, is that CRM 2013 has issues with the certificates as it tells me in the alerts when I try to test a mailbox:

Email cannot be received for the mailbox <mailbox name> because a server certificate required to connect to the email server using SSL could not be validated. The mailbox has been disabled for receiving email and the owner of the email server profile <profile name> has been notified.

Could someone please advise how to sort out this issue?

Regards,
P.

Unable to Create New Incidents in Dynamics CRM with Java and Axis2

$
0
0
So I've been working on trying to figure this out, oddly when I ran it one machine I got a generic Axis Fault with no description, but now on another machine I'm getting a different error message, but I'm still stuck. Basically I'm just trying to do what I thought would be a fairly trivial task of creating a new incident in Microsoft Dynamics CRM 4.0 via a web services call.

I started by downloading the XML from http://hostname/MSCrmServices/2007/CrmService.asmx and generating code from it using Axis2. Anyway, here's my program, any help would be greatly appreciated, as I've been stuck on this for way longer than I thought I'd be and I'm really out of ideas here. 

        public class TestCRM {          	private static String endpointURL = "http://theHost/MSCrmServices/2007/CrmService.asmx";      	private static String userName = "myUserNameHere";      	private static String password = "myPasswordHere";      	private static String host = "theHostname";      	private static int port = 80;      	private static String domain = "theDomain";    	private static String orgName = "theOrganization";        	public static void main(String[] args) {          		CrmServiceStub stub;      		try {      			stub = new CrmServiceStub(endpointURL);      			setOptions(stub._getServiceClient().getOptions());          			RetrieveMultipleDocument rmd = RetrieveMultipleDocument.Factory.newInstance();      			com.microsoft.schemas.crm._2007.webservices.RetrieveMultipleDocument.RetrieveMultiple rm = com.microsoft.schemas.crm._2007.webservices.RetrieveMultipleDocument.RetrieveMultiple.Factory.newInstance();        			QueryExpression query = QueryExpression.Factory.newInstance();      			query.setColumnSet(AllColumns.Factory.newInstance());      			query.setEntityName(EntityName.INCIDENT.toString());            			rm.setQuery(query);      			rmd.setRetrieveMultiple(rm);        			TargetCreateIncident tinc = TargetCreateIncident.Factory.newInstance();    			Incident inc = tinc.addNewIncident();    			inc.setDescription("This is a test of ticket creation through a web services call.");        			CreateDocument cd = CreateDocument.Factory.newInstance();    			Create create = Create.Factory.newInstance();    			create.setEntity(inc);        			cd.setCreate(create);        			Incident test = (Incident)cd.getCreate().getEntity();        			CrmAuthenticationTokenDocument catd = CrmAuthenticationTokenDocument.Factory.newInstance();      			CrmAuthenticationToken token = CrmAuthenticationToken.Factory.newInstance();     			token.setAuthenticationType(0);         			token.setOrganizationName(orgName);      			catd.setCrmAuthenticationToken(token);        			//The two printlns below spit back XML that looks okay to me?    			System.out.println(cd);     			System.out.println(catd);    			/* stuff that doesn't work */    			CreateResponseDocument crd = stub.create(cd, catd, null, null); //this line throws the error    			CreateResponse cr = crd.getCreateResponse();    			System.out.println("create result: " + cr.getCreateResult());    			/* End stuff that doesn't work */        			System.out.println();    			System.out.println();    			System.out.println();    			boolean fetchNext = true;      			while(fetchNext){      				RetrieveMultipleResponseDocument rmrd = stub.retrieveMultiple(rmd,  catd, null, null);    				//This retrieve using the CRMAuthenticationToken catd works just fine    				RetrieveMultipleResponse rmr = rmrd.getRetrieveMultipleResponse();      				BusinessEntityCollection bec = rmr.getRetrieveMultipleResult();          				String pagingCookie = bec.getPagingCookie();      				fetchNext = bec.getMoreRecords();          				ArrayOfBusinessEntity aobe = bec.getBusinessEntities();      				BusinessEntity[] myEntitiesAtLast = aobe.getBusinessEntityArray();          				for(int i=0; i<myEntitiesAtLast.length; i++){      					//cast to whatever you asked for...      					Incident myEntity = (Incident) myEntitiesAtLast[i];      					System.out.println("["+(i+1)+"]: " + myEntity);    				}      			}      		}       		catch (Exception e) {      			e.printStackTrace();      		}      	}          	private static void setOptions(Options options){      		HttpTransportProperties.Authenticator auth = new HttpTransportProperties.Authenticator();          		List authSchemes = new ArrayList();      		authSchemes.add(HttpTransportProperties.Authenticator.NTLM);       		auth.setAuthSchemes(authSchemes);           		auth.setUsername(userName);    		auth.setPassword(password);      		auth.setHost(host);      		auth.setPort(port);      		auth.setDomain(domain);      		auth.setPreemptiveAuthentication(false);      		options.setProperty(HTTPConstants.AUTHENTICATE, auth);      		options.setProperty(HTTPConstants.REUSE_HTTP_CLIENT, "true");      	}    }


Also, here's the error message I receive:

    org.apache.axis2.AxisFault: com.ctc.wstx.exc.WstxUnexpectedCharException: Unexpected character 'S' (code 83) in prolog; expected '<'     at [row,col {unknown-source}]: [1,1]    	at org.apache.axis2.AxisFault.makeFault(AxisFault.java:430)    	at org.apache.axis2.transport.TransportUtils.createSOAPMessage(TransportUtils.java:123)    	at org.apache.axis2.transport.TransportUtils.createSOAPMessage(TransportUtils.java:67)    	at org.apache.axis2.description.OutInAxisOperationClient.handleResponse(OutInAxisOperation.java:354)    	at org.apache.axis2.description.OutInAxisOperationClient.send(OutInAxisOperation.java:417)    	at org.apache.axis2.description.OutInAxisOperationClient.executeImpl(OutInAxisOperation.java:229)    	at org.apache.axis2.client.OperationClient.execute(OperationClient.java:165)    	at com.spanlink.crm.dynamics4.webservice.CrmServiceStub.create(CrmServiceStub.java:618)    	at com.spanlink.crm.dynamics4.runtime.TestCRM.main(TestCRM.java:82)    Caused by: org.apache.axiom.om.OMException: com.ctc.wstx.exc.WstxUnexpectedCharException: Unexpected character 'S' (code 83) in prolog; expected '<'     at [row,col {unknown-source}]: [1,1]    	at org.apache.axiom.om.impl.builder.StAXOMBuilder.next(StAXOMBuilder.java:260)    	at org.apache.axiom.soap.impl.builder.StAXSOAPModelBuilder.getSOAPEnvelope(StAXSOAPModelBuilder.java:161)    	at org.apache.axiom.soap.impl.builder.StAXSOAPModelBuilder.<init>(StAXSOAPModelBuilder.java:110)    	at org.apache.axis2.builder.BuilderUtil.getSOAPBuilder(BuilderUtil.java:682)    	at org.apache.axis2.transport.TransportUtils.createDocumentElement(TransportUtils.java:215)    	at org.apache.axis2.transport.TransportUtils.createSOAPMessage(TransportUtils.java:145)    	at org.apache.axis2.transport.TransportUtils.createSOAPMessage(TransportUtils.java:108)    	... 7 more    Caused by: com.ctc.wstx.exc.WstxUnexpectedCharException: Unexpected character 'S' (code 83) in prolog; expected '<'     at [row,col {unknown-source}]: [1,1]    	at com.ctc.wstx.sr.StreamScanner.throwUnexpectedChar(StreamScanner.java:623)    	at com.ctc.wstx.sr.BasicStreamReader.nextFromProlog(BasicStreamReader.java:2047)    	at com.ctc.wstx.sr.BasicStreamReader.next(BasicStreamReader.java:1069)    	at javax.xml.stream.util.StreamReaderDelegate.next(StreamReaderDelegate.java:60)    	at org.apache.axiom.om.impl.builder.SafeXMLStreamReader.next(SafeXMLStreamReader.java:183)    	at org.apache.axiom.om.impl.builder.StAXOMBuilder.parserNext(StAXOMBuilder.java:597)    	at org.apache.axiom.om.impl.builder.StAXOMBuilder.next(StAXOMBuilder.java:172)    	... 13 more


CRM 4.0 Deployment Manager snap-in error

$
0
0

Hi,

I am using CRM 4.0 Version. When i try to open CRM Deployment Manager, i get the snap-in error.

Not sure what could be the reason. I am using the account that installed CRM on the server, it has full control on AD Groups, Sys Admin Role on DB.

Please help me.

Error below:

Unable to cast object of type 'System.DBNull' to type 'System.String'.

at Microsoft.Crm.Admin.AdminService.ConfigDBSecurity.SystemUserData.get_Name()
   at Microsoft.Crm.Tools.Admin.SystemUserNode..ctor(SystemUserData systemUserData)
   at Microsoft.Crm.Tools.Admin.SystemUserListView.OnBuildSubNodes()
   at Microsoft.Crm.Tools.Admin.SystemUserListView.OnInitialize(AsyncStatus status)
   at Microsoft.ManagementConsole.View.ProcessRequest(Request request)
   at Microsoft.ManagementConsole.ViewMessageClient.ProcessRequest(Request request)
   at Microsoft.ManagementConsole.Internal.IMessageClient.ProcessRequest(Request request)
   at Microsoft.ManagementConsole.Executive.RequestStatus.BeginRequest(IMessageClient messageClient, RequestInfo requestInfo)
   at Microsoft.ManagementConsole.Executive.SnapInRequestOperation.ProcessRequest()
   at Microsoft.ManagementConsole.Executive.Operation.OnThreadTransfer(SimpleOperationCallback callback)

Reports on dashboards

$
0
0

CRM 2013 Online

What's the best method to display a report in a dashboard with CRM online?

Thanks


Pete


CRM 2011 to 2013 import

$
0
0

I am trying to import our organisation to Dynamics CRM 2013 from 2011, I have set up a new server with new SQL instance solely for this however when I am about to start the import I get the following error, and not sure on how to resolve it:



Violation of PRIMARY KEY constraint 'PK__#Invalid__59D49277E0EEC75E'. Cannot insert duplicate key in object 'dbo.#InvalidPrimaryKeys'. The duplicate key value is (SavedQueryBase, ComponentState).

The statement has been terminated.

Radio button List in MS CRM 4.0

$
0
0

Hi All,

I want to create the radio button list  on the entity form (MS CRM 4.0) as given below, so that user can select only one option.It would be great If anybody can provide the solution.

1. red

2. blue

3.green

Thanks

srikanth


Is there any chance CRM 2015 will provide for moving from On-Premise to Online?

$
0
0
Not likely, but one can hope, right?  Why can't a backup of an On-Premise org be brought up to an Online org? 

CRM 2013 Online Application Mode

$
0
0
This setting appears to be greyed out in CRM Online, is there a way to use this? works ok On-Prem. Thanks

Pete

ali

$
0
0

i did not get MCP id

my order number is Z7BSYD54D4

and prometric testing id is CD1186236

testing location is PK17Q

send my MCP id at

ali.hasnain.shah@hotmail.com



deploying the 2013 outlook addin

$
0
0

Hi

Is it possible to deploy the crm addin withOUT the windows live addin. 

so run a commandline with:

setupclient.exe /Q /DISABLEWINDOWSLIVEID

:-)


Kindest regards, Martin

Import CRM 2011 Organization Failed- please help

$
0
0

Hi All,

I am importing CRM 2011 organization in one of the dev server. Source and target CRM versions are same (having CRM 2011 with Rollup 17).

CRM Server RAM: 4 GB RAM & SQL Server installed on the same server
Orgnization DB size is 39 GB.

During the import, I am getting below error. Please help.

Log:

07:42:36|   Info| Organization marked as having reports published
07:42:36|   Info| Updating language packs
07:42:36|   Info| Applying database updates
07:42:36|   Info| Applying slipstream dbUpdates to organization.  Id=6258b633-2f81-e411-b75b-0050569a000c, UniqueName=Dev1.
07:46:18|  Error| Import Organization (Name=Dev1, Id=6258b633-2f81-e411-b75b-0050569a000c) failed with Exception:
System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> Microsoft.Crm.Tools.ImportExportPublish.ImportSdkMessagesException: Sdk Messages import: FAILURE ---> Microsoft.Crm.CrmException: Crm Internal Exception: Singleton Retrieve Query should not return more than 1 record. Query Executed = System.Data.SqlClient.SqlCommand
   at Microsoft.Crm.BusinessEntities.BusinessProcessObject.GetValuesFromDatabase(String entityName, Guid entityId, Boolean allowNonUniqueRows, ArrayList attributes, ArrayList extraConditions, Boolean isRetrieveUnpublished, ExecutionContext context)
   at Microsoft.Crm.BusinessEntities.SecurityAttributes..ctor(SecurityTraits traits, Guid objectId, Boolean allowNonUniqueRows, ArrayList attributes, ExecutionContext context)
   at Microsoft.Crm.BusinessEntities.SecurityExtension.CreateSecurityAttributesForUpdateDelete(Object sender, SecurityTraits traits, ExtensionEventArgs e)
   at Microsoft.Crm.BusinessEntities.SecurityExtension.PreUpdateHandler(ExtensionEventArgs e, Object sender)
   at Microsoft.Crm.BusinessEntities.BusinessProcessObject.PreUpdateEventHandler.Invoke(Object sender, ExtensionEventArgs e)
   at Microsoft.Crm.BusinessEntities.BusinessProcessObject.UpdateWithPipelineAndExtensions(IBusinessEntity entity, ExecutionContext context)
   at Microsoft.Crm.ObjectModel.SdkMessageProcessingStepServiceInternal`1.Update(IBusinessEntity entity, ExecutionContext context)
   at Microsoft.Crm.Tools.ImportExportPublish.ImportEntityHandlerBase.EnsureEntityExisted(BusinessProcessObject service, EntityExpression expression, BusinessEntity entity, ExecutionContext context)
   at Microsoft.Crm.Tools.ImportExportPublish.ImportEntityHandlerBase.EnsureEntityExisted(BusinessProcessObject service, BusinessEntity entity, ExecutionContext context)
   at Microsoft.Crm.Tools.ImportExportPublish.ImportSdkMessagesHandler.ImportSdkMessagerProcessingSteps(SdkMessage message, SdkMessageFilter filter, XmlNodeList stepNodes)
   at Microsoft.Crm.Tools.ImportExportPublish.ImportSdkMessagesHandler.ImportSdkMessageFilters(XmlNode messageNode, SdkMessage message)
   at Microsoft.Crm.Tools.ImportExportPublish.ImportSdkMessagesHandler.ImportSdkMessages(XmlNodeList sdkMessageNodes)
   --- End of inner exception stack trace ---
   at Microsoft.Crm.Tools.ImportExportPublish.ImportSdkMessagesHandler.ImportSdkMessages(XmlNodeList sdkMessageNodes)
   at Microsoft.Crm.Tools.ImportExportPublish.ImportSdkMessagesHandler.ImportItem()
   at Microsoft.Crm.Tools.ImportExportPublish.ImportHandler.Import()
   at Microsoft.Crm.Tools.ImportExportPublish.RootImportHandler.RunImport()
   at Microsoft.Crm.SE.DllMethodActions.ImportSystemSolution.Execute(String targetRevision)
   --- End of inner exception stack trace ---
   at System.RuntimeMethodHandle._InvokeMethodFast(IRuntimeMethodInfo method, Object target, Object[] arguments, SignatureStruct& sig, MethodAttributes methodAttributes, RuntimeType typeOwner)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, Boolean skipVisibilityChecks)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.RuntimeType.InvokeMember(String name, BindingFlags bindingFlags, Binder binder, Object target, Object[] providedArgs, ParameterModifier[] modifiers, CultureInfo culture, String[] namedParams)
   at Microsoft.Crm.Setup.Database.DllMethodAction.Execute(Guid organizationId)
   at Microsoft.Crm.Setup.Database.DatabaseInstaller.ExecuteReleases(ReleaseInfo releaseInfo, Boolean isInstall)
   at Microsoft.Crm.Setup.Database.DatabaseInstaller.Install(Int32 languageCode, String configurationFilePath, Boolean upgradeDatabase, Boolean isInstall)
   at Microsoft.Crm.Setup.Database.DatabaseInstaller.InstallUpdate(String configurationFilePath, Boolean upgradeDatabase)
   at Microsoft.Crm.Setup.Common.Update.DBUpdateDatabaseInstaller.ApplyDBUpdatesForSpecificRelease(Guid orgId, String releaseFilePath)
   at Microsoft.Crm.Tools.Admin.InstallDatabaseUpdatesAction.ApplyDBUpdatesInternal(Guid orgId, String orgUniqueName, String releaseFilePath, Boolean ignoreErrors)
   at Microsoft.Crm.Tools.Admin.InstallDatabaseUpdatesAction.ApplyDBUpdates(Guid orgId, String orgUniqueName, OrganizationOperationType operationType)
   at Microsoft.Crm.Tools.Admin.ImportOrganizationInstaller.Import(Guid organizationId, String organizationUniqueName, String organizationFriendlyName, String sqlServerName, String databaseName, Uri reportServerUrl, ICollection`1 users, MultipleTenancy multipleTenancy, Int32 fullTextSearchLocaleId)
07:46:19|   Info| GetDBUpdateRevisionThresholdForServer(): Threshold = 4150.
07:46:38|  Error| Import Organization (Name=Dev1, Id=6258b633-2f81-e411-b75b-0050569a000c) failed with Exception:
System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> Microsoft.Crm.Tools.ImportExportPublish.ImportSdkMessagesException: Sdk Messages import: FAILURE ---> Microsoft.Crm.CrmException: Crm Internal Exception: Singleton Retrieve Query should not return more than 1 record. Query Executed = System.Data.SqlClient.SqlCommand
   at Microsoft.Crm.BusinessEntities.BusinessProcessObject.GetValuesFromDatabase(String entityName, Guid entityId, Boolean allowNonUniqueRows, ArrayList attributes, ArrayList extraConditions, Boolean isRetrieveUnpublished, ExecutionContext context)
   at Microsoft.Crm.BusinessEntities.SecurityAttributes..ctor(SecurityTraits traits, Guid objectId, Boolean allowNonUniqueRows, ArrayList attributes, ExecutionContext context)
   at Microsoft.Crm.BusinessEntities.SecurityExtension.CreateSecurityAttributesForUpdateDelete(Object sender, SecurityTraits traits, ExtensionEventArgs e)
   at Microsoft.Crm.BusinessEntities.SecurityExtension.PreUpdateHandler(ExtensionEventArgs e, Object sender)
   at Microsoft.Crm.BusinessEntities.BusinessProcessObject.PreUpdateEventHandler.Invoke(Object sender, ExtensionEventArgs e)
   at Microsoft.Crm.BusinessEntities.BusinessProcessObject.UpdateWithPipelineAndExtensions(IBusinessEntity entity, ExecutionContext context)
   at Microsoft.Crm.ObjectModel.SdkMessageProcessingStepServiceInternal`1.Update(IBusinessEntity entity, ExecutionContext context)
   at Microsoft.Crm.Tools.ImportExportPublish.ImportEntityHandlerBase.EnsureEntityExisted(BusinessProcessObject service, EntityExpression expression, BusinessEntity entity, ExecutionContext context)
   at Microsoft.Crm.Tools.ImportExportPublish.ImportEntityHandlerBase.EnsureEntityExisted(BusinessProcessObject service, BusinessEntity entity, ExecutionContext context)
   at Microsoft.Crm.Tools.ImportExportPublish.ImportSdkMessagesHandler.ImportSdkMessagerProcessingSteps(SdkMessage message, SdkMessageFilter filter, XmlNodeList stepNodes)
   at Microsoft.Crm.Tools.ImportExportPublish.ImportSdkMessagesHandler.ImportSdkMessageFilters(XmlNode messageNode, SdkMessage message)
   at Microsoft.Crm.Tools.ImportExportPublish.ImportSdkMessagesHandler.ImportSdkMessages(XmlNodeList sdkMessageNodes)
   --- End of inner exception stack trace ---
   at Microsoft.Crm.Tools.ImportExportPublish.ImportSdkMessagesHandler.ImportSdkMessages(XmlNodeList sdkMessageNodes)
   at Microsoft.Crm.Tools.ImportExportPublish.ImportSdkMessagesHandler.ImportItem()
   at Microsoft.Crm.Tools.ImportExportPublish.ImportHandler.Import()
   at Microsoft.Crm.Tools.ImportExportPublish.RootImportHandler.RunImport()
   at Microsoft.Crm.SE.DllMethodActions.ImportSystemSolution.Execute(String targetRevision)
   --- End of inner exception stack trace ---
   at System.RuntimeMethodHandle._InvokeMethodFast(IRuntimeMethodInfo method, Object target, Object[] arguments, SignatureStruct& sig, MethodAttributes methodAttributes, RuntimeType typeOwner)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, Boolean skipVisibilityChecks)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.RuntimeType.InvokeMember(String name, BindingFlags bindingFlags, Binder binder, Object target, Object[] providedArgs, ParameterModifier[] modifiers, CultureInfo culture, String[] namedParams)
   at Microsoft.Crm.Setup.Database.DllMethodAction.Execute(Guid organizationId)
   at Microsoft.Crm.Setup.Database.DatabaseInstaller.ExecuteReleases(ReleaseInfo releaseInfo, Boolean isInstall)
   at Microsoft.Crm.Setup.Database.DatabaseInstaller.Install(Int32 languageCode, String configurationFilePath, Boolean upgradeDatabase, Boolean isInstall)
   at Microsoft.Crm.Setup.Database.DatabaseInstaller.InstallUpdate(String configurationFilePath, Boolean upgradeDatabase)
   at Microsoft.Crm.Setup.Common.Update.DBUpdateDatabaseInstaller.ApplyDBUpdatesForSpecificRelease(Guid orgId, String releaseFilePath)
   at Microsoft.Crm.Tools.Admin.InstallDatabaseUpdatesAction.ApplyDBUpdatesInternal(Guid orgId, String orgUniqueName, String releaseFilePath, Boolean ignoreErrors)
   at Microsoft.Crm.Tools.Admin.InstallDatabaseUpdatesAction.ApplyDBUpdates(Guid orgId, String orgUniqueName, OrganizationOperationType operationType)
   at Microsoft.Crm.Tools.Admin.ImportOrganizationInstaller.Import(Guid organizationId, String organizationUniqueName, String organizationFriendlyName, String sqlServerName, String databaseName, Uri reportServerUrl, ICollection`1 users, MultipleTenancy multipleTenancy, Int32 fullTextSearchLocaleId)


Move Dynamics CRM2013 to other domain, move CRM security groups and then upgrade 2013 to 2015

$
0
0

Hi guys.

We have a "complicated plan" to achieve. Here is our current scenario.

We have two domains which are in parent/child relationship: 
domain.local (primary domain)
child.domain.local (child domain)

- Dynamics CRM 2013 on-premises server is a member of child domain so it's FQDN is:CRM2013.child.domain.local.
- CRM2013.child.domain.local has local SQL 2012 version.
- In child.domain.local we have an organizational unit named:CRM2013.
- CRM2013 organizational unit contains four security groups:
PrivReportingGroup {GUID}
PrivUserGroup {GUID}
ReportingGroup {GUID}
SQLAccessGroup {GUID}

Now the idea is:

(1) we need to move CRM from child domain to primary domain. SoCRM2013.child.domain.local will be registered as CRM.domain.local. after we Will join it to primary domain.

(2) we also need to move organizational unit with thoose four security groups from child domain to primary domain.
(3) at the end we wish to upgrade CRM2013 to CRM2015

Any suggestions if we will be able to do that?

Any good tutorials how to achieve all the three steps (1,2,3) without loosing current data and configurations on CRM2013 server?

Thank you.

with best regards


bostjanc

CRM 4.0 to 2013 Migrated database organization open a blank page

$
0
0

We are doing a migration from MS CRM 4.0 to MS CRM 2013.

4.0 organization is available for intranet.

First we have imported 4.0 organization database to MS CRM 2011 environment where we have installed rollup 14.

On CRM 2011 environment imported organization is working fine. So we step ahead for CRM 2013 migration.

Then we import CRM 2011 organization database  to CRM 2013 environment.

When we try to  browse organization url it open with blank page.

But the default organization created through deployment manager working fine on same environment.

Could you please any one suggest, why migrated database organization showing a blank page? 

Note: 4.0 organization database free from javascripts and plugins 

if you need any other information let me know.



Missing CRM 2015 Implementation Guide Docs - Supported Web Browsers

$
0
0

I see CRM 2015 is now available for download. There is some CRM 2015 IG documentation, but there is no information on supported clients. I understand that IE8 & IE9 are no longer supported, but the IG docs do have any details on this. Anyone know if there is an official statement on this?

Also I don't see any downloadable IG documentation, only for CRM 2013 and earlier.

Fresh installation of CRM 2015 gives me 404 error

$
0
0

Clean installation of 2015 CRM gives me 404 error page not found.

Any hints why it would not open the page?

We have followed all the procedures.


bostjanc

How to move active directory groups of CRM

$
0
0
Is iIs it possible to move these groups:PrivReportingGroup {GUID} PrivUserGroup {GUID} ReportinGroup {GUID} SqlAccessGroup {GUID}, to a different domain and configure CRM to use them?

bostjanc

Viewing all 997 articles
Browse latest View live




Latest Images