Microsoft Mobile Support

  • Subscribe to our RSS feed.
  • Twitter
  • StumbleUpon
  • Reddit
  • Facebook
  • Digg
Showing posts with label import. Show all posts
Showing posts with label import. Show all posts

Tuesday, 20 January 2009

Duplicate process check

Posted on 02:46 by Unknown
If you are creating your own integration module for CRM, then it is very wise to make sure that the process is running only once. For performance reasons you can decide to split the process in multiple threads, but running a single process multiple times can cause quite some unforseen issues.The following code snippet will allow you to check if an application with the same name is running
Read More
Posted in import, migration | No comments

Thursday, 17 July 2008

Not all emails are sent from MailMerge

Posted on 02:14 by Unknown
Yesterday I looked at an issue with a colleague of mine (Nico Verhagen). The problem was that a mailmerge quick campaign has been created which should send out approximately 1500 emails. When the quickcampaign had finished, there were only 43 emails sent and nothing failed. How could that be true?Apparently only 800 contacts had an email address specified, so that already is causing half of the
Read More
Posted in import, mailmerge | No comments

Sunday, 9 March 2008

Import CSV file to DataTable

Posted on 15:07 by Unknown
I'm preparing a demo right now and for this I'm importing a CSV file to CRM. Especially the piece around the import of data from a CSV file to a DataTable is very generic. I'm sharing it with you guys for if it does make sense for you to use this as well.class CSVReader{ public System.Data.DataTable GetDataTable(string strFileName) { System.Data.OleDb.OleDbConnection conn = new
Read More
Posted in import, migration | No comments

Tuesday, 29 January 2008

Dynamics CRM and NAV Integration

Posted on 01:29 by Unknown
Many newsletters get into my mailbox and there are just a few which I read. One of them is the newsletter from my friends at Scribe. Especially in this newsletter, great news is made public. They will be releasing the NAV Adapter for Scribe Insight next month! This means that you will be able to integrate NAV with any other database or product where they do have an adapter for. Of course for
Read More
Posted in import | No comments

Wednesday, 23 January 2008

Overriddencreatedon

Posted on 01:11 by Unknown
Everybody who's performing data imports knows the problem. When you create a record in CRM, the created on field always points at the date the record is created. Ofcourse you could go into the database and update the date by using a SQL script. But then again, there is this good white angel hanging above your shoulder whispering "Don't do it, it's not supported". No matter what this angel says,
Read More
Posted in import, migration | No comments

Monday, 21 January 2008

AttributeInfo.TypeName(int) != AttributeMetadata.Type.Name(float)

Posted on 01:05 by Unknown
You might bump into an error message while importing an entity from a customizations file. The error show could be:Error: lead: AttributeInfo.TypeName(int) != AttributeMetadata.Type.Name(float)The cause of this error is a mismatch in attribute type. Usually a field has been removed in the other environment and has been recreated with another attribute type. The type in your destination CRM system
Read More
Posted in customization, error, import, sqlserver | No comments

Thursday, 17 January 2008

Dynamics CRM 4.0 Test Data

Posted on 04:45 by Unknown
The test data to be used in demo's etcetera is available on the Microsoft download site. Here you can find the exe and details: http://www.microsoft.com/downloads/details.aspx?FamilyId=D5F77EE7-3D01-4944-B5DC-C8CDC8123DF4&displaylang=en
Read More
Posted in import, migration, titan | No comments

Tuesday, 27 November 2007

Improve performance of Microsoft Dynamics CRM

Posted on 00:53 by Unknown
The performance of your CRM implementation is one of the key factors for customer acceptance. There are multiple options available for optimizing your system. Here's a list to get started:Microsoft - Optimize Microsoft Dynamics CRM 3.0Microsoft - Optimize Microsoft Dynamics CRM 1.2Aaron Elder - Optimize the CRM Webservice CallsBrein Reid - Reduce the amount of useless calls to IIS 6.0
Read More
Posted in addons, callout, customization, enterprise, import, migration, sqlserver | No comments

Tuesday, 15 May 2007

Interesting issues with the CRMDateTime continuum.

Posted on 03:21 by Unknown
This is a guest post by a friend and colleague of mine: Leon Krancher. He has been digging into an issue regarding CRMDateTime and integration. Make sure you read this before you start your own integration!Well I guess I’d better start off with a little introduction. My name is Leon Krancher and I’m a colleague of Ronald at Avanade. As we both work with CRM we occasionally find time to get
Read More
Posted in customization, export, import, sdk | No comments

Thursday, 19 April 2007

Tips on using the publishreports executable

Posted on 06:55 by Unknown
Update: see the bottom for a solution to be able to use the filter in the report!Some days ago I posted an article around how to move reports from a server to another server in the development process. Now I've been working with it, I can share some tips.The first tip is on how to publish the reports. How does the publishreports.exe know where to find the publish.config and the reports? This
Read More
Posted in error, import, migration, reports | No comments

Thursday, 29 March 2007

Import has encountered an error and has been canceled

Posted on 04:30 by Unknown
Another error resolving post.Here's the error:Import has encountered an error and has been canceled. Your system has been restored to its original state. Import has been canceled because the ISV.Config file could not be imported. Check that the file format is valid.Also connecting to the CRM Workflow Manager will probably not work. This error message is thrown:The specified Microsoft CRM server
Read More
Posted in error, import, isv.config | No comments

