<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Rash thoughts about .NET, C#, F# and Dynamics NAV. &#187; Dynamics NAV 2009</title>
	<atom:link href="http://www.navision-blog.de/tag/dynamics-nav-2009/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.navision-blog.de</link>
	<description>This Blog is about Microsoft Dynamics NAV (f.k.a Navision incl. C/SIDE and C/AL), C#, F# and .NET in general.</description>
	<lastBuildDate>Wed, 14 Jul 2010 11:12:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Strange bug in Dynamics NAV client</title>
		<link>http://www.navision-blog.de/2010/07/07/strange-bug-in-dynamics-nav-client/</link>
		<comments>http://www.navision-blog.de/2010/07/07/strange-bug-in-dynamics-nav-client/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 07:34:18 +0000</pubDate>
		<dc:creator>Steffen Forkmann</dc:creator>
				<category><![CDATA[Dynamics NAV 2009]]></category>
		<category><![CDATA[Navision]]></category>
		<category><![CDATA[bugs]]></category>

		<guid isPermaLink="false">http://www.navision-blog.de/2010/07/07/strange-bug-in-dynamics-nav-client/</guid>
		<description><![CDATA[My colleague Mathias Meissner found a strange bug in the Dynamics NAV Client (occurs at least in the native clients for NAV 403, 501 and 601). It seems the following code creates a strange memory allocation issue. (Download sample) OBJECT Codeunit 99500 NAV Bug { OBJECT-PROPERTIES { Date=17.06.10; Time=14:30:30; Modified=Yes; Version List=; } PROPERTIES { [...]]]></description>
			<content:encoded><![CDATA[<p>My colleague Mathias Meissner found a strange bug in the Dynamics NAV Client (occurs at least in the native clients for NAV 403, 501 and 601). It seems the following code creates a strange memory allocation issue. (<a href="http://www.navision-blog.de/download/NavBug.txt">Download sample</a>)</p>
<pre><font color="#3c3c3c">OBJECT Codeunit 99500 NAV Bug
{
  OBJECT-PROPERTIES
  {
    Date=17.06.10;
    Time=14:30:30;
    Modified=Yes;
    Version List=;
  }
  PROPERTIES
  {
    OnRun=BEGIN
            TestMiddleCase;</font>  <font color="#008000">// comment this line out and ReverseString works!</font><font color="#3c3c3c">
            TestReverseString;
          END;

  }
  CODE
  {

    PROCEDURE TestMiddleCase@5128500();
    BEGIN
      MiddleCase('fooo AnD bar');
    END;

    PROCEDURE TestReverseString@5128502();
    VAR
      l_String@5128500 : Text[1024];
      l_Result@5128503 : Integer;
    BEGIN
      l_String :=
        '1101101111011011110110111101101111011011110110111101101111011011' +
        '1101101111011011110110111101101111011011110110111101101111011011' +
        '1101101111011011110110111101101111011011110110111101101111011011' +
        '1101101111011011110110111101101111011011110110111101101111011011' +
        '1101101111011011110110111101101111011011110110111101101111011011' +
        '1101101111011011110110111101101111011011110110111101101111011011' +
        '1101101111011011110110111101101111011011110110111101101111011011' +
        '1101101111011011110110111101101111011011110110111101101111011011';

      IF STRLEN(l_String) &lt;&gt; 512 THEN
        ERROR('Wrong strlen');

      l_Result := TestReverseStringSub(l_String);

      IF l_Result &lt;&gt; 512 THEN
        ERROR('Error: Actual: ' + FORMAT(l_Result) + ' ' + ' Expected: 512');
    END;

    PROCEDURE TestReverseStringSub@5128521(p_String@5128500 : Text[1024]) r_Int : Integer;
    VAR
      l_StringMgt@5128501 : Codeunit 5128519;
    BEGIN
      p_String := ReverseString(p_String);
      EXIT(STRLEN(p_String));
    END;

    PROCEDURE ReverseString@5128509(p_In@5128502 : Text[1024]) Result : Text[1024];
    VAR
      i@5128500 : Integer;
      l_Length@5128501 : Integer;
    BEGIN
      l_Length := STRLEN(p_In) + 1;

      FOR i := 1 TO l_Length - 1 DO
        Result[i] := p_In[l_Length-i];
    END;

    PROCEDURE MiddleCase@1000000000(p_StringToConvert@1000000000 : Text[250]) ConvertedString : Text[250];
    BEGIN
      ConvertedString :=
        UPPERCASE(COPYSTR(p_StringToConvert, 1, 1)) +
        LOWERCASE(COPYSTR(p_StringToConvert, 2));
    END;

    BEGIN
    END.
  }
}
</font></pre>
<p>Since we don’t do anything evil here my only advice is to <strong>initialize every return parameter with a default value</strong>. This seems to fix the bug.</p>
<pre><font color="#3c3c3c">
    PROCEDURE ReverseString@5128509(p_In@5128502 : Text[1024]) Result : Text[1024];
    VAR
      i@5128500 : Integer;
      l_Length@5128501 : Integer;
    BEGIN
      Result := ''; </font><font color="#008000">// Init return value – this fixes the issue!</font><font color="#3c3c3c">
      l_Length := STRLEN(p_In) + 1;

      FOR i := 1 TO l_Length - 1 DO
        Result[i] := p_In[l_Length-i];
    END;
</font></pre>
<p>Interestingly I didn’t find a smaller sample which reproduces this memory issue.</p>
<p>&copy;2010 <a href="http://www.navision-blog.de">Rash thoughts about .NET, C#, F# and Dynamics NAV.</a>. All Rights Reserved.</p>.]]></content:encoded>
			<wfw:commentRss>http://www.navision-blog.de/2010/07/07/strange-bug-in-dynamics-nav-client/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Erstes internes CodingDojo bei der msu solutions GmbH in Halle</title>
		<link>http://www.navision-blog.de/2010/06/02/erstes-internes-codingdojo-bei-der-msu-solutions-gmbh-in-halle/</link>
		<comments>http://www.navision-blog.de/2010/06/02/erstes-internes-codingdojo-bei-der-msu-solutions-gmbh-in-halle/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 14:37:00 +0000</pubDate>
		<dc:creator>Steffen Forkmann</dc:creator>
				<category><![CDATA[Coding Dojo]]></category>
		<category><![CDATA[Firmen]]></category>
		<category><![CDATA[msu solutions GmbH]]></category>
		<category><![CDATA[CodingDojo]]></category>
		<category><![CDATA[Dynamics NAV 2009]]></category>
		<category><![CDATA[msu-solutions-GmbH]]></category>

		<guid isPermaLink="false">http://www.navision-blog.de/2010/06/02/erstes-internes-codingdojo-bei-der-msu-solutions-gmbh-in-halle/</guid>
		<description><![CDATA[Gestern haben wir bei der msu solutions GmbH am Standort Halle unser erstes internes CodingDojo veranstaltet. Ziele des internen Dojos Da wir in der tagt&#228;glichen Arbeit mit Microsoft Dynamics NAV entwickeln, wollten wir das Dojo auch mit Dynamics NAV und der Programmiersprache C/AL abhalten. Als wichtiges Ziel der Veranstaltung haben wir uns vorgenommen nach Test-Driven [...]]]></description>
			<content:encoded><![CDATA[<p>Gestern haben wir bei der <a href="http://www.msu-solutions.de">msu solutions GmbH</a> am Standort Halle unser erstes internes <a href="http://codingdojo.org/cgi-bin/wiki.pl?WhatIsCodingDojo">CodingDojo</a> veranstaltet. </p>
<h5>Ziele des internen Dojos</h5>
<p>Da wir in der tagt&#228;glichen Arbeit mit Microsoft Dynamics NAV entwickeln, wollten wir das Dojo auch mit Dynamics NAV und der Programmiersprache C/AL abhalten. Als wichtiges Ziel der Veranstaltung haben wir uns vorgenommen nach Test-Driven Development (TDD) zu arbeiten. Da TDD im NAV-Bereich (sicherlich mangelns Tools und Community) noch so gut wie unbekannt und unser selbstentwickeltes Test-Framework noch sehr jung ist, war diese Selbstverpflichtung f&#252;r einige Team-Mitglieder in dieser strikten Form sicherlich noch Neuland.</p>
<h5>Ablauf</h5>
<p>Um die Messlatte f&#252;r das erste Dojo daher nicht allzu hoch zu legen und mehr Fokus auf den Versionsverwaltung (git), die Test-Tools und die Kommunikation bzw. den Prozess selbst zu richten habe ich die relativ einfachen Katas <a href="http://codingdojo.org/cgi-bin/wiki.pl?KataFizzBuzz">FizzBuzz</a> und <a href="http://codingdojo.org/cgi-bin/wiki.pl?KataDictionaryReplacer">DictionaryReplacer</a> vorgeschlagen. Das Team hat sich dann f&#252;r FizzBuzz entschieden.</p>
<p>Wie beim 1. NET CodingDojo in Hamburg gab es auch in Halle einige Startschwierigkeiten. Es scheint f&#252;r viele Entwickler aufgrund der jahrelangen Entwicklungspraxis sehr schwer zu sein, tats&#228;chlich zwischen Test und Implementierung zu unterscheiden. </p>
<p>Nachdem jedoch die ersten 3 Tests samt Implementierung geschafft und die explizite Trennung der Test- und Entwicklungsphasen erkannt wurden steigerte sich das Tempo des Teams enorm. So konnten wir dann auch Erweiterungen der Aufgabenstellung diskutieren und umsetzen.</p>
<p>Ich denke unser erstes msu Dojo war ein Erfolg und insbesondere die Wahl der Kata war f&#252;r die erste Veranstaltung dieser Art ausgezeichnet. F&#252;r das n&#228;chste Mal wollen wir uns dann nat&#252;rlich an eine schwierigere Kata wagen.</p>
<h5>Randori-Stil</h5>
<p>Da seit dem <a href="http://ralfw.blogspot.com/2010/05/coding-dojo-muc-retrospektive.html">”Dojo Deluxe” von und mit Ralf Westphal</a> eine Diskussion &#252;ber die Dojo-Formate aufgekommen ist, m&#246;chte ich hier auch noch meine Meinung dazu abgeben.</p>
<p>Da wir uns den <a href="http://codingdojo.org/cgi-bin/wiki.pl?RandoriKata">Randori-Stil</a> ausgesucht haben, gab es eigentlich vier verschiedene Rollen. Als erstes nat&#252;rlich den Driver und den Co-Piloten, also eine Person, die die Tastatur bedient und eine die sagt “wo es lang geht”. &#220;brig bleiben dann in unserer Version noch der Rest des Teams als Publikum und ein Moderator. Da es die erste Veranstaltung dieser Art war, gab es noch sehr viele Hinweise vom Moderator. Bei nachfolgenden Veranstaltungen w&#252;rde ich mir w&#252;nschen, dass der Moderator immer mehr in den Hintergrund r&#252;ckt und die jeweiligen Co-Piloten deutlich aktiver werden. Das Publikum k&#246;nnte noch mehr als das Kontrollorgan fungieren und auf Einhaltung der selbst auferlegten Richtlinien pochen. Als wichtigen Punkt f&#252;r nachfolgende Veranstaltungen w&#252;rde ich also noch eine klarere Trennung der Rollen sehen und dem Team mehr Eigenverantwortung auferlegen.</p>
<h5>Randori-Stil vs. Tutorial</h5>
<p>Die Bef&#228;higung des Teams den Entwicklungsprozess ohne starke f&#252;hrende Hand selbst zu kontrollieren ist f&#252;r mich ein Kernziel bei einem CodingDojo. Ich denke hier unterscheidet sich der Randori-Stil (jedenfalls wie ich ihn bisher verstehe) stark von der Variante und den Zielstellungen die Ralf Westphal in seinem Dojo in M&#252;nchen abgehalten hat. Wie <a href="http://www.gmbsg.com/uber-das-ziel-von-coding-dojos-ii/">Ilker Cetinkaya</a> auch schon geschrieben hat ist Ralf’s Dojo-Variante wahrscheinlich n&#228;her am klassischen Workshop oder am Tutorial einzuordnen. Daran ist nat&#252;rlich nichts falsch, ganz im Gegenteil: ich finde solche Workshops mit erfahrenen und charismatischen Sprechern extrem reizvoll. Insbesondere weil man bei einem Workshop aufgrund der intensiveren Vorbereitung des Sprechers in der k&#252;rzeren Zeit eine weit h&#246;here fachliche Tiefe erreicht und man im Gegensatz zu klassischen Frontal-Vortr&#228;gen auch mehr R&#252;ckfragen stellen kann. Ralf hat sich dazu in seinem <a href="http://ralfw.blogspot.com/2010/05/gezieltes-coding-dojo.html">Blog ja auch intensiv und fundiert Gedanken gemacht</a>. </p>
<p>“Einer wei&#223; etwas und die anderen wollen es von ihm lernen”-Formate wie Ralf sie beschreibt sind also auch aus meiner Sicht sehr n&#252;tzlich und bilden vermutlich sogar die Voraussetzung f&#252;r ein Randori. Wenn nicht genug Leute im Raum bereits etwas &#252;ber die zu benutzenden Techniken oder Methoden geh&#246;rt haben, dann wird das Dojo bzw. das gemeinsame Lernen und Lehren vermutlich sehr z&#228;h und der Moderator wird zum Hauptakteur. Es ist somit auch v&#246;llig einleuchtend, dass Ralf seine <a href="http://ralfw.blogspot.com/2010/02/event-based-components-der-nachste.html">Event-Based Components</a> nat&#252;rlich nicht in einem Randori vorstellen kann. Das w&#228;re dann wohl beim einem leeren FlipChart geblieben und ganz sicher auch eine Entt&#228;uschung f&#252;r alle Seiten.</p>
<p>Wenn jedoch hinreichend viele Leute bereits Erfahrungen mit der Materie gemacht haben, dann gibt es vermutlich auch unterschiedliche Interpretationen. Diese w&#252;rde ich aber nicht so drastisch wie Ralf als “Unsicherheit” auslegen, sondern eher als Chance die Varianten gemeinsam zu diskutieren und Unklarheiten auszur&#228;umen. Dabei muss es am Ende aber nicht zwingend einen Konsens geben.</p>
<p>Daher denke ich, dass auch ein Format mit weit weniger Moderation bzw. Anleitung wichtig ist, insbesondere auch um das bisher Erlernte in einer sicheren Umgebung zu testen und echtes TeamPlay zu trainieren. Den Begriff “Dojo” ausschlie&#223;lich f&#252;r solche freien Formate zu verwenden, ist wie Ralf beschrieben hat aus historischer Sicht wahrscheinlich eher ungeschickt. Dem stimme ich zu.</p>
<p>Ich denke hier hat Ralf hat meine Twitter-Kommentare evtl. auch etwas &#252;berbewertet (140 Zeichen sind nat&#252;rlich oft auch missverst&#228;ndlich). Ich bin auch nicht daf&#252;r, dass alle Entwickler gleichgemacht werden sollen und es &#252;berhaupt keinen Lehrer gibt. Ganz im Gegenteil jeder soll sich einbringen, denn selbstverst&#228;ndlich sind immer unterschiedliche Wissengrade im Raum zu finden.</p>
<p>Dass alle etwas beisteuern klappt dann aber nur wenn die erfahreneren Entwickler sich auch mal darauf einlassen einen vorgeschlagenen “Irrweg” mit zu gehen und den Erkenntnisprozess so reifen zu lassen. Abgabe von Kontrolle ist zugegebenerma&#223;en nicht gerade einfach, aber manchmal wird man vielleicht auch als alter Hase noch &#252;berrascht werden.</p>
<p>&copy;2010 <a href="http://www.navision-blog.de">Rash thoughts about .NET, C#, F# and Dynamics NAV.</a>. All Rights Reserved.</p>.]]></content:encoded>
			<wfw:commentRss>http://www.navision-blog.de/2010/06/02/erstes-internes-codingdojo-bei-der-msu-solutions-gmbh-in-halle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sample chapter from &quot;Implementing Microsoft Dynamics NAV 2009&quot; published on Navision-blog.de</title>
		<link>http://www.navision-blog.de/2009/03/05/sample-chapter-from-implementing-microsoft-dynamics-nav-2009-published/</link>
		<comments>http://www.navision-blog.de/2009/03/05/sample-chapter-from-implementing-microsoft-dynamics-nav-2009-published/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 13:39:29 +0000</pubDate>
		<dc:creator>Steffen Forkmann</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Dynamics NAV 2009]]></category>
		<category><![CDATA[English posts]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[msu solutions GmbH]]></category>
		<category><![CDATA[Navision]]></category>

		<guid isPermaLink="false">http://www.navision-blog.de/2009/03/05/sample-chapter-from-implementing-microsoft-dynamics-nav-2009-published/</guid>
		<description><![CDATA[&#34;Implementing Microsoft Dynamics NAV 2009&#34; is a new book by David Roys (MVP for Dynamics NAV) and Vjekoslav Babic (Dynamics NAV consultant). It shows the new features of Dynamics NAV 2009 in step-by-step explanations of real-world examples. If you are interested in this book you can read the complete seventh chapter right here on navision-blog.de: [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.packtpub.com/implementing-microsoft-dynamics-nav-2009"><img title="Implementing Microsoft® Dynamics™ NAV 2009" style="margin-bottom: 10px; margin-left: 10px" height="123" alt="Implementing Microsoft® Dynamics™ NAV 2009" src="http://images.packtpub.com/images/100x123/1847195822.png" width="99" align="right" border="0" /></a>&quot;Implementing Microsoft Dynamics NAV 2009&quot; is a new book by <b>David Roys</b> (MVP for Dynamics NAV) and <strong>Vjekoslav Babic</strong> (Dynamics NAV consultant)<strong>.</strong> It shows the new features of Dynamics NAV 2009 in step-by-step explanations of real-world examples.</p>
<p>If you are interested in this book you can read the complete seventh chapter right here on <a href="http://www.navision-blog.de/artikel/extending-the-application-using-microsoft-dynamics-nav-2009-part-i-sample-chapter/">navision-blog.de</a>:</p>
<ul>
<li><a href="http://www.navision-blog.de/artikel/extending-the-application-using-microsoft-dynamics-nav-2009-part-i-sample-chapter/">Extending the Application using Microsoft Dynamics NAV 2009 (Part I)</a> </li>
<li><a href="http://www.navision-blog.de/artikel/extending-the-application-using-microsoft-dynamics-nav-2009-part-ii-sample-chapter/">Extending the Application using Microsoft Dynamics NAV 2009 (Part II)</a> </li>
</ul>
<p><a href="http://www.packtpub.com/files/implementing-microsoft-dynamics-nav-2009-sample-chapter-6-modifying-the-system.pdf">Chapter 6 (“Modifying the System”)</a> is also available for download.</p>
<h4>What the book covers</h4>
<blockquote><h5>Chapter 1</h5>
<p>The purpose of this chapter is a teaser introduction to get you excited about the product, what&#8217;s in it in general, and what&#8217;s in it as compared to previous versions, to give you a little taste of what&#8217;s coming up in the book, and explain what the fuss about this new release is all about.</p>
<h5>Chapter 2</h5>
<p>The RoleTailored client is the new user interface for users of Microsoft Dynamics NAV 2009, and it is completely different to the pervious versions. We&#8217;ll take you through the different components of the interface, introduce the terminology, explore the navigation components and page types, and teach you how to personalize the application to meet your own requirements using the extensive personalization features.</p>
<h5>Chapter 3</h5>
<p>Microsoft Dynamics NAV 2009 introduces a new paradigm to ERP. Instead of the system being focused on the forms that capture and present data and the functions the user can perform, the system is based around the individuals within an organization, their roles, and the tasks they perform. We cover how Microsoft researched the roles and explore the departments, roles, and tasks that have been identified in the Microsoft Dynamics Customer Model. We also show the reader how to assign the standard roles to users, how to create new roles, and how to allow departmental super users to configure the application for their role so that the change is applied to all users with the same profile.</p>
<h5>Chapter 4</h5>
<p>Microsoft Dynamics NAV is not a product with a Next-Next-Finish type of installation, and it takes a lengthy project to deploy it successfully. We focus on the six phases of the implementation process, and explain each phase with detailed dos and don&#8217;ts for a typical implementation. Based on the Dynamics Sure Step implementation methodology with advice liberally sprinkled throughout, special attention is given to new features of Microsoft Dynamics NAV 2009, and where the new capabilities must be taken into account to make most out of the implementation project.</p>
<h5>Chapter 5</h5>
<p>Every implementation of Microsoft Dynamics NAV 2009 will require the system to be configured to meet the needs of the business. This chapter tells the implementation consultant how to do this from a core financials perspective and provides valuable information that will allow developers to understand more about the application they are changing. We cover basic accounting for programmers, dimensions, and posting groups, and how to use the Rapid Implementation Methodology (RIM) Toolkit to speed things along.</p>
<h5><a href="http://www.packtpub.com/files/implementing-microsoft-dynamics-nav-2009-sample-chapter-6-modifying-the-system.pdf">Chapter 6</a></h5>
<p>Hardly any standard system can fit the needs of a business out of the box. Either the customer must shape their processes to match the system, or the consultant must shape the system to match the processes, and usually the latter prevails. This chapter explains the process of modifying the system, how to design a viable data model, and how to design and develop a functional user interface for both RoleTailored and Classic clients, without writing any code.</p>
<h5><a href="http://www.navision-blog.de/artikel/extending-the-application-using-microsoft-dynamics-nav-2009-part-i-sample-chapter/">Chapter 7</a></h5>
<p>The three-tiered architecture of Microsoft Dynamics NAV 2009 and native Web Services Enablement open up a whole new world of possibilities for NAV implementations. We cover some of the many possibilities for extending the application, allowing the consultant and developer to understand the technologies that are available and their respective design considerations. Our practical examples introduce the NAV programmer to the world of .NET and show how you can use the information available on the internet to develop your own killer .NET add-ons.</p>
<h5>Chapter 8</h5>
<p>There&#8217;s much more to development than programming. It starts with understanding what customer really needs, and usually extends way beyond the system being deployed to a test environment. This chapter focuses on the development phase, and what it takes to get from a concept to a live and working solution.</p>
<h5>Chapter 9</h5>
<p>After the system goes live, or as it grows, there are periods when new problems may arise, and often their source is far from obvious. This chapter explores the tools and techniques available for detecting problems, pinpointing the source, and helping to remove them from the system quickly and painlessly. It explains how to debug the Service Tier, how to troubleshoot performance issues, what can be done to avoid problems, and how proper planning before design can help to get it right the first time.</p>
<h5>Chapter 10</h5>
<p>Our sample application focuses on requirements gathering, functional specification creation, solution design, and the eventual build of a prototype. We look at how a business problem can be explored using techniques such as interviewing, use-case modeling, and object-role modeling to create a solution design that can be molded into a working prototype.</p>
</blockquote>
<p>If you want to get more information about the book visit: <a href="http://www.packtpub.com/implementing-microsoft-dynamics-nav-2009/book">http://www.packtpub.com/implementing-microsoft-dynamics-nav-2009/book</a></p>
<p>&copy;2010 <a href="http://www.navision-blog.de">Rash thoughts about .NET, C#, F# and Dynamics NAV.</a>. All Rights Reserved.</p>.]]></content:encoded>
			<wfw:commentRss>http://www.navision-blog.de/2009/03/05/sample-chapter-from-implementing-microsoft-dynamics-nav-2009-published/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Deutsche Add On Module f&#252;r Dynamics NAV 2009 verf&#252;gbar</title>
		<link>http://www.navision-blog.de/2009/01/11/deutsche-add-on-module-fuer-dynamics-nav-2009-verfuegbar/</link>
		<comments>http://www.navision-blog.de/2009/01/11/deutsche-add-on-module-fuer-dynamics-nav-2009-verfuegbar/#comments</comments>
		<pubDate>Sun, 11 Jan 2009 13:26:00 +0000</pubDate>
		<dc:creator>Steffen Forkmann</dc:creator>
				<category><![CDATA[Dynamics NAV 2009]]></category>
		<category><![CDATA[msu solutions GmbH]]></category>
		<category><![CDATA[NAV2009]]></category>
		<category><![CDATA[Navision]]></category>
		<category><![CDATA[partnersource]]></category>

		<guid isPermaLink="false">http://www.navision-blog.de/2009/01/11/deutsche-add-on-module-fuer-dynamics-nav-2009-verfuegbar/</guid>
		<description><![CDATA[Seit dem 22.12.2008 ist die Add On Datenbank f&#252;r NAV2009 mit den Modulen Zahlungsverkehr und Kostenrechnung zum Download auf Partnersource verf&#252;gbar. “Dieses Release beinhaltet folgende Dateien: Klassische fdb Datenbank MDF Datenbank f&#252;r SQL Server Onlinehilfe f&#252;r den Zahlungsverkehr (DEU und ENU) Changes.doc f&#252;r Zahlungsverkehr und Kostenrechnung Hinweis: Die Objekte f&#252;r den Zahlungsverkehr beinhalten auch die [...]]]></description>
			<content:encoded><![CDATA[<p>Seit dem 22.12.2008 ist die Add On Datenbank f&#252;r NAV2009 mit den Modulen Zahlungsverkehr und Kostenrechnung zum <a href="https://mbs.microsoft.com/Cms/Templates/document/General.aspx?NRMODE=Published&amp;NRNODEGUID={A3521E02-687A-4A69-8A15-50B12EA7023E}&amp;NRORIGINALURL=/partnersource/downloads/supplements/microsoftdynamicsnav2009_de_addon_db.htm?printpage=false&amp;NRCACHEHINT=Guest&amp;printpage=false&amp;wa=wsignin1.0">Download auf Partnersource</a> verf&#252;gbar.</p>
<blockquote><p>“Dieses Release beinhaltet folgende Dateien:</p>
<ul>
<li>Klassische fdb Datenbank </li>
<li>MDF Datenbank f&#252;r SQL Server </li>
<li>Onlinehilfe f&#252;r den Zahlungsverkehr (DEU und ENU) </li>
<li>Changes.doc f&#252;r Zahlungsverkehr und Kostenrechnung </li>
</ul>
<p>Hinweis:      <br />Die Objekte f&#252;r den Zahlungsverkehr beinhalten auch die <a href="http://de.wikipedia.org/wiki/Einheitlicher_Euro-Zahlungsverkehrsraum">SEPA</a> Funktionalit&#228;t.       <br />Die Onlinehilfe f&#252;r die Kostenrechnung wird umgehend nachgereicht.”</p>
<p align="right">[<a href="https://mbs.microsoft.com/Cms/Templates/document/General.aspx?NRMODE=Published&amp;NRNODEGUID={A3521E02-687A-4A69-8A15-50B12EA7023E}&amp;NRORIGINALURL=/partnersource/downloads/supplements/microsoftdynamicsnav2009_de_addon_db.htm?printpage=false&amp;NRCACHEHINT=Guest&amp;printpage=false&amp;wa=wsignin1.0">Quelle Partnersource</a>] </p>
</blockquote>
<p>Weitere Links:</p>
<ul>
<li><a href="https://mbs.microsoft.com/fileexchange/?fileID=863ad924-24f1-4522-9de5-7d13ce86c4d7">Deutsche Vollversion von Dynamics NAV 2009</a> </li>
<li><a href="https://mbs.microsoft.com/fileexchange/?fileID=6a6c5a0d-27b2-42f1-8624-5b9bf54ed91a">Update Toolkit</a> </li>
<li><a href="https://mbs.microsoft.com/partnersource/marketing/campaigns/prospect/launchmdnav.htm">Launch Portal f&#252;r Microsoft Dynamics NAV 2009</a></li>
</ul>
<p>&copy;2010 <a href="http://www.navision-blog.de">Rash thoughts about .NET, C#, F# and Dynamics NAV.</a>. All Rights Reserved.</p>.]]></content:encoded>
			<wfw:commentRss>http://www.navision-blog.de/2009/01/11/deutsche-add-on-module-fuer-dynamics-nav-2009-verfuegbar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dynamics NAV Hilfe erstmals auf MSDN verf&#252;gbar</title>
		<link>http://www.navision-blog.de/2008/12/09/dynamics-nav-hilfe-erstmals-auf-msdn-verfuegbar/</link>
		<comments>http://www.navision-blog.de/2008/12/09/dynamics-nav-hilfe-erstmals-auf-msdn-verfuegbar/#comments</comments>
		<pubDate>Tue, 09 Dec 2008 10:12:40 +0000</pubDate>
		<dc:creator>Steffen Forkmann</dc:creator>
				<category><![CDATA[Dynamics NAV 2009]]></category>
		<category><![CDATA[msdn]]></category>

		<guid isPermaLink="false">http://www.navision-blog.de/2008/12/09/dynamics-nav-hilfe-erstmals-auf-msdn-verfuegbar/</guid>
		<description><![CDATA[Die Dynamics NAV 2009 Entwickler-Hilfe ist ab heute auf MSDN verf&#252;gbar. Damit ist es in K&#252;rze auch m&#246;glich &#252;ber Suchmaschinen in der Hilfe zu suchen. Laut dem Microsoft Dynamics NAV Team Blog wird die Hilfe dort auch st&#228;ndig aktualisiert, so dass NAV 2009-Entwickler und -Administratoren ab heute wohl die Onlinevariante bevorzugen sollten. Unter anderem werden [...]]]></description>
			<content:encoded><![CDATA[<p>Die <a href="http://msdn.microsoft.com/en-us/library/cc160853.aspx">Dynamics NAV 2009 Entwickler-Hilfe</a> ist ab heute auf MSDN verf&#252;gbar. Damit ist es in K&#252;rze auch m&#246;glich &#252;ber Suchmaschinen in der Hilfe zu suchen. Laut dem <a href="http://blogs.msdn.com/nav/archive/2008/12/08/start-your-search-engine-microsoft-dynamics-nav-2009-developer-and-it-pro-help-is-on-msdn.aspx">Microsoft Dynamics NAV Team Blog</a> wird die Hilfe dort auch st&#228;ndig aktualisiert, so dass NAV 2009-Entwickler und -Administratoren ab heute wohl die Onlinevariante bevorzugen sollten.</p>
<p>Unter anderem werden auch folgende Themen beschrieben:</p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/library/dd301130.aspx">Install and Configure Microsoft Dynamics NAV 2009</a></li>
<li><a href="http://msdn.microsoft.com/en-us/library/dd338789.aspx">Using the Form Transformation Tool</a></li>
<li><a href="http://msdn.microsoft.com/en-us/library/dd355036.aspx">Working with Web Services</a></li>
<li><a href="http://msdn.microsoft.com/en-us/library/dd338955.aspx">Improving Application Performance</a></li>
</ul>
<p>&copy;2010 <a href="http://www.navision-blog.de">Rash thoughts about .NET, C#, F# and Dynamics NAV.</a>. All Rights Reserved.</p>.]]></content:encoded>
			<wfw:commentRss>http://www.navision-blog.de/2008/12/09/dynamics-nav-hilfe-erstmals-auf-msdn-verfuegbar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dynamics NAV 2009 released und zum Download verf&#252;gbar</title>
		<link>http://www.navision-blog.de/2008/11/17/dynamics-nav-2009-released-und-zum-download-verfuegbar/</link>
		<comments>http://www.navision-blog.de/2008/11/17/dynamics-nav-2009-released-und-zum-download-verfuegbar/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 16:17:45 +0000</pubDate>
		<dc:creator>Steffen Forkmann</dc:creator>
				<category><![CDATA[Dynamics NAV 2009]]></category>
		<category><![CDATA[Navision]]></category>

		<guid isPermaLink="false">http://www.navision-blog.de/2008/11/17/dynamics-nav-2009-released-und-zum-download-verfuegbar/</guid>
		<description><![CDATA[Heute ist es endlich soweit &#8211; Dynamics NAV 2009 steht offiziell zum Download (1.2GB) auf PartnerSource bereit. Der Download ist zwar bereits seit Samstag verf&#252;gbar, aber aus unbekannten strategischen Gr&#252;nden war diese Information mal wieder &#34;Partner Confidential&#34; und es wurde darum gebeten nicht vor dem 19.11.2009 dar&#252;ber zu bloggen. Da die Katze jetzt aber offiziell [...]]]></description>
			<content:encoded><![CDATA[<p>Heute ist es endlich soweit &#8211; Dynamics NAV 2009 steht offiziell zum <a href="https://mbs.microsoft.com/partnersource/downloads/releases/MicrosoftDynamicsNAV2009.htm">Download (1.2GB) auf PartnerSource</a> bereit. Der Download ist zwar bereits seit Samstag verf&#252;gbar, aber aus unbekannten strategischen Gr&#252;nden war diese Information mal wieder &quot;Partner Confidential&quot; und es wurde darum gebeten nicht vor dem 19.11.2009 dar&#252;ber zu bloggen. Da die <a href="http://dynamicsuser.net/blogs/navdev/archive/2008/11/17/nav-2009-is-released.aspx">Katze jetzt aber offiziell aus dem Sack</a> ist: &quot;Happy Downloading!&quot; <img src='http://www.navision-blog.de/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Weitere Information sind im <a href="https://mbs.microsoft.com/partnersource/marketing/campaigns/prospect/launchmdnav.htm">Launch Portal</a> zu finden.</p>
<p>&copy;2010 <a href="http://www.navision-blog.de">Rash thoughts about .NET, C#, F# and Dynamics NAV.</a>. All Rights Reserved.</p>.]]></content:encoded>
			<wfw:commentRss>http://www.navision-blog.de/2008/11/17/dynamics-nav-2009-released-und-zum-download-verfuegbar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Debugging in Dynamics NAV 2009</title>
		<link>http://www.navision-blog.de/2008/10/16/debugging-in-dynamics-nav-2009/</link>
		<comments>http://www.navision-blog.de/2008/10/16/debugging-in-dynamics-nav-2009/#comments</comments>
		<pubDate>Thu, 16 Oct 2008 11:41:09 +0000</pubDate>
		<dc:creator>Steffen Forkmann</dc:creator>
				<category><![CDATA[.NET 3.0]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Dynamics NAV 2009]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[msu solutions GmbH]]></category>
		<category><![CDATA[Debugging]]></category>
		<category><![CDATA[RoleTailored-Client]]></category>
		<category><![CDATA[UnitTest]]></category>
		<category><![CDATA[Visual Studio 2008]]></category>

		<guid isPermaLink="false">http://www.navision-blog.de/2008/10/16/debugging-in-nav-2009/</guid>
		<description><![CDATA[Claus Lundstrøm zeigt in einem sch&#246;nen Blogpost wie man in NAV2009 den Code auf Seite der ServiceTier (also auch remote) debuggen kann – und zwar &#252;ber Visual Studio 2008 direkt im generierten C#-Code. Mit dieser Variante ist man nicht mehr gezwungen das Debugging &#252;ber den Classic-Client zu tun, sondern kann direkt aus dem Dynamics NAV [...]]]></description>
			<content:encoded><![CDATA[<p>Claus Lundstrøm zeigt in einem sch&#246;nen Blogpost wie man in <a href="http://blogs.msdn.com/clausl/archive/2008/10/14/debugging-in-nav-2009.aspx">NAV2009 den Code auf Seite der ServiceTier (also auch remote) debuggen</a> kann – und zwar &#252;ber Visual Studio 2008 direkt im generierten C#-Code. Mit dieser Variante ist man nicht mehr gezwungen das Debugging &#252;ber den Classic-Client zu tun, sondern kann direkt aus dem Dynamics NAV RoleTailored-Client debuggen.</p>
<p>Dummerweise ist der generierte C#-Code, wie das bei generiertem Code eigentlich immer der Fall ist, nicht gerade “optisch sch&#246;ner” C#-Style und hat auch nur noch wenig mit dem Original-C/AL-Code zu tun – ist aber immerhin lesbar.</p>
<p>Das ist ein wirklich interessanter Ansatz und erlaubt mit etwas Geschick auch UnitTesting f&#252;r NAV 2009. Daf&#252;r werde ich demn&#228;chst mal versuchen ein kleines Beispiel zu bloggen.</p>
<p>&copy;2010 <a href="http://www.navision-blog.de">Rash thoughts about .NET, C#, F# and Dynamics NAV.</a>. All Rights Reserved.</p>.]]></content:encoded>
			<wfw:commentRss>http://www.navision-blog.de/2008/10/16/debugging-in-dynamics-nav-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Folien vom ERP Launch und dem Technical Airlift verf&#252;gbar</title>
		<link>http://www.navision-blog.de/2008/10/08/folien-vom-erp-launch-und-dem-technical-airlift-verfuegbar/</link>
		<comments>http://www.navision-blog.de/2008/10/08/folien-vom-erp-launch-und-dem-technical-airlift-verfuegbar/#comments</comments>
		<pubDate>Wed, 08 Oct 2008 07:55:59 +0000</pubDate>
		<dc:creator>Steffen Forkmann</dc:creator>
				<category><![CDATA[Dynamics NAV 2009]]></category>
		<category><![CDATA[Veranstaltungen]]></category>
		<category><![CDATA[Dynamics AX 2009]]></category>
		<category><![CDATA[ERP Launch]]></category>
		<category><![CDATA[Jeder hat's drauf]]></category>
		<category><![CDATA[Technical Airlift]]></category>

		<guid isPermaLink="false">http://www.navision-blog.de/2008/10/08/folien-vom-erp-launch-und-dem-technical-airlift-verfuegbar/</guid>
		<description><![CDATA[Die Folien vieler Vortr&#228;ge von der diesj&#228;hrigen Microsoft-ERP-Launchveranstaltung sowie vom Technical Airlift 2008 sind nun zum Download verf&#252;gbar. In insgesamt 29 Pr&#228;sentation und 2 Videos werden die Neuheiten von Dynamics AX 2009 und Dynamics NAV 2009 vorgestellt. &#169;2010 Rash thoughts about .NET, C#, F# and Dynamics NAV.. All Rights Reserved..]]></description>
			<content:encoded><![CDATA[<p>Die Folien vieler Vortr&#228;ge von der diesj&#228;hrigen Microsoft-ERP-Launchveranstaltung sowie vom Technical Airlift 2008 sind nun zum <a href="http://www.microsoft.de/partner/dynamics_launch">Download</a> verf&#252;gbar. In insgesamt 29 Pr&#228;sentation und 2 Videos werden die Neuheiten von Dynamics AX 2009 und Dynamics NAV 2009 vorgestellt.</p>
<p>&copy;2010 <a href="http://www.navision-blog.de">Rash thoughts about .NET, C#, F# and Dynamics NAV.</a>. All Rights Reserved.</p>.]]></content:encoded>
			<wfw:commentRss>http://www.navision-blog.de/2008/10/08/folien-vom-erp-launch-und-dem-technical-airlift-verfuegbar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blogwelle zu NAV 2009 gestartet</title>
		<link>http://www.navision-blog.de/2008/09/26/blogwelle-zu-nav-2009-gestartet/</link>
		<comments>http://www.navision-blog.de/2008/09/26/blogwelle-zu-nav-2009-gestartet/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 09:43:52 +0000</pubDate>
		<dc:creator>Steffen Forkmann</dc:creator>
				<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Dynamics NAV 2009]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[KPI]]></category>
		<category><![CDATA[Syntax-Highlighting]]></category>

		<guid isPermaLink="false">http://www.navision-blog.de/2008/09/26/blogwelle-zu-nav-2009-gestartet/</guid>
		<description><![CDATA[Wie ich vermutet habe, holen viele NAV-Blogger heute (nach dem Aufheben der NDA) ihre vorbereiteten Artikel heraus und bloggen ausf&#252;hrlich zur neuen Navision-Version. Unter anderem weist Kine’s Info auf das Syntax-Hightlighting in NAV 2009 hin und Waldo zeigt auch erste Screenshots der neuen Version. Interessant sind aber auch die schon etwas l&#228;nger existierenden Artikel, die [...]]]></description>
			<content:encoded><![CDATA[<p>Wie ich vermutet habe, holen viele NAV-Blogger heute (nach dem Aufheben der NDA) ihre vorbereiteten Artikel heraus und bloggen ausf&#252;hrlich zur neuen Navision-Version. Unter anderem weist <a href="http://dynamicsuser.net/blogs/kine/default.aspx">Kine’s Info</a> auf das <a href="http://dynamicsuser.net/blogs/kine/archive/2008/09/25/microsot-dynamics-nav-2009-c-al-colored.aspx">Syntax-Hightlighting in NAV 2009</a> hin und <a href="http://dynamicsuser.net/blogs/waldo/default.aspx">Waldo</a> zeigt auch erste <a href="http://dynamicsuser.net/blogs/waldo/archive/2008/09/25/marketing-beta-for-microsoft-dynamics-nav-2009-is-available.aspx">Screenshots der neuen Version</a>. </p>
<p>Interessant sind aber auch die schon etwas l&#228;nger existierenden Artikel, die im <a href="http://dynamicsuser.net/blogs/navdev/default.aspx">NAV Developers Blog</a> ver&#246;ffentlicht werden. Dort wird z.B. auf die <a href="http://dynamicsuser.net/blogs/navdev/archive/2008/08/20/nav-2009-how-to-generate-charts-kpis.aspx">Erstellung von Key Performance Indicators in NAV 2009</a> eingegangen. </p>
<p>Claus Lundstrøm setzt sich in seinem Blog mit dem Thema <a href="http://blogs.msdn.com/clausl/archive/2008/09/21/new-drop-down-window-in-microsoft-nav-2009-using-fields-groups.aspx">Drop Down Windows in NAV 2009</a> auseinander und hat jetzt auch eine Liste der in <a href="http://blogs.msdn.com/clausl/archive/2008/09/28/action-and-activity-button-icons-in-microsoft-dynamics-nav-2009.aspx">NAV 2009 verf&#252;gbaren Icons</a> ver&#246;ffentlicht.</p>
<p>&copy;2010 <a href="http://www.navision-blog.de">Rash thoughts about .NET, C#, F# and Dynamics NAV.</a>. All Rights Reserved.</p>.]]></content:encoded>
			<wfw:commentRss>http://www.navision-blog.de/2008/09/26/blogwelle-zu-nav-2009-gestartet/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Marketing Beta f&#252;r Dynamics NAV 2009 verf&#252;gbar</title>
		<link>http://www.navision-blog.de/2008/09/26/marketing-beta-fuer-dynamics-nav-2009-verfuegbar/</link>
		<comments>http://www.navision-blog.de/2008/09/26/marketing-beta-fuer-dynamics-nav-2009-verfuegbar/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 09:01:36 +0000</pubDate>
		<dc:creator>Steffen Forkmann</dc:creator>
				<category><![CDATA[Dynamics NAV 2009]]></category>
		<category><![CDATA[Veranstaltungen]]></category>
		<category><![CDATA[BASTA! 2008]]></category>
		<category><![CDATA[CTP4]]></category>
		<category><![CDATA[Marketing Beta]]></category>

		<guid isPermaLink="false">http://www.navision-blog.de/2008/09/26/marketing-beta-fuer-dynamics-nav-2009-verfuegbar/</guid>
		<description><![CDATA[Nachdem ich gestern auf der BASTA! 2008 in Mainz einen Vortrag &#252;ber NAV 2009 halten durfte, ist nun auch heute endlich das offizielle Marketing-Beta-Package zum Download (4802 MB) auf PartnerSource verf&#252;gbar. Das “Microsoft Dynamics NAV 2009 Marketing Beta Release” ist ein Paket aus einem Virtual PC-Image von Microsoft Dynamics NAV 2009 (Marketing Beta) und einer [...]]]></description>
			<content:encoded><![CDATA[<p>Nachdem ich gestern auf der <a href="http://it-republik.de/dotnet/basta/">BASTA! 2008 in Mainz</a> einen Vortrag &#252;ber NAV 2009 halten durfte, ist nun auch heute endlich das offizielle <a href="https://mbs.microsoft.com/partnersource/deployment/methodology/vpc/MarketingBeta_NAV2009.htm">Marketing-Beta-Package</a> zum Download (4802 MB) auf PartnerSource verf&#252;gbar. </p>
<p>Das “Microsoft Dynamics NAV 2009 Marketing Beta Release” ist ein Paket aus einem Virtual PC-Image von Microsoft Dynamics NAV 2009 (Marketing Beta) und einer Reihe von zugeh&#246;rigen Dokumenten. Dabei handelt es sich unter anderem um eine Hilfedatei mit “<a href="https://mbs.microsoft.com/downloads/partner/Nav/2009MarketingBeta/MicrosoftDynamicsNAV2009MarketingBeta_chmfile.zip">Walk-through scenarios from the User Documentation”</a> und Powerpoints zu <a href="https://mbs.microsoft.com/partnersource/marketing/marketingcollateral/presentationdecks/WebServices_Tech_NAV2009.htm">Web Services</a>, <a href="https://mbs.microsoft.com/partnersource/marketing/marketingcollateral/presentationdecks/Reporting_Tech_NAV2009.htm">Reporting</a> und dem <a href="https://mbs.microsoft.com/partnersource/marketing/marketingcollateral/presentationdecks/PageDesigner_Tech_NAV2009.htm">Page Designer</a> in NAV 2009.</p>
<p>Mit der Ver&#246;ffentlichung der Marketing Beta (CTP4) ist nun auch die Zeit der Verschwiegenheitsvereinbarung (NDA) der CTP3 vorbei und es kann ausf&#252;hrlich zu technischen Details von NAV 2009 gebloggt werden.</p>
<p>Ich fange bei dieser Gelegenheit mal mit den zugeh&#246;rigen Dokumenten der Marketing Beta an und werde in sp&#228;teren Postings nat&#252;rlich auch auf die CTP4 selbst eingehen.</p>
<p>Bei dem Hilfedokument handelt es sich z.B. nur um eine Vorabversion der eigentlich NAV 2009-Hilfe, so dass einige Bereiche nur als Platzhalter angelegt sind. <img src='http://www.navision-blog.de/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p><a href="http://www.navision-blog.de/blog/images/MarketingBetafrDynamicsNAV2009verfgbar_9B25/image_4.png"><img class="bordered" title="Teile der Hilfe sind noch Platzhalter" height="179" alt="Teile der Hilfe sind noch Platzhalter" src="http://www.navision-blog.de/blog/images/MarketingBetafrDynamicsNAV2009verfgbar_9B25/image.png" width="500" border="0" /></a></p>
<p>Insgesamt muss man aber sagen, dass die Hilfe (auch jetzt schon) wesentlich umfangreicher ist, als das bisher bei Navision-Hilfen der Fall war. Gerade die Bereiche zum Thema Reporting und Form Transformation sind auch schon sehr detailliert ausgef&#252;hrt. Dabei setzt man nun z.B: auch verst&#228;rkt auf Ablaufdiagramme:</p>
<p><a href="http://www.navision-blog.de/blog/images/MarketingBetafrDynamicsNAV2009verfgbar_9B25/image_3.png"><img class="bordered" title="image" height="213" alt="image" src="http://www.navision-blog.de/blog/images/MarketingBetafrDynamicsNAV2009verfgbar_9B25/image_thumb.png" width="240" border="0" /></a></p>
<p>Weiterhin ist geplant die NAV-Hilfe mit ins MSDN zu integrieren, so dass Dokumentationsupdates leichter zur Verf&#252;gung gestellt werden k&#246;nnen. Ein weiterer netter Nebeneffekt vom MSDN ist nat&#252;rlich, dass man dann mit der Suchmaschine seiner Wahl die Hilfe durchsuchen kann.</p>
<p>Zu den drei Powerpoints gibt es eigentlich nicht viel zu sagen, au&#223;er das sie sich in ihrer Aussagekraft sehr stark unterscheiden. Die PPT zum Thema WebService zum Beispiel zeigt relativ detaillierten Quellcode, w&#228;hrend die zum Thema PageDesigner &#252;berhaupt keine Informationen enth&#228;lt. Lustigerweise steht bei letzterer Pr&#228;sentation “Mircrosoft Confidential” drunter. <img src='http://www.navision-blog.de/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
</p>
</p>
<p>Zus&#228;tzlich gibt es derzeit noch ein Dokument mit den <a href="https://mbs.microsoft.com/partnersource/newsevents/news/mdnav2009systemrequirements.htm">Systemvoraussetzungen</a> und eins mit den <a href="https://mbs.microsoft.com/downloads/partner/Nav/2009MarketingBeta/MicrosoftDynamicsNAV2009MarketingBetaReleaseNotes.pdf">Release Notes bzw. Known Issues der CTP4</a>.</p>
<p>&copy;2010 <a href="http://www.navision-blog.de">Rash thoughts about .NET, C#, F# and Dynamics NAV.</a>. All Rights Reserved.</p>.]]></content:encoded>
			<wfw:commentRss>http://www.navision-blog.de/2008/09/26/marketing-beta-fuer-dynamics-nav-2009-verfuegbar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
