Microsoft CRM - Disabling business unit |
- Disabling business unit
- Duplicate Account Checking Script
- Move users from none Business Unit to other
- Migrating CRM to CRM
- exchange e-mail router install question
- Event ID 2 can't send email
- Installing Outlook CRM
- View modification?
- Migrating Telemagic to CRM
- Copying CRM to a duplicate domain
- Required Bandwidth for MS CRM
- User with no license
- Deletion service cannot clean up tables
- Get Runtime Error or Server Error in '/' Application
- CRM and SharePoint
Posted: 16 Apr 2004 08:17 AM PDT You should be able to update the BusinessUnitBase table and set the IsDisable column back to 0. No guarantees, but your other alternative right now is to reinstall. Matt Parks ---------------------------------------- ---------------------------------------- On Fri, 16 Apr 2004 08:36:02 -0700, "Kane" <microsoft.com> wrote: The unit's name was Microsoft Business solution I believe its the root unit. |
Duplicate Account Checking Script Posted: 16 Apr 2004 06:36 AM PDT It might help if you post the error message you are receiving. Matt Parks ---------------------------------------- ---------------------------------------- On Fri, 16 Apr 2004 06:36:57 -0700, "Baptiste DANIELEWICZ" <Baptiste@Cis-Rhone-Alpes> wrote: Hi all, I tried to use the sample script found here http://msdn.microsoft.com/library/default.asp? url=/library/en-us/dnmbscrm/html/mbs_crmappdup.asp but it doesn't works with my CRM 1.2 .I change the server name in ISVAccount.cs, got an error. I found the name of the dll is not the same in CRM 1.0 and CRM 1.2 1.0 = Microsoft.CRM.Proxy 1.2 = Microsoft.CRM.Platform.Proxy So I replace the wrong name in ISVAccount.cs with new one, stil an error. I have no more idea, so if you have some, you're welcome ! Baptiste. |
Move users from none Business Unit to other Posted: 16 Apr 2004 05:41 AM PDT Yes. From the web client,, go into the Business Unit setting and open the detail form for the user. Then, from the actions menu, select Change Business Unit". Matt Parks ---------------------------------------- ---------------------------------------- On Fri, 16 Apr 2004 05:41:04 -0700, "M. Ceccacci" <microsoft.com> wrote: hi, is it possible to move a user from one business unit to other ? |
Posted: 15 Apr 2004 01:21 PM PDT Ed, Provided you are careful, you won't lose any data. The biggest issue is the one you just hit. The DMF uses integer fields for the promary keys, but CRM uses GUID's. You will need to map these values in order to migrate the data. The only other thing is to make sure you populate all the tables in the DMF (like ActiviyParties). This is the one that causes the most trouble with loading data into CRM. If you aren't comfortable doing this on your own, you may need to bring in someone with stronger SQL skills to assist you. Matt Parks ---------------------------------------- ---------------------------------------- On Fri, 16 Apr 2004 06:44:21 -0700, "Ed" <microsoft.com> wrote: John Thanks for the response. For anyone that has done this - am I going to lose any information? I am running into a problem right out of the box using DTS - I get a mismatch of data types with a number of the elements, like the AccountID in cdf_Account where it is defined as an 'int' type but as a 'uniqueidentifier' in AccountBase. I am not a SQL whiz, so I don't know where to start. Thanks Ed I am aware of doing a tool to do this message now use CRM? |
exchange e-mail router install question Posted: 15 Apr 2004 01:06 PM PDT Go ahead and use the default web site. It won't affect OWA. Matt Parks ---------------------------------------- ---------------------------------------- On Thu, 15 Apr 2004 13:06:05 -0700, "Scott" <microsoft.com> wrote: When installing the email router the setup process wants to install components into the default website. This is obviously the same directory that stores other the exchange components for OWA, OMA, Ect. Should I go ahead and install into that directory or create an additional website and install it there? |
Posted: 15 Apr 2004 12:57 PM PDT Try browsing to that URL directly from a browser on the CRM Server. Do you get a response? You may have to use the ICrmEmailDispathSDL.srf file instead. You should get an XML SOAP response when you browse to one of these files. In my experience, I've always had to use the SDL, but others have gotten the response from the main file itself. This should give you some more information about the problem. If you are using SSL on you server, you will need to disable the need for encryption on the MSCRMConnector virtual directory. Matt Parks ---------------------------------------- ---------------------------------------- On Fri, 16 Apr 2004 19:07:16 +0700, Andrew Simontsev <com> wrote: Hello Matt, I got the same problem. When I fixed MailServerUrl->Server value, I got error either HTTP 400 (bad request) or HTTP 404 (file not found) depending on if I specify URL or IP. The file on this URL (ICrmEmailDispatch.srf) does exist in MSCRMConnector folder. What could be done next? Matt Parks wrote: |
Posted: 15 Apr 2004 11:31 AM PDT Gary, I am already connected to my Exchange Server. I get all of my mail through it. Thanks. Lee "Gary" <NOSPAM.com> wrote in message news:<phx.gbl>... |
Posted: 15 Apr 2004 08:30 AM PDT maybe matt in which case the only way would be to create a custom view in asp.net so you can do this "Matt Parks" <com> wrote in message news:com... hte first. |
Posted: 15 Apr 2004 07:28 AM PDT Hi Jill I am about to buy Microsoft CRM to replace my Telemagic. I hope it is not too hard to migrate data from Telemagic. Can you please let me know of any pitfalls you come across? Thanks Gordon Gellatly Marketing Manager CAPS Australia Pty Ltd |
Copying CRM to a duplicate domain Posted: 14 Apr 2004 02:34 PM PDT More thoughts you of course need to make the DC think its still in the original domain. Are you using the same ip addressing scheme? what about DNS? "Kristina Ledford" <com> wrote in message news:O%phx.gbl... to of |
Posted: 14 Apr 2004 08:33 AM PDT I used Network Monitor to sniff the packets between a workstation and the CRM Web and SQL Servers. "John O'Donnell" <com-nospam> wrote in message news:phx.gbl... moment the different bandwidth required hig |
Posted: 14 Apr 2004 07:36 AM PDT This works for the administrator but for other users no they cannot log into the system without the license. "kb" <microsoft.com> wrote in message news:17f6201c42236$80890be0$gbl... |
Deletion service cannot clean up tables Posted: 13 Apr 2004 10:38 PM PDT Here is the query used to clean up the activity tables. I would verify with Microsoft support however if you want to five it a go remember to back up anything. It should be run against your MSCRM database. If your not familiar with SQL then please call MS support. ============================== -- This script deletes duplicate owner parties from activities -- declare the cursor fetch variables declare @ActivityId varchar(255) declare @ActivityPartyId varchar(255) declare @NewActivityId varchar(255) declare @NewActivityPartyId varchar(255) -- define activity party cursor declare c cursor for select ActivityId, ActivityPartyId from dbo.ActivityPartyBase where ParticipationTypeMask = 9 order by ActivityId open c fetch next from c into @NewActivityId, @NewActivityPartyId while 1 = 1 begin select @ActivityId = @NewActivityId select @ActivityPartyId = @NewActivityPartyId fetch next from c into @NewActivityId, @NewActivityPartyId if (@@fetch_status = 0 ) begin if @NewActivityId = @ActivityId begin delete from ActivityPartyBase where ActivityPartyId = @NewActivityPartyId end end else begin break end end close c deallocate c go -- This script deletes duplicate owner parties from activities -- declare the cursor fetch variables declare @ActivityId varchar(255) declare @ActivityPartyId varchar(255) declare @NewActivityId varchar(255) declare @NewActivityPartyId varchar(255) -- define activity party cursor declare c cursor for select ActivityId, ActivityPartyId from dbo.ActivityPartyBase where ParticipationTypeMask = 8 order by ActivityId open c fetch next from c into @NewActivityId, @NewActivityPartyId while 1 = 1 begin select @ActivityId = @NewActivityId select @ActivityPartyId = @NewActivityPartyId fetch next from c into @NewActivityId, @NewActivityPartyId if (@@fetch_status = 0 ) begin if @NewActivityId = @ActivityId begin delete from ActivityPartyBase where ActivityPartyId = @NewActivityPartyId end end else begin break end end close c deallocate c go ================================================== === "John O'Donnell" <com-nospam> wrote in message news:OMF5e$phx.gbl... supply records see |
Get Runtime Error or Server Error in '/' Application Posted: 13 Apr 2004 12:02 PM PDT also are all users seeing this problem or just one user? "Michele" <microsoft.com> wrote in message news:193b301c42189$e0c6fd30$gbl... |
Posted: 13 Apr 2004 11:13 AM PDT Hello Susan, I am planning to do a similar thing on my server, I already have installed CRM and SQL and everything is running fine. I now want to go ahead and install Sharepoint. Was there anything specific you had to configure in order to run Sharepoint with IIS? Because I was wondering the same thing how will they run since CRM is using the default web site. Thanks and Regards "Susan" <microsoft.com> wrote in message news:1c0a101c42182$f83f9c80$gbl... |
You are subscribed to email updates from TextNData Forums - Microsoft CRM To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
Google Inc., 20 West Kinzie, Chicago IL USA 60610 |