Monday, 19 February 2007

A schema validation error has been detected

Posted on 05:08 by Unknown
More and more MS CRM developers are experiencing this error message:A schema validation error has been detected at line 21087, position 16.This error shows up if you want to import a customizations file which has been exported from a system which has the Update Rollup package 1 installed.There may be multiple reasons for this error to show up, but at least one of them is the existence of one of
Read More
Posted in customization, error, import, rollup | No comments

Friday, 16 February 2007

Error while importing via Tools -> Import

Posted on 07:44 by Unknown
Today I got a question regarding importing via the CRM Import tool (Menubar -> Tools -> Import). Only a small number of records would import, all the others would not. Even though the source seemed fine, they did throw this error:0x80040328: Number of columns does not match the header rowThis appears to be related to the source anyway. When you save an file in Excel 2003 as csv, it does the
Read More
Posted in error, excel, import | No comments
Older Posts Home
Subscribe to: Posts (Atom)

Popular Posts

  • Performance test with 100.000 concurrent users
    Did you know that Microsoft and Dell performed a performance test on Dynamics CRM which included 100.000 concurrent users? They created a wh...
  • Guest star on mscrm team blog
    Jim Glass e-mailed me some time ago. This was the content:Ronald, would you like to be the CRM Team blog guest blogger for February? You can...
  • MS CRM SDK 3.0.4
    Microsoft posted the newest version of the SDK for MS CRM 3.0 yesterday. We're on version 3.0.4 now.Download the SDK here.OverviewThe Mi...
  • CrmDateTime conversion to DateTime
    When working with CrmDateTime, you'll notice that this type does have a .value attribute, but the type of this attribute is string. Ther...
  • Quick Yammer & CRM Demo
    Most, if not all of you, know that Microsoft has acquired Yammer in June 2012. Now Microsoft has released the integration between Yammer and...
  • Unexpected 401 when using NetworkService in Web Service call
    When you are calling any CRM Web Service and you decide to specify your own credentials by using a new instance of NetworkCredential, then y...
  • AttributeInfo.TypeName(int) != AttributeMetadata.Type.Name(float)
    You might bump into an error message while importing an entity from a customizations file. The error show could be:Error: lead: AttributeInf...
  • CRM 5.0 Features
    Now that CRM 4.0 is available for almost a year, it is good to start thinking about what investmenst you will make in the coming period and ...
  • Minimal requirements for configuring Outlook Client (Online version)
    Some customers don't allow end users to install software on their own desktop. This can even go up to completely locked down systems on ...
  • Wintersport
    It's been a while since my last posting. Well, for that I do have a good reason. I've been in France, Alpe d'Huez, for a week fo...

Categories

  • addons
  • article
  • async
  • avanade
  • azure
  • biztalk
  • blog
  • callout
  • convergence
  • crm5.0
  • customization
  • dotnetmag
  • enterprise
  • error
  • events
  • ExactTarget
  • excel
  • export
  • fetchxml
  • guest post
  • hotfix
  • import
  • installation
  • isv.config
  • javascript
  • live
  • lookup
  • mailmerge
  • metadata
  • migration
  • mobile
  • mvp
  • office
  • offtopic
  • outlook client
  • performance
  • platform
  • plug-in
  • reports
  • rollup
  • sdk
  • SharePoint
  • sqlserver
  • surface
  • titan
  • training
  • unsupported
  • virtualpc
  • whs

Blog Archive

  • ▼  2013 (3)
    • ▼  August (1)
      • CRM Blog World Updated
    • ►  February (2)
  • ►  2010 (19)
    • ►  October (3)
    • ►  July (2)
    • ►  June (3)
    • ►  May (3)
    • ►  April (5)
    • ►  March (1)
    • ►  January (2)
  • ►  2009 (28)
    • ►  November (1)
    • ►  October (4)
    • ►  September (2)
    • ►  June (2)
    • ►  April (8)
    • ►  March (2)
    • ►  February (2)
    • ►  January (7)
  • ►  2008 (36)
    • ►  December (2)
    • ►  November (1)
    • ►  October (3)
    • ►  September (7)
    • ►  July (6)
    • ►  June (1)
    • ►  May (1)
    • ►  March (4)
    • ►  February (4)
    • ►  January (7)
  • ►  2007 (61)
    • ►  November (2)
    • ►  October (5)
    • ►  August (1)
    • ►  July (3)
    • ►  June (6)
    • ►  May (6)
    • ►  April (8)
    • ►  March (11)
    • ►  February (12)
    • ►  January (7)
  • ►  2006 (53)
    • ►  December (4)
    • ►  November (5)
    • ►  October (7)
    • ►  September (3)
    • ►  August (6)
    • ►  July (4)
    • ►  June (6)
    • ►  May (1)
    • ►  April (1)
    • ►  March (6)
    • ►  February (2)
    • ►  January (8)
  • ►  2005 (30)
    • ►  December (3)
    • ►  November (5)
    • ►  October (7)
    • ►  September (6)
    • ►  August (3)
    • ►  July (6)
Powered by Blogger.

About Me

Unknown
View my complete profile