<?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>Doens.be &#187; Dynamics AX</title>
	<atom:link href="http://www.doens.be/tag/dynamics-ax/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.doens.be</link>
	<description></description>
	<lastBuildDate>Sat, 07 Jan 2012 04:20:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Change the language at runtime</title>
		<link>http://www.doens.be/2011/11/change-the-language-at-runtime/</link>
		<comments>http://www.doens.be/2011/11/change-the-language-at-runtime/#comments</comments>
		<pubDate>Wed, 30 Nov 2011 06:00:18 +0000</pubDate>
		<dc:creator>Jeroen Doens</dc:creator>
				<category><![CDATA[Dynamics AX]]></category>
		<category><![CDATA[Ax 4.0]]></category>
		<category><![CDATA[Ax 5.0 (2009)]]></category>
		<category><![CDATA[Ax 6.0 (2012)]]></category>
		<category><![CDATA[Infolog]]></category>
		<category><![CDATA[Language]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[X++]]></category>

		<guid isPermaLink="false">http://www.doens.be/?p=979</guid>
		<description><![CDATA[Normally when you change your language you go to your user options, change your current language and the restart the client. This week I got the question if it was possible to do so in runtime. You can do so by just calling the infolog.language(str 7 _languageCode). All labels that you load after calling this [...]]]></description>
			<content:encoded><![CDATA[<p>Normally when you change your language you go to your user options, change your current language and the restart the client. This week I got the question if it was possible to do so in runtime. You can do so by just calling the <strong>infolog.language(<span style="color: #000080;">str</span> <span style="color: #ff0000;">7</span> _languageCode)</strong>. All labels that you load after calling this method will be translated to the new language.<span id="more-979"></span></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
</pre></td><td class="code"><pre class="xpp" style="font-family:monospace;"><span style="color: #0000ff;">static</span> <span style="color: #0000ff;">void</span> JDO_ChangeLanguage<span style="color: #000000;">&#40;</span>Args _args<span style="color: #000000;">&#41;</span>
<span style="color: #000000;">&#123;</span>
    info<span style="color: #000000;">&#40;</span><span style="color: #ff0000;">&quot;@SYS1&quot;</span><span style="color: #000000;">&#41;</span>;
    infolog.<span style="color: #000000;">language</span><span style="color: #000000;">&#40;</span><span style="color: #ff0000;">'nl-be'</span><span style="color: #000000;">&#41;</span>; <span style="color: #007f00;">// Change the language to nl-be</span>
    info<span style="color: #000000;">&#40;</span><span style="color: #ff0000;">&quot;@SYS1&quot;</span><span style="color: #000000;">&#41;</span>;
    infolog.<span style="color: #000000;">language</span><span style="color: #000000;">&#40;</span><span style="color: #ff0000;">'fr-be'</span><span style="color: #000000;">&#41;</span>; <span style="color: #007f00;">// Change the language to fr-be</span>
    info<span style="color: #000000;">&#40;</span><span style="color: #ff0000;">&quot;@SYS1&quot;</span><span style="color: #000000;">&#41;</span>;
    infolog.<span style="color: #000000;">language</span><span style="color: #000000;">&#40;</span><span style="color: #ff0000;">'it'</span><span style="color: #000000;">&#41;</span>; <span style="color: #007f00;">// Change the language to it</span>
    info<span style="color: #000000;">&#40;</span><span style="color: #ff0000;">&quot;@SYS1&quot;</span><span style="color: #000000;">&#41;</span>;
    infolog.<span style="color: #000000;">language</span><span style="color: #000000;">&#40;</span><span style="color: #ff0000;">'de'</span><span style="color: #000000;">&#41;</span>; <span style="color: #007f00;">// Change the language to de</span>
    info<span style="color: #000000;">&#40;</span><span style="color: #ff0000;">&quot;@SYS1&quot;</span><span style="color: #000000;">&#41;</span>;
    infolog.<span style="color: #000000;">language</span><span style="color: #000000;">&#40;</span><span style="color: #ff0000;">'en-us'</span><span style="color: #000000;">&#41;</span>; <span style="color: #007f00;">// Change the language to en-us</span>
    info<span style="color: #000000;">&#40;</span><span style="color: #ff0000;">&quot;@SYS1&quot;</span><span style="color: #000000;">&#41;</span>;
<span style="color: #000000;">&#125;</span></pre></td></tr></table></div>

<p>And the result is:</p>
<p><img class="size-full wp-image-980 alignnone" title="infologLanguage" src="http://www.doens.be/wp-content/uploads/2011/11/infologLanguage.png" alt="" width="356" height="390" /></p>
<p><strong>Caution</strong>: When you use this function make sure you get the current language before you use this function, so you can change it back when you don&#8217;t need it any more.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.doens.be/2011/11/change-the-language-at-runtime/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Amount in words</title>
		<link>http://www.doens.be/2011/11/amount-in-words/</link>
		<comments>http://www.doens.be/2011/11/amount-in-words/#comments</comments>
		<pubDate>Mon, 28 Nov 2011 06:00:42 +0000</pubDate>
		<dc:creator>Jeroen Doens</dc:creator>
				<category><![CDATA[Dynamics AX]]></category>
		<category><![CDATA[Ax 4.0]]></category>
		<category><![CDATA[Ax 5.0 (2009)]]></category>
		<category><![CDATA[Ax 6.0 (2012)]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[X++]]></category>

		<guid isPermaLink="false">http://www.doens.be/?p=971</guid>
		<description><![CDATA[This week one of my customers asked me to place the amount in words on a invoice. I couldn&#8217;t believe that sush function wasn&#8217;t availible in standard Ax. After some research I found that the Global-class contains the following methods: static TempStr numeralsToTxt(real _num) static TempStr numeralsToTxt_EN(real _num) static TempStr numeralsToTxt_ES(real _num) static TempStr numeralsToTxt_FR(real [...]]]></description>
			<content:encoded><![CDATA[<p>This week one of my customers asked me to place the amount in words on a invoice. I couldn&#8217;t believe that sush function wasn&#8217;t availible in standard Ax. After some research I found that the <strong>Global-class</strong> contains the following methods:</p>
<ul>
<li><span style="color: #000080;">static TempStr</span> <strong>numeralsToTxt</strong>(<span style="color: #000080;">real</span> _num)</li>
<li><span style="color: #000080;">static TempStr</span> <strong>numeralsToTxt_EN</strong>(<span style="color: #000080;">real</span> _num)</li>
<li><span style="color: #000080;">static TempStr</span> <strong>numeralsToTxt_ES</strong>(<span style="color: #000080;">real</span> _num)</li>
<li><span style="color: #000080;">static TempStr</span> <strong>numeralsToTxt_FR</strong>(<span style="color: #000080;">real</span> _num)</li>
<li><span style="color: #000080;">static TempStr</span> <strong>numeralsToTxt_NL</strong>(<span style="color: #000080;">real</span> _num)</li>
</ul>
<p><span id="more-971"></span>So you can just use these methods like this:</p>

<div class="wp_syntax"><div class="code"><pre class="xpp" style="font-family:monospace;"><span style="color: #0000ff;">static</span> <span style="color: #0000ff;">void</span> JDO_AmountInWords<span style="color: #000000;">&#40;</span>Args _args<span style="color: #000000;">&#41;</span>
<span style="color: #000000;">&#123;</span>
    info<span style="color: #000000;">&#40;</span>numeralsToTxt<span style="color: #000000;">&#40;</span><span style="color: #000000;">123456789.12</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>;
<span style="color: #000000;">&#125;</span></pre></div></div>

<p>And you get the following result:</p>
<p><img class="size-full wp-image-973 alignnone" title="numeralsToTxt" src="http://www.doens.be/wp-content/uploads/2011/11/numeralsToTxt.png" alt="" width="356" height="323" /></p>
<p>I know these methods aren&#8217;t perfect, but they can be a start and save you a lot of programming time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.doens.be/2011/11/amount-in-words/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to run a Microsoft Ax 2012 Hyper-V on VirtualBox (Enterpris Portal Problem)</title>
		<link>http://www.doens.be/2011/11/how-to-run-a-microsoft-ax-2012-hyper-v-on-virtualbox-enterpris-portal-problem/</link>
		<comments>http://www.doens.be/2011/11/how-to-run-a-microsoft-ax-2012-hyper-v-on-virtualbox-enterpris-portal-problem/#comments</comments>
		<pubDate>Sat, 26 Nov 2011 06:00:00 +0000</pubDate>
		<dc:creator>Jeroen Doens</dc:creator>
				<category><![CDATA[Dynamics AX]]></category>
		<category><![CDATA[Ax 6.0 (2012)]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Virtual Machine]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Server 2008 R2]]></category>

		<guid isPermaLink="false">http://www.doens.be/?p=992</guid>
		<description><![CDATA[In my previous post I described how to run the standard Microsoft Ax 2012 Hyper-V VPC on your regular Windows Client with VirtualBox. There was one thing I forgot to mention, when you want to use the Enterprise Portal (and you probably will) you need to adjust the windows hosts-file on the VPC. How: Just [...]]]></description>
			<content:encoded><![CDATA[<p>In my previous post I described how to <a title="How to run a Microsoft Ax 2012 Hyper-V on VirtualBox" href="http://www.doens.be/2011/11/how-to-run-a-microsoft-ax-2012-hyper-v-on-virtualbox/" target="_blank">run the standard Microsoft Ax 2012 Hyper-V VPC on your reg</a><a title="How to run a Microsoft Ax 2012 Hyper-V on VirtualBox" href="http://www.doens.be/2011/11/how-to-run-a-microsoft-ax-2012-hyper-v-on-virtualbox/" target="_blank">ular Windows Client with VirtualBox</a>. There was one thing I forgot to mention, when you want to use the Enterprise Portal (and you probably will) you need to adjust the windows hosts-file on the VPC.</p>
<p>How:</p>
<ul>
<li>Just open Notepad and open &#8216;C:\Windows\System32\drivers\etc\Hosts&#8217;</li>
<li>Add a line  containing &#8217;127.0.0.1              dynamicsax.contoso.com &#8216;</li>
</ul>
<p>Now the file should look like this:</p>
<blockquote><p># Copyright (c) 1993-2009 Microsoft Corp.<br />
#<br />
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.<br />
#<br />
# This file contains the mappings of IP addresses to host names. Each<br />
# entry should be kept on an individual line. The IP address should<br />
# be placed in the first column followed by the corresponding host name.<br />
# The IP address and the host name should be separated by at least one<br />
# space.<br />
#<br />
# Additionally, comments (such as these) may be inserted on individual<br />
# lines or following the machine name denoted by a &#8216;#&#8217; symbol.<br />
#<br />
# For example:<br />
#<br />
#      102.54.94.97     rhino.acme.com          # source server<br />
#       38.25.63.10     x.acme.com              # x client host</p>
<p># localhost name resolution is handled within DNS itself.<br />
#    127.0.0.1       localhost<br />
#    ::1             localhost<br />
127.0.0.1       dynamicsax.contoso.com</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.doens.be/2011/11/how-to-run-a-microsoft-ax-2012-hyper-v-on-virtualbox-enterpris-portal-problem/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Technical Conference 2011 (Nice) &#8211; Just a weekend away</title>
		<link>http://www.doens.be/2011/11/technical-conference-2011-nice-just-a-weekend-away/</link>
		<comments>http://www.doens.be/2011/11/technical-conference-2011-nice-just-a-weekend-away/#comments</comments>
		<pubDate>Sat, 12 Nov 2011 09:00:34 +0000</pubDate>
		<dc:creator>Jeroen Doens</dc:creator>
				<category><![CDATA[Dynamics AX]]></category>
		<category><![CDATA[Ax 6.0 (2012)]]></category>
		<category><![CDATA[Conference]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.doens.be/2011/11/technical-conference-2011-nice-just-a-weekend-away/</guid>
		<description><![CDATA[Hi everyone, Together with some colleagues, I will attend the Technical Conference in Nice next monday. I’m very exited, as this is a the first Dynamics conference I&#8217;ll attend. Since my plane leaves tomorrow morning at 10:15 (local time Belgium) my Saturday will be preparing my luggage and myself mentally to step in the airplane [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.doens.be/wp-content/uploads/2011/10/AXTechConference_04.png" alt="Ax 2012 technical conference - nice" title="AXTechConference_2011" width="500" height="205" class="alignnone size-full wp-image-885" /></p>
<p>Hi everyone,</p>
<p>Together with some colleagues, I will attend the Technical Conference in Nice next monday.<br />
I’m very exited, as this is a the first Dynamics conference I&#8217;ll attend.<br />
Since my plane leaves tomorrow morning at 10:15 <em>(local time Belgium)</em> my Saturday will be preparing my luggage and myself mentally to step in the airplane <em>(not a huge fan of flying)</em> <img src='http://www.doens.be/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>I will breed you about the sessions I&#8217;ll attend.<br />
See you there!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.doens.be/2011/11/technical-conference-2011-nice-just-a-weekend-away/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Inside Microsoft Dynamics AX 2012 (YouTube)</title>
		<link>http://www.doens.be/2011/11/inside-microsoft-dynamics-ax-2012-youtube/</link>
		<comments>http://www.doens.be/2011/11/inside-microsoft-dynamics-ax-2012-youtube/#comments</comments>
		<pubDate>Sat, 12 Nov 2011 07:20:33 +0000</pubDate>
		<dc:creator>Jeroen Doens</dc:creator>
				<category><![CDATA[Dynamics AX]]></category>
		<category><![CDATA[Ax 6.0 (2012)]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://www.doens.be/2011/11/inside-microsoft-dynamics-ax-2012-youtube/</guid>
		<description><![CDATA[A while ago a cross some YouTube clips &#8216;Inside Dynamics Ax 2012&#8242;. I just found a blogpost that groups them all: http://daxdilip.blogspot.com/2011/08/inside-microsoft-dynamics-ax-2012.html Have fun watching&#8230;]]></description>
			<content:encoded><![CDATA[<p>A while ago a cross some YouTube clips &#8216;Inside Dynamics Ax 2012&#8242;. I just found a blogpost that groups them all: <a href="http://daxdilip.blogspot.com/2011/08/inside-microsoft-dynamics-ax-2012.html" title="Inside Dynamics Ax 2012" target="_blank">http://daxdilip.blogspot.com/2011/08/inside-microsoft-dynamics-ax-2012.html</a></p>
<p>Have fun watching&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.doens.be/2011/11/inside-microsoft-dynamics-ax-2012-youtube/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Dynamics AX Technical Conference 2011, Nice</title>
		<link>http://www.doens.be/2011/10/microsoft-dynamics-ax-technical-conference-2011-nice/</link>
		<comments>http://www.doens.be/2011/10/microsoft-dynamics-ax-technical-conference-2011-nice/#comments</comments>
		<pubDate>Mon, 17 Oct 2011 20:02:10 +0000</pubDate>
		<dc:creator>Jeroen Doens</dc:creator>
				<category><![CDATA[Dynamics AX]]></category>
		<category><![CDATA[Ax 6.0 (2012)]]></category>
		<category><![CDATA[Conference]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.doens.be/?p=884</guid>
		<description><![CDATA[Last week I received my confirmation for the Microsoft Dynamics Ax Technical Conference in Nice. The event is scheduled to be held from November 14 – 16 in NICE Acropolis, Nice, France. You can find more info on the event&#8217;s homepage. I&#8217;ll keep you up-to-date]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.microsoft.com/dynamics/DynamicsAXtechnicalconference2011/Default.aspx"><img class="alignnone size-full wp-image-885" title="AXTechConference_2011" src="http://www.doens.be/wp-content/uploads/2011/10/AXTechConference_04.png" alt="" width="500" height="205" /></a></p>
<p>Last week I received my confirmation for the Microsoft Dynamics Ax Technical Conference in Nice.</p>
<p>The event is scheduled to be held from November 14 – 16 in NICE Acropolis, Nice, France. You can find more info on the <a title="Microsoft Dynamics AX Technical Conference 2011" href="http://www.microsoft.com/dynamics/DynamicsAXtechnicalconference2011/" target="_blank">event&#8217;s homepage</a>.</p>
<p>I&#8217;ll keep you up-to-date <img src='http://www.doens.be/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.doens.be/2011/10/microsoft-dynamics-ax-technical-conference-2011-nice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Dynamics Ax 2012 Unleashed (book)</title>
		<link>http://www.doens.be/2011/04/microsoft-dynamics-ax-2012-unleashed-book/</link>
		<comments>http://www.doens.be/2011/04/microsoft-dynamics-ax-2012-unleashed-book/#comments</comments>
		<pubDate>Tue, 26 Apr 2011 04:00:33 +0000</pubDate>
		<dc:creator>Jeroen Doens</dc:creator>
				<category><![CDATA[Dynamics AX]]></category>
		<category><![CDATA[Ax 6.0 (2012)]]></category>
		<category><![CDATA[Books]]></category>

		<guid isPermaLink="false">http://www.doens.be/?p=853</guid>
		<description><![CDATA[I couldn&#8217;t believe it: On Amazon.com I found the first paperback concerning Ax 2012 &#8216;Microsoft Dynamics Ax 2012 Unleashed&#8217;. The book will be released Ocober/November this year. There is not much info availible at the moment, but if you&#8217;re intrested in pre-ordering go to Amazon.com Details: Author: David Weiner, Ivan Cole Format: Paperback Publish Date: October [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.doens.be/wp-content/uploads/2011/04/Book_MicrosoftDynamicsAx2012Unleashed.jpg"><img class="size-medium wp-image-854 alignleft" title="Microsoft Dynamics Ax 2012 Unleashed" src="http://www.doens.be/wp-content/uploads/2011/04/Book_MicrosoftDynamicsAx2012Unleashed-300x300.jpg" alt="" width="300" height="300" /></a>I couldn&#8217;t believe it:</p>
<p>On <a title="Amazon.com" href="http://www.amazon.com" target="_blank">Amazon.com</a> I found the first paperback concerning Ax 2012 &#8216;Microsoft Dynamics Ax 2012 Unleashed&#8217;. The book will be released Ocober/November this year. There is not much info availible at the moment, but if you&#8217;re intrested in pre-ordering go to <a title="Microsoft Dynamics Ax 2012 Unleashed @ Amazon.com" href="http://amzn.com/0672335484" target="_blank">Amazon.com</a></p>
<p><span id="more-853"></span></p>
<p>Details:</p>
<table>
<tbody>
<tr>
<td valign="top">Author:</td>
<td valign="top">David Weiner, Ivan Cole</td>
</tr>
<tr>
<td>Format:</td>
<td>Paperback</td>
</tr>
<tr>
<td>Publish Date:</td>
<td>October 2011</td>
</tr>
<tr>
<td>ISBN-10:</td>
<td>0672335484</td>
</tr>
<tr>
<td>ISBN-13:</td>
<td>9780672335488</td>
</tr>
<tr>
<td>Edition:</td>
<td>1st</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.doens.be/2011/04/microsoft-dynamics-ax-2012-unleashed-book/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Microsoft Dynamics Ax 2012 (6.0) &#8211; Béta</title>
		<link>http://www.doens.be/2011/04/microsoft-dynamics-ax-2012-60-beta/</link>
		<comments>http://www.doens.be/2011/04/microsoft-dynamics-ax-2012-60-beta/#comments</comments>
		<pubDate>Tue, 12 Apr 2011 17:00:08 +0000</pubDate>
		<dc:creator>Jeroen Doens</dc:creator>
				<category><![CDATA[Dynamics AX]]></category>
		<category><![CDATA[Ax 6.0 (2012)]]></category>
		<category><![CDATA[Béta]]></category>

		<guid isPermaLink="false">http://www.doens.be/?p=842</guid>
		<description><![CDATA[Like most Ax developers I am looking forward to the Ax 2012 release in Q4 this year (in the US a bit earlier). Today Microsoft launched the Ax 2012 Béta and I can&#8217;t wait to try it. You can find the download on partner source (Hyper-V &#38; ISO) and customer source (Hyper-V &#38; ISO). Keep in mind [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-843" title="MicrosoftDynamicsAx" src="http://www.doens.be/wp-content/uploads/2011/04/Gg852966_AXlogoen-usAX_60.png" alt="" width="300" height="79" /></p>
<p>Like most Ax developers I am looking forward to the Ax 2012 release in Q4 this year (in the US a bit earlier). Today Microsoft launched the Ax 2012 Béta and I can&#8217;t wait to try it. You can find the download on partner source (<a title="Microsoft Dynamics AX 2012 Beta" href="https://mbs.microsoft.com/partnersource/marketing/marketingcollateral/demos/AX2012DemoToolsMaterials" target="_blank">Hyper-V</a> &amp; <a title="Microsoft Dynamics AX 2012 Beta" href="https://mbs.microsoft.com/partnersource/support/selfsupport/productreleases/AX2012Beta" target="_blank">ISO</a>) and customer source (<a title="Microsoft Dynamics AX 2012 Beta" href="https://mbs.microsoft.com/customersource/downloads/servicepacks/AX2012DemoToolsMaterials" target="_blank">Hyper-V</a> &amp; <a title="Microsoft Dynamics AX 2012 Beta" href="https://mbs.microsoft.com/customersource/downloads/servicepacks/AX2012Beta" target="_blank">ISO</a>). Keep in mind that you need a valid PartnerSource and CustomerSource-account.</p>
<p>Extra info is available on <a title="Microsoft Dynamics AX 2012 Technical Library" href="http://technet.microsoft.com/en-us/library/gg852966(v=AX.60).aspx" target="_blank">TechNet</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.doens.be/2011/04/microsoft-dynamics-ax-2012-60-beta/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Convergence 2011 &#8211; Atlanta</title>
		<link>http://www.doens.be/2011/04/convergence-2011-atlanta/</link>
		<comments>http://www.doens.be/2011/04/convergence-2011-atlanta/#comments</comments>
		<pubDate>Sat, 09 Apr 2011 12:30:07 +0000</pubDate>
		<dc:creator>Jeroen Doens</dc:creator>
				<category><![CDATA[Dynamics AX]]></category>
		<category><![CDATA[Conference]]></category>

		<guid isPermaLink="false">http://www.doens.be/?p=831</guid>
		<description><![CDATA[Today some of my colleagues took the plane to Atlante to participate the Microsoft Convergence 2011 that starts tomorrow. I hope they have a great time, bring back great stories and some goodies for me You can check Christof and Youri&#8216;s blog (AX EP Clipboard) for some regarding the Enterptite Portal sessions. Or follow @MSFTDynamicsERP on Twitter.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.microsoft.com/dynamics/convergence/atlanta11/"><img class="size-full wp-image-832" title="Microsoft Dynamics Convergence 2011" src="http://www.doens.be/wp-content/uploads/2011/04/convergence.jpg" alt="Microsoft DYnamics Convergence 2011 - Atlanta" width="500" height="86" /></a></p>
<p>Today some of my colleagues took the plane to Atlante to participate the Microsoft Convergence 2011 that starts tomorrow. I hope they have a great time, bring back great stories and some goodies for me <img src='http://www.doens.be/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>You can check <a title="Christof Decreane" href="http://www.linkedin.com/pub/christof-decreane/10/a32/5b9" target="_blank">Christof</a> and<a title="Youri De Brabandere" href="http://www.linkedin.com/pub/youri-de-brabandere/14/148/5b9" target="_blank"> Youri</a>&#8216;s blog (<a title="AX EP Clipboard" href="http://www.axepclipboard.com" target="_blank">AX EP Clipboard</a>) for some regarding the Enterptite Portal sessions. Or follow <a title="Dynamics ERP - Twitter" href="https://twitter.com/#!/MSFTDynamicsERP" target="_blank">@MSFTDynamicsERP</a> on Twitter.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.doens.be/2011/04/convergence-2011-atlanta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Decisions Spring 2011 &#8211; june 14</title>
		<link>http://www.doens.be/2011/03/decisions-spring-2011-june-14/</link>
		<comments>http://www.doens.be/2011/03/decisions-spring-2011-june-14/#comments</comments>
		<pubDate>Wed, 30 Mar 2011 05:00:12 +0000</pubDate>
		<dc:creator>Jeroen Doens</dc:creator>
				<category><![CDATA[Dynamics AX]]></category>
		<category><![CDATA[Event]]></category>

		<guid isPermaLink="false">http://www.doens.be/?p=821</guid>
		<description><![CDATA[Decisions Spring 2011 is a FREE virtual event from MSDynamicsWorld.com. It follows on the heels of the highly successful Decisions Fall 2010, which ran last November and had over 3,500 attendees.]]></description>
			<content:encoded><![CDATA[<p>Decisions Spring 2011 is a FREE virtual event from MSDynamicsWorld.com. It follows on the heels of the highly successful Decisions Fall 2010, which ran last November and had over 3,500 attendees.</p>
<p><a href="http://decisions.msdynamicsworld.com" target="_blank"><img class="alignnone size-full wp-image-822" title="DecisionsSpring2011" src="http://www.doens.be/wp-content/uploads/2011/03/DecisionsSpring2011.png" alt="" width="518" height="155" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.doens.be/2011/03/decisions-spring-2011-june-14/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

