<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet type='text/xsl' href='http://casperkamal.spaces.live.com/mmm2008-07-24_12.50/rsspretty.aspx?rssquery=en-US;http%3a%2f%2fcasperkamal.spaces.live.com%2ffeed.rss' version='1.0'?><rss version="2.0" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:msn="http://schemas.microsoft.com/msn/spaces/2005/rss" xmlns:live="http://schemas.microsoft.com/live/spaces/2006/rss" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:cf="http://www.microsoft.com/schemas/rss/core/2005" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Kamal's space</title><description>A Dynamics Ax Blog (An official Microsoft Dynamics Ax related Commuinity site)</description><link>http://casperkamal.spaces.live.com/</link><language>en-US</language><pubDate>Wed, 20 Aug 2008 05:10:23 GMT</pubDate><lastBuildDate>Wed, 20 Aug 2008 05:10:23 GMT</lastBuildDate><generator>Microsoft Spaces v1.1</generator><docs>http://www.rssboard.org/rss-specification</docs><ttl>60</ttl><live:identity><live:id>-7982369448932160157</live:id><live:alias>casperkamal</live:alias></live:identity><image><title>Kamal's space</title><url>http://byfiles.storage.live.com/y1p0cZgU6-nuhc87xu1tRffI8HTZe2DOj2Lzr330VY9g_nO7IJzeFwQfiC4S1PG_qQj</url><link>http://casperkamal.spaces.live.com/</link></image><cf:listinfo><cf:group ns="http://schemas.microsoft.com/live/spaces/2006/rss" element="typelabel" label="Type" /><cf:group ns="http://schemas.microsoft.com/live/spaces/2006/rss" element="tag" label="Tag" /><cf:group element="category" label="Category" /><cf:sort element="pubDate" label="Date" data-type="date" default="true" /><cf:sort element="title" label="Title" data-type="string" /><cf:sort ns="http://purl.org/rss/1.0/modules/slash/" element="comments" label="Comments" data-type="number" /></cf:listinfo><item><title>Adding custom images for Treenode in Dynamics Ax</title><link>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!446.entry</link><description>&lt;p&gt;  &lt;p&gt;Tree node and Icons for tree nodes are inseparable. Right icons can make your tree look lot different.. Here is one tweak for getting the difference. &lt;p&gt;This article deals with displaying external images as tree node icons.  &lt;p&gt;Images used in Treenode should be passed as Imagelist. Ax has set a predefined set of classes starting with ImageListAppl that helps to manage different sorts of ImageLists. ImageListAppl is the base classes of all such classes. &lt;p&gt;The most appropriate way to enable a strong support for external images in tree node would be through modifying the ImageListAppl class to load external images. (Currently they can load only resource numbers). The following code below when added to the base class helps you load images externally or through resource nodes.&lt;pre&gt;&lt;code&gt;&lt;span&gt;public&lt;/span&gt; &lt;span&gt;void&lt;/span&gt; addImage(&lt;span&gt;int&lt;/span&gt; _idNo, FilePath _filePath)
{
    &lt;span&gt;int&lt;/span&gt; imageNum;
    Image image = &lt;span&gt;new&lt;/span&gt; Image();
    &lt;span&gt;try&lt;/span&gt;
    {
        &lt;span&gt;if&lt;/span&gt; (_filePath)
        {
            image.loadImage(_filePath);
            imageNum = imagelist.add(image);
            imageConvert.insert(_idNo, imageNum);
        }
    }
    &lt;span&gt;catch&lt;/span&gt;
    {
        warning(strfmt(&lt;span&gt;&amp;quot;@SYS85977&amp;quot;&lt;/span&gt;));
    }
}&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Now let’s see the usage of the method we added. Take a class like ImageListAppl_Sales for example. Override the build method and implement in the way as you seen below. &lt;pre&gt;&lt;code&gt;&lt;span&gt;this&lt;/span&gt;.I4C_addImage(&lt;span&gt;#ImageNewPic, SysResource::getImagePath('myimage'));&lt;/span&gt;&lt;/code&gt; &lt;/pre&gt;
&lt;p&gt;Every Image loaded has to be identified through some resource numbers. Generally it is better if the new resource number you assign is greater than the system defined resource number.To identify the Highest resource number always refer to the  “SysImageResources” form. (4.0 users you can use the Tutorial_resources form). 
&lt;p&gt;Two things to note from the above line of code.
&lt;p&gt;-&amp;gt; The new Resource numbers has to be defined as a macro in a new macro node or to an existing macro node like resappl (it contains the standard resource number).
&lt;p&gt;-&amp;gt; In the above example i have used an image from the resource node, you can also use an external image which is stored in the computer. (Resource node is preferred, coz it is easy to distribute)
&lt;p&gt;To use this image all you need to do is just load the same Image list class with your tree control and then just refer to the new resource number for the image that you wanted to display.&lt;pre&gt;&lt;code&gt;salesLineTree.setImagelist(imageList.imageList());
SysFormTreeControl::addTreeItem(salesLineTree, displaystring, &lt;span&gt;0&lt;/span&gt;, &lt;span&gt;0&lt;/span&gt;, &lt;span&gt;#myImage);&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;That’s what it takes to our new image to the tree node. So now you can widen your image space for tree icons with all kind of images you like…
&lt;p&gt;Keep reading… :)&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7982369448932160157&amp;page=RSS%3a+Adding+custom+images+for+Treenode+in+Dynamics+Ax&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=casperkamal.spaces.live.com&amp;amp;GT1=casperkamal"&gt;</description><comments>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!446.entry#comment</comments><guid isPermaLink="true">http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!446.entry</guid><pubDate>Thu, 24 Jul 2008 21:45:33 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://casperkamal.spaces.live.com/blog/cns!9138ED475277CD63!446/comments/feed.rss</wfw:commentRss><wfw:comment>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!446.entry#comment</wfw:comment><dcterms:modified>2008-07-24T21:45:33Z</dcterms:modified></item><item><title>I 4 C For Dynamics Ax:)</title><link>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!438.entry</link><description>&lt;p&gt;  &lt;p&gt;So How did you read the title? “I Foresee for Dynamics Ax” …. that’s right, but still it has more subtle meaning to it.Keep reading to know more. &lt;p&gt;I4C also stands for “Innovites for Cable for Dynamics Ax”, the new add on that I(We) 4 C for Dynamics Ax. I4C(I Foresee) I4C  (Innovites for Cable) taking Dynamics Ax to a niche market, that’s cable industries.  &lt;p&gt;It’s perfect to understand why Dynamics Ax was chosen as the platform for I4C before sharing the speciality of the solution. &lt;p&gt;&lt;strong&gt;Why Dynamics Ax?&lt;/strong&gt; &lt;p&gt;Dynamics Ax is the right entrant to the market at the right time. This statement might make you raise your eyebrows. But that’s the fact. The market dominant ERP’s of the 1990’s like BAAN where widely implemented in many companies. These implementations have got quite old and the product companies of the ERP’s are not brisk enough to keep in phase with the changes that have happened mean time. So the companies that are looking  for a replacement have the following objectives to choose an ERP. &lt;p&gt;1. A product that exactly fits the existing technology stack.&lt;br&gt;2. A wider vision that ensures a long time support.&lt;br&gt;3. Cost Effective &lt;br&gt;4. Good manageability. &lt;p&gt;If Ax as an ERP can be scored against these needs, I’m sure that it would make up to a very good score. That simply defines in a few lines why Ax is the Platform for I4C &lt;p&gt;&lt;strong&gt;What I4C promises to deliver..&lt;/strong&gt; &lt;p&gt;I can remember long time back having a discussion with some of my colleagues on what it takes to implement a Ax for a new Industry. The answer was pretty simple customize Ax to fit their process and implement. I did nod to it. But today if you would put forward the same question before me, I would definitely not give the same answer. Why do you need to go for new System if it is exactly reciprocating your process. Do you really need it ? What value addition has it got it for you ? That’s were the real reason behind the industry verticals stand. &lt;p&gt;Build a solution that doesn’t just reciprocate but enhances, add value to the existing process and make it more reliable. That’s the promise I4C carries. &lt;p&gt;&lt;strong&gt;&lt;em&gt;I4C promises to inspires business innovation and create the changes to give room for the innovation and execute the change for excellence.&lt;/em&gt;&lt;/strong&gt; &lt;p align=center&gt;&lt;a href="http://l9mmvg.bay.livefilestore.com/y1pZ5t-1gnrGAwT7NNv8NN71DK8qRpNBvDCS1S1xCVNYksUEmFE7jQFH0FDUrdV5IxqJg6M9s0JvF0?PARTNER=WRITER"&gt;&lt;img title=Innovites style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=344 alt=Innovites src="http://l9mmvg.bay.livefilestore.com/y1pwPua3x8gQnbUiogVeDXX5aOqFZInSpCP1u36sWtQ0uFj7eNbC9gVwG7ghEbGuKS0TU-p8WyJSS8?PARTNER=WRITER" width=611 border=0&gt;&lt;/a&gt;  &lt;p&gt; &lt;p&gt; &lt;p&gt; &lt;p&gt; &lt;p&gt; &lt;p&gt; &lt;p&gt; &lt;p&gt; &lt;p&gt; &lt;p&gt; &lt;p&gt; &lt;p&gt; &lt;p&gt; &lt;p&gt; &lt;p&gt;I4C I4C as a Industry solution that&lt;strong&gt; &lt;em&gt;Innovates, Renovates and Implements&lt;/em&gt;&lt;/strong&gt; the best fit process for cable industry.  &lt;p&gt;Simply to say ………….. &lt;p align=center&gt;&lt;a href="http://byfiles.storage.msn.com/y1p0y_kpUMr_OrxmGsF7GumsAp0_EHceUWCuO1x0qMp4Ulw7D-VK77UiPYQStPrqI-GLxPzS4Jzbkc?PARTNER=WRITER"&gt;&lt;img title=InnovitesInnovates style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=101 alt=InnovitesInnovates src="http://byfiles.storage.msn.com/y1pqocTFa0KUb4zYW3P6P77aMPVNiWKN5k_DiFnwA4tDdQXANdA4ZDjmWhVeLo3r3ehuqHSmDrVGro?PARTNER=WRITER" width=266 border=0&gt;&lt;/a&gt;  &lt;p align=left&gt;Keep checking this space….as I take you further in to the journey of Innovites’ Innovation.&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7982369448932160157&amp;page=RSS%3a+I+4+C+For+Dynamics+Ax%3a)&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=casperkamal.spaces.live.com&amp;amp;GT1=casperkamal"&gt;</description><comments>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!438.entry#comment</comments><guid isPermaLink="true">http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!438.entry</guid><pubDate>Tue, 01 Jul 2008 11:26:41 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://casperkamal.spaces.live.com/blog/cns!9138ED475277CD63!438/comments/feed.rss</wfw:commentRss><wfw:comment>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!438.entry#comment</wfw:comment><dcterms:modified>2008-07-01T11:26:41Z</dcterms:modified></item><item><title>A Dynamic journey with Dynamics Ax ----</title><link>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!432.entry</link><description>&lt;p&gt;  &lt;p&gt;It’s exactly 2.5 years from the time i began my journey along with Dynamics Ax. I got in to Sonata as  a fresh graduate after my engineering degree. I was made part of the Dynamics Ax practice, being a hardware enthusiast during my graduation days I had little knowledge on “OOPS” (I knew only to say “oops”). So the journey with Ax @ Sonata was much a action packed one, with lots of stuff to learn and lots to explore. The journey was much more interesting when Sonata identified me for my efforts and put me on better roles. I played roles from being a test developer to a lead guiding a large vertical development.  &lt;p&gt;It’s now few weeks since I have got myself out of Sonata to run towards my long term wish. But I sincerely feel that I am much obliged to Sonata for the opportunities  and space that  I was given. It was a hard decision to make, which I am still refusing to believe. &lt;p align=center&gt;&lt;a href="http://l9mmvg.bay.livefilestore.com/y1p86zDmNZexCodzA1CvEcZAqgwLCaBQh5UyGmDT66lDTsNAAxbSTzvnWeYEoaE6m4QiaDPiD8LmTv9J5fsZXD47g?PARTNER=WRITER"&gt;&lt;img title="Water lilies" height=180 alt="Water lilies" src="http://byfiles.storage.msn.com/y1pyXGD7z_eEpFdvOjlwuPZO5uz7M4_D-M7412vv2LNuEPOdqXqG7M9ZcAo4ZRtHDaPx4EniZQCKmw?PARTNER=WRITER" width=240 border=0&gt;&lt;/a&gt; &lt;p&gt; &lt;p&gt; &lt;p&gt; &lt;p&gt; &lt;p&gt; &lt;p&gt; &lt;p&gt; &lt;p&gt; &lt;p&gt; &lt;p&gt; &lt;p&gt; &lt;p&gt; &lt;p&gt; &lt;p&gt; &lt;p&gt; &lt;p&gt; &lt;p&gt; &lt;p&gt; &lt;p&gt; &lt;p&gt; &lt;p&gt; &lt;p&gt; &lt;p&gt; &lt;p&gt; &lt;p&gt; &lt;p&gt;It’s time to talk about the new role that I have picked up. I am now part of the team that has set steps to build a cable solution on Dynamics Ax. I’m much exited about this new role as it was something that I wished to do after becoming an DAx’er (I mean an Ax guy). So get prepared to here more from me and the cable solution that we are building….. &lt;p&gt;I know you would be now much interested to know more on the cable solution and the people behind it. Just click here to quench your quest …. &lt;a href="http://www.innovites.com"&gt;www.innovites.com&lt;/a&gt;  &lt;p align=center&gt;&lt;a href="http://www.innovites.com" target="_blank"&gt;&lt;img title="LOGO [LARGE]" style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=174 alt="LOGO [LARGE]" src="http://byfiles.storage.msn.com/y1ptNn9A65bXFy7mQUv7RtBEPp_3zrpehpwWCzYdIjvgg6nUhR8WsYQo-AZlxnVDyZWOMAZJJTBnGk?PARTNER=WRITER" width=244 border=0&gt;&lt;/a&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7982369448932160157&amp;page=RSS%3a+A+Dynamic+journey+with+Dynamics+Ax+----&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=casperkamal.spaces.live.com&amp;amp;GT1=casperkamal"&gt;</description><comments>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!432.entry#comment</comments><guid isPermaLink="true">http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!432.entry</guid><pubDate>Wed, 25 Jun 2008 03:07:10 GMT</pubDate><slash:comments>2</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://casperkamal.spaces.live.com/blog/cns!9138ED475277CD63!432/comments/feed.rss</wfw:commentRss><wfw:comment>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!432.entry#comment</wfw:comment><dcterms:modified>2008-06-25T03:07:10Z</dcterms:modified></item><item><title>Using record templates in code for Dynamics Ax 4.0.</title><link>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!398.entry</link><description>&lt;div&gt;&lt;br&gt;&lt;font size=2&gt;This article deals with defaulting values from record templates through code in Dynamics Ax 4.0.&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;Whenever you creat a new record in the Item form, a small form opens up showing up the templates. You can choose one of the templates from which you want to the basic values like &amp;quot;Item Group&amp;quot;, &amp;quot;Dimension Group&amp;quot; to be copied.(Provided you have setup a template for that table).&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;/div&gt;
&lt;p align=center&gt;&lt;a href="http://picasaweb.google.co.in/casperkamal.dax/SpacesBlog/photo?authkey=qd0XT4HE0j8#5198746669652312306"&gt;&lt;font size=2&gt;&lt;img src="http://lh6.ggpht.com/casperkamal.dax/SCWojUnfAPI/AAAAAAAAAB8/-i5jOpWArY0/s800/untitled.JPG"&gt;&lt;/font&gt;&lt;/a&gt;&lt;font size=2&gt; &lt;/font&gt;
&lt;p&gt;&lt;font size=2&gt;  &lt;/font&gt;
&lt;div&gt;&lt;font size=2&gt;This comes handy to create new records further as most of the value is drawn from the template record itself. You can harness this when you do it through code also :) ....  The following lines will throw light on how to do it.&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;1. Assume that you have the template name, then all that you need is to create a new record based on the template.&lt;br&gt;These three lines will do the job...&lt;/font&gt;&lt;/div&gt;&lt;pre&gt;&lt;font size=2&gt;    sysRecordTemplate = SysRecordTemplate::newCommon(inventTable); 
    sysRecordTemplate.parmForceCompanyTemplate('Feed'); &lt;font color="#00b050"&gt;//Template name as string&lt;/font&gt;
    sysRecordTemplate.createRecord();&lt;/font&gt;&lt;/pre&gt;
&lt;div&gt;&lt;font size=2&gt;There are two kind of templates one common for the entire company and the other for specific user. In my example i have taken the company template, for the simple reason that it is valid across all accounts.&lt;br&gt; &lt;br&gt;2. The above code pressumes that you might know the template name in prior. Sometimes you may want to give user a option of telling what template he wants to use. In that case we may need to create a template for him.&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;Here is the code that will enable the lookup and validate the selection. Bind these methods to the control where the user selects.&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;/div&gt;&lt;pre&gt;&lt;div&gt;&lt;font size=2&gt;&lt;font color="#92d050"&gt;&lt;font color="#00b050"&gt;//Call this method in the init method of form&lt;/font&gt;&lt;br&gt;&lt;/font&gt;&lt;strong&gt;SysRecordTmpTemplate VCTInitItemTemplates&lt;/strong&gt;()&lt;br&gt;{&lt;br&gt;    Container               recordValues;&lt;br&gt;    ;&lt;br&gt;&lt;br&gt;    recordValues = SysRecordTemplateTable::find(tablenum(inventTable)).Data;&lt;br&gt;    recordValues =  condel(recordValues,1,1);&lt;br&gt;    &lt;font color="#00b050"&gt;//tmp1 - Global variable for lookup &lt;/font&gt;   &lt;br&gt;    SysRecordTmpTemplate::insertContainer(tablenum(inventTable), tmp1, recordValues, SysRecordTemplateType::Company, true);&lt;br&gt;    &lt;font color="#00b050"&gt;//tmp2 - Global variable for validation&lt;br&gt;&lt;/font&gt;    SysRecordTmpTemplate::insertContainer(tablenum(inventTable), tmp2, recordValues, SysRecordTemplateType::Company, true);&lt;br&gt;    return tmp;&lt;br&gt;}&lt;/font&gt;&lt;/div&gt;&lt;div&gt;&lt;font size=2&gt;&lt;br&gt;&lt;br&gt;&lt;font color="#00b050"&gt;//Override the lookup method&lt;br&gt;&lt;/font&gt;&lt;strong&gt;public void lookup&lt;/strong&gt;()&lt;br&gt;{&lt;br&gt;    SysTableLookup          sysTableLookup;&lt;br&gt;    SysRecordTmpTemplate    tmp;&lt;br&gt;    Container               recordValues;&lt;br&gt;    ;&lt;br&gt;&lt;br&gt;    super();&lt;br&gt;   &lt;br&gt;    sysTableLookup = SysTableLookup::newParameters(tablenum(SysRecordTmpTemplate), this);&lt;br&gt;&lt;br&gt;    &lt;font color="#00b050"&gt;//Add the fields to be shown in the lookup form&lt;/font&gt;&lt;br&gt;    sysTableLookup.addLookupfield(fieldnum(SysRecordTmpTemplate, Description), true);&lt;br&gt;&lt;br&gt;    sysTableLookup.parmUseLookupValue(false);&lt;br&gt;    sysTableLookup.parmTmpBuffer(tmp2);&lt;br&gt;    &lt;font color="#00b050"&gt;// Perform lookup&lt;/font&gt;&lt;br&gt;    sysTableLookup.performFormLookup();&lt;br&gt;}       &lt;/font&gt;&lt;/div&gt;&lt;/pre&gt;&lt;pre&gt;&lt;font size=2&gt;&lt;font color="#00b050"&gt;//Override the modified method&lt;/font&gt;
&lt;strong&gt;public boolean modified&lt;/strong&gt;()
{
    boolean                 ret;
    SysRecordTmpTemplate    tmp;
    container               recordValues;
    ;

    ret = super();

    select firstonly tmp2 where tmp2.Description == this.valueStr();

    if (!tmp2 &amp;amp;&amp;amp; this.valueStr())
    {
        this.text('');
        warning ('Invalid selection.');
        return false;
    }

    return ret;
}&lt;/font&gt;&lt;/pre&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;This also helps you learn usage of temporary tables for lookup's. The following line enables lookups through temporary table.&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div align=center&gt;&lt;font face="Courier New" size=2&gt;&lt;strong&gt;sysTableLookup.parmTmpBuffer(tmp2);&lt;/strong&gt;&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;Hope now you can implement a full fledged code that will create it's record from an pre exisiting template.&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;font face="Lucida Handwriting"&gt;----------- any template for codes where i can just get all the code that i want&lt;/font&gt; &lt;img title=Wink style="vertical-align:middle" alt=Wink src="http://shared.live.com/HjKMzTS-xzcms40!CabizA/emoticons/smile_wink.gif"&gt;&lt;/font&gt;&lt;/div&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7982369448932160157&amp;page=RSS%3a+Using+record+templates+in+code+for+Dynamics+Ax+4.0.&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=casperkamal.spaces.live.com&amp;amp;GT1=casperkamal"&gt;</description><category>Ax Technical</category><comments>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!398.entry#comment</comments><guid isPermaLink="true">http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!398.entry</guid><pubDate>Sat, 10 May 2008 14:07:23 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://casperkamal.spaces.live.com/blog/cns!9138ED475277CD63!398/comments/feed.rss</wfw:commentRss><wfw:comment>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!398.entry#comment</wfw:comment><dcterms:modified>2008-05-10T14:13:04Z</dcterms:modified></item><item><title>What's new in Dynamics Ax 2009 - PDF download link</title><link>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!397.entry</link><description>&lt;div&gt; &lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;   There is now a PDF containing what's new in DAX 2009 is avilable. It is comprehensive and good to read.&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;    &lt;/font&gt;&lt;a href="https://mbs.microsoft.com/downloads/customer/Ax2009/AX50_ENUS_WN_Tech.pdf" target="_blank"&gt;&lt;font size=2&gt;&lt;strong&gt;What's new in Dynamics Ax 2009 - Technical&lt;/strong&gt;&lt;/font&gt;&lt;/a&gt;&lt;font size=2&gt; (Requires login credential)&lt;/font&gt;&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;&lt;font face="Lucida Handwriting"&gt; I started my career in to Ax reading What's new in Dynamics Ax 4.0&lt;/font&gt; &lt;img title=Open-mouthed style="vertical-align:middle" height=19 alt=Open-mouthed src="http://shared.live.com/HjKMzTS-xzcms40!CabizA/emoticons/smile_teeth.gif" width=19&gt;&lt;/div&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7982369448932160157&amp;page=RSS%3a+What's+new+in+Dynamics+Ax+2009+-+PDF+download+link&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=casperkamal.spaces.live.com&amp;amp;GT1=casperkamal"&gt;</description><category>Ax Resources</category><comments>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!397.entry#comment</comments><guid isPermaLink="true">http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!397.entry</guid><pubDate>Sat, 10 May 2008 13:41:00 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://casperkamal.spaces.live.com/blog/cns!9138ED475277CD63!397/comments/feed.rss</wfw:commentRss><wfw:comment>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!397.entry#comment</wfw:comment><dcterms:modified>2008-05-10T13:42:07Z</dcterms:modified></item><item><title>Dynamics Ax 2009- Useful resources</title><link>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!391.entry</link><description>&lt;div&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;   DAX 09 is catching the fire guys..... these days i could see my alert inbox filled with lots and lots of information on DAX 09.&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;  Here are few that i found interesting.... hope you to find them useful&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;a href="http://blogs.msdn.com/mfp/archive/2008/04/22/new-layers-in-dynamics-ax-2009.aspx"&gt;&lt;strong&gt;&lt;font size=2&gt;Layers in Ax&lt;/font&gt;&lt;/strong&gt;&lt;/a&gt;&lt;font size=2&gt; &amp;amp; &lt;/font&gt;&lt;a href="http://blogs.msdn.com/mfp/archive/2008/04/24/what-s-up-with-this-semicolon.aspx"&gt;&lt;strong&gt;&lt;font size=2&gt;The secret semicolon&lt;/font&gt;&lt;/strong&gt;&lt;/a&gt;&lt;font size=2&gt; - &lt;/font&gt;&lt;a href="http://blogs.msdn.com/mfp/"&gt;&lt;strong&gt;&lt;font size=2&gt;MFP&lt;/font&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;   MFP throws light over the &lt;/font&gt;&lt;a href="http://blogs.msdn.com/mfp/archive/2008/04/22/new-layers-in-dynamics-ax-2009.aspx"&gt;&lt;font size=2&gt;&lt;strong&gt;new layers&lt;/strong&gt; &lt;/font&gt;&lt;/a&gt;&lt;font size=2&gt;that will be coming up in DAX 09 and how it will enable mulitiple industrial solutions for Ax.&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;   In the second one MFP has detailed the reason behind &lt;/font&gt;&lt;a href="http://blogs.msdn.com/mfp/archive/2008/04/24/what-s-up-with-this-semicolon.aspx" target="_blank"&gt;&lt;font size=2&gt;&lt;strong&gt;The secret semicolon&lt;/strong&gt; &lt;/font&gt;&lt;/a&gt;&lt;font size=2&gt;and also details about the possibility of getting rid of it in DAX 6.0&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;   &lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt; &lt;strong&gt;&lt;a href="http://kashperuk.blogspot.com/2008/04/sysformenumcombobox-class-allowing-to.html"&gt;Restricting Enum values in Combobox&lt;/a&gt; &lt;/strong&gt;-  &lt;/font&gt;&lt;a href="http://kashperuk.blogspot.com/"&gt;&lt;strong&gt;&lt;font size=2&gt;Kashperuk&lt;/font&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;    This a feature that i was looking for, now you can decide what elements from an enum will be available in the combo boxes. Thanks Kashperuk for bringing it out very earlier :)&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;a href="http://axaptafreak.blogspot.com/2008/04/ax-2009-feature-cross-company-support.html" target="_blank"&gt;&lt;strong&gt;&lt;font size=2&gt;Cross company feature&lt;/font&gt;&lt;/strong&gt;&lt;/a&gt;&lt;font size=2&gt; - &lt;/font&gt;&lt;a href="http://axaptafreak.blogspot.com/" target="_blank"&gt;&lt;strong&gt;&lt;font size=2&gt;Helmut&lt;/font&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;   This article gives you a feel of how cross company coding is going to be easire in DAX09&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;strong&gt;&lt;a href="http://blogs.msdn.com/cesardelatorre/archive/2008/04/19/consuming-external-wcf-services-from-dynamics-ax-5-0-x-code-dynamics-ax-2009.aspx"&gt;&lt;font size=2&gt;Consuming external WCF Services&lt;/font&gt;&lt;/a&gt;&lt;/strong&gt;&lt;font size=2&gt; - &lt;/font&gt;&lt;a href="http://blogs.msdn.com/cesardelatorre"&gt;&lt;strong&gt;&lt;font size=2&gt;Cesar&lt;/font&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;  &lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;   A detailed article on consuming webservices through code in DAX09 from MBS-ISV Development Evangelist&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;strong&gt;Downloads&lt;/strong&gt; (Requires partner source credentials)&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;   &lt;/font&gt;&lt;a href="https://mbs.microsoft.com/Cms/Templates/document/General.aspx?NRMODE=Published&amp;amp;NRNODEGUID={167B694E-9A94-4B1B-AD59-BF22D1619629}&amp;amp;NRORIGINALURL=/customersource/training/materials/student/whatsnewMSDAX2009&amp;amp;NRCACHEHINT=Guest&amp;amp;wa=wsignin1.0"&gt;&lt;strong&gt;&lt;font size=2&gt;What's new in DAX09&lt;/font&gt;&lt;/strong&gt;&lt;/a&gt;&lt;font size=2&gt; - Presentations related to Technical, functional and localizations &lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;   &lt;strong&gt;&lt;span title=Title&gt;&lt;a href="https://mbs.microsoft.com/partnersource/partneressentials/serviceplans/surestep/surestepbusnmodeler.htm"&gt;Sure Step Business Modeler&lt;/a&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;Lot's of resource to keep crunching :) ..............&lt;img title=Pizza style="vertical-align:middle" alt=Pizza src="http://shared.live.com/HjKMzTS-xzcms40!CabizA/emoticons/pizza.gif"&gt;&lt;img title=Pizza style="vertical-align:middle" height=19 alt=Pizza src="http://shared.live.com/HjKMzTS-xzcms40!CabizA/emoticons/pizza.gif" width=19&gt;&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;   &lt;/font&gt;&lt;/div&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7982369448932160157&amp;page=RSS%3a+Dynamics+Ax+2009-+Useful+resources&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=casperkamal.spaces.live.com&amp;amp;GT1=casperkamal"&gt;</description><category>Ax Resources</category><comments>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!391.entry#comment</comments><guid isPermaLink="true">http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!391.entry</guid><pubDate>Wed, 30 Apr 2008 07:51:03 GMT</pubDate><slash:comments>1</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://casperkamal.spaces.live.com/blog/cns!9138ED475277CD63!391/comments/feed.rss</wfw:commentRss><wfw:comment>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!391.entry#comment</wfw:comment><dcterms:modified>2008-04-30T07:53:05Z</dcterms:modified></item><item><title>Missing Dll for "Autozip for Dax" loaded</title><link>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!390.entry</link><description>&lt;div&gt; &lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=3&gt;   I'm extremely sorry guys..... very lately after few emails from the readers i realized that i have missed the Dll file that is required to enable the Autozip option working.&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=3&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=3&gt;   My sincere apologies. I have loaded the xpo and the dll in the following location :)&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=3&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=3&gt;   &lt;/font&gt;&lt;a href="http://www.axaptapedia.com/Image:Autozip_V1.0.zip" target="_blank"&gt;&lt;font size=3&gt;Download AutoZip.zip file&lt;/font&gt;&lt;/a&gt;&lt;a href="http://www.axaptapedia.com/Image:Autozip_V1.0.zip"&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=3&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=3&gt;   Hope now you are able to use the Autozip option &lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=3&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=3&gt; ...............&lt;img title=Embarrassed style="vertical-align:middle" alt=Embarrassed src="http://shared.live.com/HjKMzTS-xzcms40!CabizA/emoticons/smile_embaressed.gif"&gt; sorry :(&lt;/font&gt;&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;    &lt;/div&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7982369448932160157&amp;page=RSS%3a+Missing+Dll+for+%22Autozip+for+Dax%22+loaded&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=casperkamal.spaces.live.com&amp;amp;GT1=casperkamal"&gt;</description><category>Ax Technical</category><comments>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!390.entry#comment</comments><guid isPermaLink="true">http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!390.entry</guid><pubDate>Wed, 30 Apr 2008 06:42:08 GMT</pubDate><slash:comments>3</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://casperkamal.spaces.live.com/blog/cns!9138ED475277CD63!390/comments/feed.rss</wfw:commentRss><wfw:comment>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!390.entry#comment</wfw:comment><dcterms:modified>2008-04-30T06:42:08Z</dcterms:modified></item><item><title>Autozip 1.0 for Dynamics Ax 4.0</title><link>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!380.entry</link><description>&lt;div&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt; A Promise is a promise....&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt; Here guys the &lt;font size=3&gt;&lt;strong&gt;Autozip for Dynamics Ax 4.0&lt;/strong&gt; &lt;/font&gt;which i promised a long time back &lt;a href="http://casperkamal.spaces.live.com/blog/cns!9138ED475277CD63!335.entry" target="_blank"&gt;(click to see my promise)&lt;/a&gt;&lt;img title=Open-mouthed style="vertical-align:middle" height=19 alt=Open-mouthed src="http://shared.live.com/HjKMzTS-xzcms40!CabizA/emoticons/smile_teeth.gif" width=19&gt;.&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt; It is pretty simple to use. Here is a short brief of how to install it.&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;  &lt;a href="http://www.axaptapedia.com/Image:SharedProject_AutoZip.xpo" target="_blank"&gt;Download it Here: Autozip 1.0 for Dynamics Ax 4.0&lt;/a&gt;&lt;a href="http://www.axaptapedia.com/Image:SharedProject_AutoZip.xpo"&gt;&lt;font size=1&gt;(click to land in the download page)&lt;/font&gt;&lt;/a&gt;&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;br&gt; &lt;/font&gt;&lt;font size=2&gt;&lt;strong&gt;Installing Autozip&lt;/strong&gt;&lt;/font&gt;&lt;/div&gt;
&lt;p&gt;&lt;font size=2&gt; 1. Dowload and Extract the zip file from the following place...&lt;br&gt; 2. Add the dll file from the extract to your bin directory and simlarly add an reference to it in your AOT&lt;br&gt; 3. Now import the XPO.&lt;br&gt; 4. Autozip is ready to use.&lt;/font&gt; 
&lt;div&gt;&lt;font size=2&gt;&lt;strong&gt;What's the use of Autozip&lt;/strong&gt;&lt;br&gt;  &lt;br&gt; Autozip let's you automatically zip the exported xpo and similary import an zip file rather a xpo.&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;strong&gt;How to zip during Export&lt;/strong&gt;&lt;br&gt; &lt;br&gt; 1. Just click the zip file option while u export.&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;               &lt;img src="http://aycu36.webshots.com/image/47875/2003695811437517079_rs.jpg"&gt;&lt;br&gt; &lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;2. It will export one .xpo file and one .zip file&lt;/font&gt;&lt;/div&gt;
&lt;p&gt;&lt;font size=2&gt; &lt;strong&gt;How to import a zip file&lt;br&gt;&lt;/strong&gt; &lt;br&gt; 1. Just open any drive and point to a zip file that contains xpo's(doesn't matter if it contain other files inside it also)&lt;br&gt; 2. That's all ... all xpo files inside the zip will be imported.&lt;br&gt; &lt;br&gt;&lt;strong&gt;Can you use this for your own custom development?&lt;/strong&gt;&lt;/font&gt; 
&lt;div&gt;&lt;font size=2&gt;  Yes you can use it. Please refer to the Job &amp;quot;JobAutozip&amp;quot; along with this project to know about it.&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;strong&gt;Missing Feature&lt;/strong&gt;&lt;br&gt; &lt;br&gt; 1. If your zip file extracts them as folders and puts the xpo inside folders, the system will not find them. (This fill&lt;br&gt;    be fixed in the next release)&lt;br&gt; &lt;br&gt; &lt;strong&gt;Enhancements&lt;/strong&gt;&lt;br&gt; &lt;br&gt; 1. An option to delete the .xpo file which get's exported.&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt; &lt;strong&gt;Axaptapedia Link&lt;/strong&gt;&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;Also available at Axaptapedial here ......  &lt;a href="http://www.axaptapedia.com/Autozip_for_Dax_4.0"&gt;http://www.axaptapedia.com/Autozip_for_Dax_4.0&lt;/a&gt;&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt; Do let me know your comments.&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt; Keep zipping :)&lt;/font&gt;&lt;/div&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7982369448932160157&amp;page=RSS%3a+Autozip+1.0+for+Dynamics+Ax+4.0&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=casperkamal.spaces.live.com&amp;amp;GT1=casperkamal"&gt;</description><category>Ax Technical</category><comments>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!380.entry#comment</comments><guid isPermaLink="true">http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!380.entry</guid><pubDate>Sun, 30 Mar 2008 12:43:24 GMT</pubDate><slash:comments>6</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://casperkamal.spaces.live.com/blog/cns!9138ED475277CD63!380/comments/feed.rss</wfw:commentRss><wfw:comment>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!380.entry#comment</wfw:comment><dcterms:modified>2008-03-30T12:43:24Z</dcterms:modified></item><item><title>Sending alerts through code without error in Ax</title><link>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!376.entry</link><description>&lt;div&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt; There was an article sometime back by &lt;a href="http://axaptafreak.blogspot.com/" target="_blank"&gt;Helmut&lt;/a&gt; on &lt;a href="http://axaptafreak.blogspot.com/2007/03/send-message-to-online-user-in-dynamics.html"&gt;&amp;quot;sending alerts through code&amp;quot;&lt;font size=1&gt;(click to read the article)&lt;/font&gt;&lt;/a&gt;&lt;font size=1&gt;, &lt;/font&gt;there was one problem with the code as helmut had quoted&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;    &lt;font color="#953734"&gt;&lt;strong&gt;&amp;quot;* you will get an error in the alert form on the second tab&amp;quot;&lt;/strong&gt;&lt;/font&gt;&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;  The error will not crop up if you use the following code....&lt;/font&gt;&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;&lt;font face="Courier New" size=2&gt;void sendMessageToUsers()&lt;br&gt;{&lt;br&gt;    SysMailer           mail;&lt;br&gt;    UserInfo            UserInfo;&lt;br&gt;    EventInbox          inbox;&lt;br&gt;    EventInboxId        inboxId;&lt;br&gt;    ;&lt;br&gt;    &lt;br&gt;    select UserInfo where UserInfo.id == CurUserId();&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font face="Courier New" size=2&gt;    inboxId = EventInbox::nextEventId();&lt;br&gt;    &lt;br&gt;    inbox.initValue();&lt;br&gt;    inbox.ShowPopup     = NoYes::Yes;&lt;br&gt;    inbox.Subject       = &amp;quot;Testing alert via code&amp;quot;;&lt;br&gt;    inbox.Message       = &amp;quot;Hello we are alerting&amp;quot;;&lt;br&gt;    inbox.AlertedFor    = &amp;quot;This alert is just information no links are available&amp;quot;;&lt;br&gt;    inbox.SendEmail     = false;&lt;br&gt;    inbox.UserId        = UserInfo.Id;&lt;br&gt;    inbox.TypeId        = classnum(EventType);&lt;br&gt;    &lt;font color="#00b050"&gt;&lt;strong&gt;//Give any table and field values&lt;/strong&gt;&lt;/font&gt;&lt;br&gt;    inbox.AlertTableId  = TableNum(Address);&lt;br&gt;    inbox.AlertFieldId  = fieldNum(Address ,Name);&lt;br&gt;    inbox.TypeTrigger   = EventTypeTrigger::FieldChanged;&lt;br&gt;    inbox.CompanyId     = CurExt();&lt;br&gt;    inbox.InboxId       = inboxId;&lt;br&gt;    inbox.AlertCreatedDate = systemdateget();&lt;br&gt;    inbox.AlertCreateTime  = timeNow();&lt;br&gt;    inbox.insert();&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font face="Courier New" size=2&gt;}&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font face="Courier New" size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font face="Courier New" size=2&gt; &lt;font face=Arial&gt;...... &lt;img title=Auto style="vertical-align:middle" alt=Auto src="http://shared.live.com/HjKMzTS-xzcms40!CabizA/emoticons/car.gif"&gt; Alert plz Alert &lt;img title=Smile style="vertical-align:middle" alt=Smile src="http://shared.live.com/HjKMzTS-xzcms40!CabizA/emoticons/smile_regular.gif"&gt;&lt;/font&gt;&lt;/font&gt;&lt;/div&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7982369448932160157&amp;page=RSS%3a+Sending+alerts+through+code+without+error+in+Ax&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=casperkamal.spaces.live.com&amp;amp;GT1=casperkamal"&gt;</description><category>Ax Technical</category><comments>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!376.entry#comment</comments><guid isPermaLink="true">http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!376.entry</guid><pubDate>Mon, 24 Mar 2008 14:28:34 GMT</pubDate><slash:comments>1</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://casperkamal.spaces.live.com/blog/cns!9138ED475277CD63!376/comments/feed.rss</wfw:commentRss><wfw:comment>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!376.entry#comment</wfw:comment><dcterms:modified>2008-03-24T14:28:34Z</dcterms:modified></item><item><title>All about Ax upgrade for Ax 2009 (Ax 5.0)</title><link>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!371.entry</link><description>&lt;div&gt; &lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;  &lt;font size=2&gt; Hi Guys,&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;           Let's rush to MFP's blog to know all about upgrade for Dynamics Ax 2009. You get to download an interesting PPT From there.&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;            &lt;a href="http://blogs.msdn.com/mfp/archive/2008/03/14/upgrading-to-microsoft-dynamics-ax-4-0-and-microsoft-dynamics-ax-2009.aspx" target="_blank"&gt;Upgrade to Dynamics 2009&lt;font size=1&gt;(click to land in the download page)&lt;/font&gt;&lt;/a&gt;&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;font face="Lucida Handwriting"&gt;That's interesting&lt;/font&gt; &lt;img title=Party style="vertical-align:middle" alt=Party src="http://shared.live.com/HjKMzTS-xzcms40!CabizA/emoticons/smile_party.gif"&gt;&lt;/font&gt;&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;            &lt;/div&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7982369448932160157&amp;page=RSS%3a+All+about+Ax+upgrade+for+Ax+2009+(Ax+5.0)&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=casperkamal.spaces.live.com&amp;amp;GT1=casperkamal"&gt;</description><category>Ax Resources</category><comments>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!371.entry#comment</comments><guid isPermaLink="true">http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!371.entry</guid><pubDate>Wed, 19 Mar 2008 04:58:59 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://casperkamal.spaces.live.com/blog/cns!9138ED475277CD63!371/comments/feed.rss</wfw:commentRss><wfw:comment>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!371.entry#comment</wfw:comment><dcterms:modified>2008-03-19T04:58:59Z</dcterms:modified></item><item><title>My new Photo blog :)</title><link>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!370.entry</link><description>&lt;div&gt; &lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt; &lt;font size=2&gt;Guys this is something not related to Ax... recently i got an cannon camera&lt;/font&gt;&lt;a href="http://search.live.com/results.aspx?q=(Cannon IXUS75)" target="_blank"&gt;&lt;font size=2&gt;(Cannon IXUS75)&lt;/font&gt;&lt;/a&gt;&lt;font size=2&gt;. &lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt; Asusual can't resist myself from exploring with it and the out come is my new photo blog :)&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt; check it out here ... &lt;/font&gt;&lt;a href="http://isawifeltucusay.blogspot.com/"&gt;&lt;font size=2&gt;http://isawifeltucusay.blogspot.com/&lt;/font&gt;&lt;/a&gt;&lt;font size=2&gt;  (You can read it like &lt;span style="font-weight:bold"&gt;&amp;quot;I saw I felt U See U Say&amp;quot;.... )&lt;/span&gt;&lt;br&gt;&lt;/font&gt;&lt;br&gt;&lt;/div&gt;
&lt;div&gt; &lt;em&gt;&lt;font size=2&gt;&lt;font face="Lucida Handwriting"&gt;Let me know what you feel&lt;/font&gt; &lt;/font&gt;&lt;/em&gt;&lt;img title=Open-mouthed style="vertical-align:middle" alt=Open-mouthed src="http://shared.live.com/HjKMzTS-xzcms40!CabizA/emoticons/smile_teeth.gif"&gt;&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7982369448932160157&amp;page=RSS%3a+My+new+Photo+blog+%3a)&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=casperkamal.spaces.live.com&amp;amp;GT1=casperkamal"&gt;</description><category>Hobbies</category><comments>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!370.entry#comment</comments><guid isPermaLink="true">http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!370.entry</guid><pubDate>Tue, 18 Mar 2008 14:49:08 GMT</pubDate><slash:comments>1</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://casperkamal.spaces.live.com/blog/cns!9138ED475277CD63!370/comments/feed.rss</wfw:commentRss><wfw:comment>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!370.entry#comment</wfw:comment><dcterms:modified>2008-03-18T14:49:08Z</dcterms:modified></item><item><title>User Experience Guidelines for Ax 2009</title><link>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!368.entry</link><description>&lt;div&gt; &lt;/div&gt;
&lt;div&gt;   &lt;/div&gt;
&lt;div&gt;  &lt;span lang=da&gt;&lt;font size=2&gt;&lt;span&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=ca546f4d-8628-4546-a9c6-a1df855d1600&amp;amp;DisplayLang=en"&gt;Microsoft Dynamics™ User Experience Guidelines (BETA) for AX 5.0&lt;/a&gt;&lt;font size=1&gt;(Click to download)&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span lang=da&gt;&lt;font size=2&gt;&lt;span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;    &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;   Guys this is one among the best documents that i have seen. it wonderfully explains the guildlines for designing forms, reports and EP pages.&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;   Have a look... you will definetly appreciate it :)&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;   Thanks MS that's gr8&lt;/font&gt;&lt;img title="Gift with a bow" style="vertical-align:middle" alt="Gift with a bow" src="http://shared.live.com/HjKMzTS-xzcms40!CabizA/emoticons/present.gif"&gt;&lt;/div&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7982369448932160157&amp;page=RSS%3a+User+Experience+Guidelines+for+Ax+2009&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=casperkamal.spaces.live.com&amp;amp;GT1=casperkamal"&gt;</description><category>Ax Resources</category><comments>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!368.entry#comment</comments><guid isPermaLink="true">http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!368.entry</guid><pubDate>Tue, 18 Mar 2008 14:33:23 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://casperkamal.spaces.live.com/blog/cns!9138ED475277CD63!368/comments/feed.rss</wfw:commentRss><wfw:comment>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!368.entry#comment</wfw:comment><dcterms:modified>2008-03-18T14:33:23Z</dcterms:modified></item><item><title>Joining back for a happy journey of sharing :)</title><link>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!364.entry</link><description>&lt;div&gt; &lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt; Hi all readers,&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;         My sincere apologies for taking such a long time to come back. Though this blog has always been a central stage for me to put up my Ax learnings with the world I had to stay away from it due to an very interesting work. It was not just interesting but challenging too... i have nearly spent 24/7 of my time for it. But all of it turned in to a priceless possession of learning, which i will keep sharing in the coming days here. &lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;  Keep reading !!! Keep expressing !!! Keep supporting !!!&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;  Let's have a happy journey &lt;img title=Airplane style="vertical-align:middle" alt=Airplane src="http://shared.live.com/HjKMzTS-xzcms40!CabizA/emoticons/airplane.gif"&gt;sharing &lt;img title=Hot style="vertical-align:middle" alt=Hot src="http://shared.live.com/HjKMzTS-xzcms40!CabizA/emoticons/smile_shades.gif"&gt;&lt;/font&gt;&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;         &lt;/div&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7982369448932160157&amp;page=RSS%3a+Joining+back+for+a+happy+journey+of+sharing+%3a)&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=casperkamal.spaces.live.com&amp;amp;GT1=casperkamal"&gt;</description><category>General</category><comments>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!364.entry#comment</comments><guid isPermaLink="true">http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!364.entry</guid><pubDate>Tue, 18 Mar 2008 11:16:44 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://casperkamal.spaces.live.com/blog/cns!9138ED475277CD63!364/comments/feed.rss</wfw:commentRss><wfw:comment>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!364.entry#comment</wfw:comment><dcterms:modified>2008-03-18T11:16:44Z</dcterms:modified></item><item><title>Auto zip for Dynamics Ax--- keep watching</title><link>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!335.entry</link><description>&lt;div&gt; &lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;Guys,&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;Are u frustrated to export your xpo and zip it each time ..... &lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;Are u bored of unzipping your zip files and importing it each time as XPO's.....&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;Then something interesting waiting for you.... Keep watching this space...&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;You will soon find the solution here....  &lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;
&lt;div&gt;&lt;font size=2&gt;                                           &lt;img style="vertical-align:middle" height=102 src="http://aycu03.webshots.com/image/28802/2001971671117644776_rs.jpg" width=163&gt;&lt;/font&gt;&lt;/div&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;                                           &lt;/font&gt;&lt;font size=3&gt;AutoZip for Dynamics Ax :) &lt;/font&gt;&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7982369448932160157&amp;page=RSS%3a+Auto+zip+for+Dynamics+Ax---+keep+watching&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=casperkamal.spaces.live.com&amp;amp;GT1=casperkamal"&gt;</description><category>Dynamics Ax</category><comments>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!335.entry#comment</comments><guid isPermaLink="true">http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!335.entry</guid><pubDate>Sun, 23 Sep 2007 14:32:59 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://casperkamal.spaces.live.com/blog/cns!9138ED475277CD63!335/comments/feed.rss</wfw:commentRss><wfw:comment>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!335.entry#comment</wfw:comment><dcterms:modified>2007-09-23T14:32:59Z</dcterms:modified></item><item><title>Dynamics Partner Information source  for India</title><link>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!334.entry</link><description>&lt;div&gt; &lt;/div&gt;
&lt;div&gt;  &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;     Check out &lt;/font&gt;&lt;a href="http://blogs.msdn.com/microsoftdynamicsindia/" target="_blank"&gt;&lt;strong&gt;&lt;font size=2&gt;Dynamics Partner Information Source&lt;/font&gt;&lt;/strong&gt;&lt;/a&gt;&lt;font size=2&gt;......  the new partners blog from Micrsoft India. &lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;    &lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;    Good Luck Dynamics India &lt;img title=Sun style="vertical-align:middle" alt=Sun src="http://shared.live.com/QGncRMHLLpIcOfCh--4aMA/emoticons/sun.gif"&gt;&lt;/font&gt;&lt;/div&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7982369448932160157&amp;page=RSS%3a+Dynamics+Partner+Information+source++for+India&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=casperkamal.spaces.live.com&amp;amp;GT1=casperkamal"&gt;</description><category>Ax General Info</category><comments>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!334.entry#comment</comments><guid isPermaLink="true">http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!334.entry</guid><pubDate>Sun, 23 Sep 2007 14:19:32 GMT</pubDate><slash:comments>1</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://casperkamal.spaces.live.com/blog/cns!9138ED475277CD63!334/comments/feed.rss</wfw:commentRss><wfw:comment>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!334.entry#comment</wfw:comment><dcterms:modified>2007-09-23T14:19:32Z</dcterms:modified></item><item><title>Interview with Steen(Author Morphx IT) - By Brandon George</title><link>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!333.entry</link><description>&lt;div&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;   Read What Steen andreasen has got to tell us about Ax 4.0 and his future works....  interview by Brandon George &lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;         &lt;/font&gt;&lt;a href="http://dynamics-ax.blogspot.com/2007/09/interview-with-steen-andreasen-2007.html" target="_blank"&gt;&lt;strong&gt;&lt;font color="#76923c" size=2&gt;Interview With Steen&lt;/font&gt;&lt;/strong&gt;&lt;/a&gt;&lt;font size=2&gt;&lt;strong&gt;&lt;font color="#76923c"&gt; &lt;/font&gt;&lt;/strong&gt;(Author of &lt;/font&gt;&lt;a href="http://search.live.com/results.aspx?q=Morphx IT" target="_blank"&gt;&lt;font size=2&gt;Morphx IT&lt;/font&gt;&lt;/a&gt;&lt;font size=2&gt;)&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;  Thanks &lt;img title=Party style="vertical-align:middle" alt=Party src="http://shared.live.com/QGncRMHLLpIcOfCh--4aMA/emoticons/smile_party.gif"&gt; Brandon that was Interesting &lt;/font&gt;&lt;/div&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7982369448932160157&amp;page=RSS%3a+Interview+with+Steen(Author+Morphx+IT)+-+By+Brandon+George&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=casperkamal.spaces.live.com&amp;amp;GT1=casperkamal"&gt;</description><category>Ax Resources</category><comments>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!333.entry#comment</comments><guid isPermaLink="true">http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!333.entry</guid><pubDate>Sun, 23 Sep 2007 14:08:56 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://casperkamal.spaces.live.com/blog/cns!9138ED475277CD63!333/comments/feed.rss</wfw:commentRss><wfw:comment>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!333.entry#comment</wfw:comment><dcterms:modified>2007-09-23T14:08:56Z</dcterms:modified></item><item><title>Search Redefined - www.tafiti.com</title><link>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!330.entry</link><description>&lt;div&gt;
&lt;div&gt;&lt;font size=2&gt;           &lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;           This is not about Dynamics Ax.... but still i wanted to share it with all ...&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;            Check out this search engine &lt;/font&gt;&lt;a href="http://www.tafiti.com/"&gt;&lt;font color="#014982" size=2&gt;http://www.tafiti.com/&lt;/font&gt;&lt;/a&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;            It's really marvellous guys ...&lt;strong&gt;Microsoft Silverlight and Live search&lt;/strong&gt; have joined hands to redefine UI and search  &lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;            technolgy. &lt;/font&gt;&lt;font size=2&gt; I'm amazed &lt;/font&gt;&lt;img title=Surprised style="vertical-align:middle" alt=Surprised src="http://shared.live.com/QGncRMHLLpIcOfCh--4aMA/emoticons/smile_omg.gif"&gt; &lt;font size=2&gt;hope you too :)&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;             Expect to have Ax UI like this ...........someday :)&lt;/font&gt;&lt;/div&gt; &lt;/div&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7982369448932160157&amp;page=RSS%3a+Search+Redefined+-+www.tafiti.com&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=casperkamal.spaces.live.com&amp;amp;GT1=casperkamal"&gt;</description><category>General</category><comments>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!330.entry#comment</comments><guid isPermaLink="true">http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!330.entry</guid><pubDate>Wed, 29 Aug 2007 15:20:37 GMT</pubDate><slash:comments>1</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://casperkamal.spaces.live.com/blog/cns!9138ED475277CD63!330/comments/feed.rss</wfw:commentRss><wfw:comment>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!330.entry#comment</wfw:comment><dcterms:modified>2007-08-29T15:20:37Z</dcterms:modified></item><item><title>Preventing a form getting added to  "LastActivated Form" in Dynamics Ax</title><link>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!325.entry</link><description>&lt;p&gt;      
&lt;p&gt;&lt;font size=2&gt;The Class &amp;quot;&lt;strong&gt;Infolog&amp;quot;&lt;/strong&gt; has few methods corresponding to &amp;quot;Last activated form&amp;quot; like&lt;br&gt; &lt;br&gt;                       - activate&lt;br&gt;                      -  setLastActivatedForm&lt;br&gt;                      -  parmLastActivatedForm&lt;br&gt;                      -  close&lt;br&gt; &lt;br&gt;     These methods help in you knowing, setting or getting the currently active form.&lt;br&gt; &lt;br&gt;       Say you have a form like &amp;quot;Toolbar&amp;quot; or  &amp;quot;Popup&amp;quot; form like Alerts or &amp;quot;Find&amp;quot; then you would prefer to prevent these form from being added to the lastactivated form. In such cases all you have to do is go to the &amp;quot;activate&amp;quot; method in infolog and add the following code &lt;/font&gt;
&lt;p&gt;&lt;font face="Courier New" size=2&gt;&lt;font color="#0070c0"&gt;    if (formRun.name() != formstr(DocuView) &amp;amp;&amp;amp;&lt;br&gt;        formRun.name() != formstr(sysFormSearch) &amp;amp;&amp;amp;              &lt;br&gt;        formRun.name() != formstr(EventAttentionGrabber) &amp;amp;&amp;amp;&lt;br&gt;        //added by kamal&lt;/font&gt;&lt;br&gt;        &lt;strong&gt;&lt;font color="#76923c"&gt;formRun.name() != formstr(MyForm)&lt;/font&gt; &lt;/strong&gt;       &lt;br&gt;&lt;font color="#0070c0"&gt;       )&lt;br&gt;    {&lt;br&gt;        this.setLastActivatedForm(formRun);&lt;br&gt;    }&lt;/font&gt;&lt;/font&gt;&lt;font face="Courier New" color="#0070c0" size=2&gt;&lt;/font&gt; 
&lt;p&gt;&lt;br&gt;&lt;font size=2&gt;  This would skip adding your form to the last activated form list.&lt;/font&gt; 
&lt;p&gt;...................&lt;img title="Light bulb" style="vertical-align:middle" alt="Light bulb" src="http://shared.live.com/QGncRMHLLpIcOfCh--4aMA/emoticons/lightbulb.gif"&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7982369448932160157&amp;page=RSS%3a+Preventing+a+form+getting+added+to++%22LastActivated+Form%22+in+Dynamics+Ax&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=casperkamal.spaces.live.com&amp;amp;GT1=casperkamal"&gt;</description><category>Dynamics Ax</category><comments>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!325.entry#comment</comments><guid isPermaLink="true">http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!325.entry</guid><pubDate>Mon, 27 Aug 2007 12:13:03 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://casperkamal.spaces.live.com/blog/cns!9138ED475277CD63!325/comments/feed.rss</wfw:commentRss><wfw:comment>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!325.entry#comment</wfw:comment><dcterms:modified>2007-08-27T12:14:51Z</dcterms:modified></item><item><title>Some interesting articles for Dynamics Ax developers</title><link>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!327.entry</link><description>&lt;div&gt; &lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;                     There were some very good articles from Several bloggers that drew my attention, here are some of them that i felt should every DAX developer should have a look at....&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;    &amp;gt; &lt;/font&gt;&lt;a href="http://dax-lessons.spaces.live.com/Blog/cns!D89D0800DE72FCD1!128.entry" target="_blank"&gt;&lt;font size=2&gt;AnalogMeter in Ax - Sreenath's Space&lt;/font&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;    &amp;gt; &lt;/font&gt;&lt;a href="http://axcoder.blogspot.com/2007/08/video-howto-drag-and-drop-nodes-from.html" target="_blank"&gt;&lt;font size=2&gt;Drag and Drop nodes from XPO - Max Belugin&lt;/font&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;    &amp;gt; &lt;/font&gt;&lt;a href="http://blogs.msdn.com/x/archive/2007/08/07/do-not-misuse-string-concatenations.aspx" target="_blank"&gt;&lt;font size=2&gt;Misuse of string concatenations - x++ team&lt;/font&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;    &amp;gt; &lt;/font&gt;&lt;a href="http://blogs.msdn.com/mfp/archive/2007/08/23/articles-on-x-development.aspx" target="_blank"&gt;&lt;font size=2&gt;Link to Articles on X++ development - MFP&lt;/font&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font size=2&gt;--------------- WOW :)&lt;/font&gt; &lt;/div&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7982369448932160157&amp;page=RSS%3a+Some+interesting+articles+for+Dynamics+Ax+developers&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=casperkamal.spaces.live.com&amp;amp;GT1=casperkamal"&gt;</description><category>General</category><comments>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!327.entry#comment</comments><guid isPermaLink="true">http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!327.entry</guid><pubDate>Mon, 27 Aug 2007 12:08:43 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://casperkamal.spaces.live.com/blog/cns!9138ED475277CD63!327/comments/feed.rss</wfw:commentRss><wfw:comment>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!327.entry#comment</wfw:comment><dcterms:modified>2007-08-27T12:09:22Z</dcterms:modified></item><item><title>New MSDN blog for "X++"</title><link>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!316.entry</link><description>&lt;div&gt; &lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;&lt;font face="Verdana, Geneva, Arial, Sans-serif" size=3&gt;        Check out the new MSDN blog from the X++ compiler team....it is a must read for all guys who love &lt;img src="http://shared.live.com/VIf!VWmJbs6tK-ObyYk28Q/emoticons/heart.gif"&gt; Daxing ..:)&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font face="Verdana, Geneva, Arial, Sans-serif" size=3&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font face="Verdana, Geneva, Arial, Sans-serif" size=3&gt;        &lt;/font&gt;&lt;a href="http://blogs.msdn.com/x/"&gt;&lt;u&gt;&lt;font face="Verdana, Geneva, Arial, Sans-serif" size=3&gt; x++ Blog (Click to view the blog)&lt;/font&gt;&lt;/u&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;&lt;font face="Verdana, Geneva, Arial, Sans-serif" size=3&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font face="Verdana, Geneva, Arial, Sans-serif" size=3&gt;      &lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font face="Verdana, Geneva, Arial, Sans-serif" size=3&gt;&lt;/font&gt; &lt;/div&gt;
&lt;div&gt;&lt;font face="Verdana, Geneva, Arial, Sans-serif" size=3&gt;........mmmm wow &lt;img src="http://shared.live.com/VIf!VWmJbs6tK-ObyYk28Q/emoticons/lightbulb.gif"&gt;  that's really a cool &lt;img src="http://shared.live.com/VIf!VWmJbs6tK-ObyYk28Q/emoticons/coffee.gif"&gt; blog guys &lt;/font&gt;&lt;/div&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7982369448932160157&amp;page=RSS%3a+New+MSDN+blog+for+%22X%2b%2b%22&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=casperkamal.spaces.live.com&amp;amp;GT1=casperkamal"&gt;</description><category>Ax Resources</category><comments>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!316.entry#comment</comments><guid isPermaLink="true">http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!316.entry</guid><pubDate>Sat, 30 Jun 2007 14:09:08 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://casperkamal.spaces.live.com/blog/cns!9138ED475277CD63!316/comments/feed.rss</wfw:commentRss><wfw:comment>http://casperkamal.spaces.live.com/Blog/cns!9138ED475277CD63!316.entry#comment</wfw:comment><dcterms:modified>2007-06-30T14:11:19Z</dcterms:modified></item><item><title>Blog list: Ax Blog list</title><link>http://casperkamal.spaces.live.com/Lists/cns!9138ED475277CD63!159</link><description>&lt;div&gt;&lt;p&gt;Ax Blog list&lt;/p&gt;&lt;/div&gt;&lt;div&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;&lt;a href="http://daxline.blogspot.com&amp;#47;"&gt;Zubairs Ax Blog&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href="http://sangi1983.spaces.live.com&amp;#47;"&gt;Santosh&amp;#39;s Ax Blog&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href="http://dynamicsaxer.spaces.live.com&amp;#47;"&gt;David&amp;#39;s space&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href="http://dax-lessons.spaces.live.com&amp;#47;f"&gt;Sreenath&amp;#39;s space&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href="http://fredshen.spaces.live.com&amp;#47;"&gt;FredShan&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href="http://blogs.msdn.com&amp;#47;palle_agermark&amp;#47;"&gt;Palle Agermark&amp;#39;s WebLog&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href="http://axcoder.blogspot.com&amp;#47;"&gt;Max Belugin&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href="http://blogs.msdn.com&amp;#47;dpokluda&amp;#47;default.aspx"&gt;David Pokluda&amp;#39;s&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href="http://daxguy.blogspot.com&amp;#47;index.html"&gt;Arijit Basu&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href="http://axaptafreak.blogspot.com&amp;#47;"&gt;Helmut Wimmer&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href="http://blogs.msdn.com&amp;#47;mfp&amp;#47;"&gt;MFP&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href="http://daxdave.blogspot.com&amp;#47;"&gt;Dave&amp;#39;s Blog&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href="http://blogs.msdn.com&amp;#47;x&amp;#47;"&gt;Issues concerning X&amp;#43;&amp;#43;&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href="http://kashperuk.blogspot.com&amp;#47;"&gt;KashperukIvan&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7982369448932160157&amp;page=RSS%3a+Blog+list%3a+Ax+Blog+list&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=casperkamal.spaces.live.com&amp;amp;GT1=casperkamal"&gt;</description><guid isPermaLink="false">cns!9138ED475277CD63!159</guid><pubDate>Tue, 01 Jul 2008 11:39:46 GMT</pubDate><msn:type>bloglist</msn:type><live:type>bloglist</live:type><live:typelabel>Blog list</live:typelabel><cf:itemRSS>http://casperkamal.spaces.live.com/Lists/cns!9138ED475277CD63!159/feed.rss</cf:itemRSS><dcterms:modified>2008-07-01T11:39:46Z</dcterms:modified></item><item><title>Book List: Just Read</title><link>http://casperkamal.spaces.live.com/Lists/cns!9138ED475277CD63!126</link><description>&lt;p&gt;Just Read&lt;/p&gt;&lt;div&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;&lt;a href="http://www.amazon.com&amp;#47;gp&amp;#47;product&amp;#47;images&amp;#47;0553380168&amp;#47;ref&amp;#61;dp_otherviews_0&amp;#47;002-0010139-7828077&amp;#63;ie&amp;#61;UTF8&amp;#38;s&amp;#61;books&amp;#38;img&amp;#61;0"&gt;Stephen Hawking: A Brief History of Time&lt;/a&gt;&lt;/p&gt;&lt;p&gt;A book that attempst to give a understanding of time, space and black holes to commoner. The book meets it&amp;#39;s ultimatum. Wonderful book, worth reading&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href="http://www.amazon.com&amp;#47;gp&amp;#47;product&amp;#47;0062502182&amp;#47;sr&amp;#61;1-1&amp;#47;qid&amp;#61;1154669217&amp;#47;ref&amp;#61;pd_bbs_1&amp;#47;104-2349482-5787110&amp;#63;ie&amp;#61;UTF8&amp;#38;s&amp;#61;books"&gt;Paulo Coelho: AlChemist&lt;/a&gt;&lt;/p&gt;&lt;p&gt;A Fable About Following Your Dream&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href="http://www.annefrank.com&amp;#47;1_life.htm"&gt;Anne Frank: Anne Frank&amp;#58; The Diary of a small girl&lt;/a&gt;&lt;/p&gt;&lt;p&gt;A diary describing a hide out life of the author &amp;#40;a small girl&amp;#41; and their Family in Holland during the german&amp;#39;s anti jewish regime. A popular book with readers around the world&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href="http://www.amazon.com&amp;#47;Autobiography-a-Yogi-Paramahansa-Yogananda&amp;#47;dp&amp;#47;0876120796"&gt;Paramahansa Yogananda: Autobiography of a Yogi&lt;/a&gt;&lt;/p&gt;&lt;p&gt;A spiritual treasure. The author speaks about the spiritual lifes of yogi who live and lead their life in search of GOD. Since the author himself is a yogi the explanation given are profound.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href="http://www.amazon.com&amp;#47;Business-Speed-Thought-Succeeding-Digital&amp;#47;dp&amp;#47;B000LP66X4&amp;#47;sr&amp;#61;8-1&amp;#47;qid&amp;#61;1168753928&amp;#47;ref&amp;#61;pd_bbs_sr_1&amp;#47;105-6460595-4862857&amp;#63;ie&amp;#61;UTF8&amp;#38;s&amp;#61;books"&gt;Bill Gates: Business &amp;#64; The Speed of Thought&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href="http://www.prakashbooks.com&amp;#47;details.php3&amp;#63;id&amp;#61;15795&amp;#38;c&amp;#61;Business&amp;#32;&amp;#47;&amp;#32;Management"&gt;John Hodgson: Financial Awareness&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Introduce you to basic financial awareness Test your understanding with a before and after test Enable you to calculate key financial measures Help you make better business decisions based on financial input&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href="http://www.sriramakrishnamath.org&amp;#47;Books&amp;#47;Elist.asp&amp;#63;ProductType&amp;#61;MA24A17"&gt;Ramakrishna Math Publication: HEALTHY MIND HEALTHY BODY&lt;/a&gt;&lt;/p&gt;&lt;p&gt;When we speak of health, we normally think of only the body, but health of one&amp;#8217;s mind is important too. A healthy mind and body are great assets in the development of a healthy spiritual life.  This books speak&amp;#39;s about a healthy spiritual life&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href="http://www.amazon.com&amp;#47;HOW-READ-PERSON-LIKE-BOOK&amp;#47;dp&amp;#47;B00072IT1I"&gt;Gerald and Henry: How To Read a Person Like a Book&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;APJ.Abdul Kalam: Ignited Minds&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href="http://www.ithappened.in&amp;#47;"&gt;KIshore Biyani: IT Happened in India&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The book that speaks about the man behind the biggest retail chain in India and how he revolutanized retail in India&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href="http://www.amazon.com&amp;#47;Jonathan-Livingston-Seagull-Richard-Bach&amp;#47;dp&amp;#47;0380012863"&gt;Richard Bach: Jonathan livingstone seagull&lt;/a&gt;&lt;/p&gt;&lt;p&gt;It&amp;#39;s a story about a seagull who, unlike his comrades, is not happy yelling &amp;#34;Mine&amp;#33; Mine&amp;#33; Mine&amp;#33;&amp;#34; for food. He loves to soar, and fly. He faces rejection and ridicule for his quest for greater heights. And of course, he inspires all of us to reach for our go&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href="http://www.amazon.com&amp;#47;LIVING-HIMALAYAN-MASTERS-Spiritual-Experiences&amp;#47;dp&amp;#47;0893890707"&gt;Swami Rama: Living with the himalayan masters&lt;/a&gt;&lt;/p&gt;&lt;p&gt;This is a timeless classic by one of the most influential yoga masters of the 20th century. It transports you into the caves of the Himalayas and introduces you to the great adepts who live there. &lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Akio Morito: Made In Japan&amp;#40;Tamil version&amp;#41;&lt;/p&gt;&lt;p&gt;A wonderful book from the founder of SONY&amp;#59;&amp;#10;Speaks abt how Sony become the world leader in &amp;#10;electronics and also on the facts abt Japanese&amp;#10;trade&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href="http://www.amazon.com&amp;#47;iCon-Steve-Jobs-Greatest-Business&amp;#47;dp&amp;#47;0471720836"&gt;Jeffrey S. Young, William L. Simon: Steve Jobs Icon&amp;#58; The Greatest Second Act of Business&lt;/a&gt;&lt;/p&gt;&lt;p&gt;This books tries to narrate the happening of Steve Jobs, in an effort to keep it interesting and informative the author loses track in order of the happenings eventually creating a confusion in the reader&amp;#39;s mind. But a good one if u want to know about&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href="http://www.straightfromthegut.com&amp;#47;"&gt;Jack welch : Straight From the Guts&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Jack Welch, with the help of Business Week journalist John Byrne, recounts his career and the style of management that helped to make GE one of the most successful companies of the last century&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href="http://www.iskcon.com&amp;#47;"&gt;Swami Prabhupada: The Art of Self Realization&lt;/a&gt;&lt;/p&gt;&lt;p&gt;A short compilation of interviews and Lectures by the author. The author talks about the science of self-realization, meditating and practicing yoga in the modern age, gaining liberation from the law of karma, achieving super-consciousness, and much more.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href="http://www.thegooglestory.com&amp;#47;"&gt;David A.Vise: The Google Story&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7982369448932160157&amp;page=RSS%3a+Book+List%3a+Just+Read&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=casperkamal.spaces.live.com&amp;amp;GT1=casperkamal"&gt;</description><guid isPermaLink="false">cns!9138ED475277CD63!126</guid><pubDate>Tue, 13 May 2008 05:27:40 GMT</pubDate><msn:type>booklist</msn:type><live:type>booklist</live:type><live:typelabel>Book list</live:typelabel><cf:itemRSS>http://casperkamal.spaces.live.com/Lists/cns!9138ED475277CD63!126/feed.rss</cf:itemRSS><dcterms:modified>2008-05-13T05:27:40Z</dcterms:modified></item><item><title>Book List: Reading now</title><link>http://casperkamal.spaces.live.com/Lists/cns!9138ED475277CD63!171</link><description>&lt;p&gt;Reading now&lt;/p&gt;&lt;div&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;&lt;a href="http://store.chopra.com&amp;#47;productinfo.asp&amp;#63;item&amp;#61;58"&gt;Deepak Chopra: Ageless Body, Timeless Mind&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The message that this book brings is &amp;#34;We are not victims of aging, sickness, and death. These are part of the scenery, not of the seer, who is immune to any form of change.This seer is the spirit, the expression of eternal being.&amp;#34; &lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7982369448932160157&amp;page=RSS%3a+Book+List%3a+Reading+now&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=casperkamal.spaces.live.com&amp;amp;GT1=casperkamal"&gt;</description><guid isPermaLink="false">cns!9138ED475277CD63!171</guid><pubDate>Tue, 13 May 2008 05:26:28 GMT</pubDate><msn:type>booklist</msn:type><live:type>booklist</live:type><live:typelabel>Book list</live:typelabel><cf:itemRSS>http://casperkamal.spaces.live.com/Lists/cns!9138ED475277CD63!171/feed.rss</cf:itemRSS><dcterms:modified>2008-05-13T05:26:28Z</dcterms:modified></item><item><title>Custom List: Dynamics Ax Links</title><link>http://casperkamal.spaces.live.com/Lists/cns!9138ED475277CD63!102</link><description>&lt;p&gt;Dynamics Ax Links&lt;/p&gt;&lt;div&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;&lt;a href="http://axapta-knowledge-village.blogspot.com&amp;#47;"&gt;Axapta Knowledge Village&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href="http://www.microsoft.com&amp;#47;dynamics&amp;#47;ax&amp;#47;community.mspx"&gt;Microsoft Dynamics Ax Community&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href="http://www.trucosax.com"&gt;TrucosAx.com&lt;/a&gt;&lt;/p&gt;&lt;p&gt;A spanish website on  Dynamics Ax&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href="http://www.axapta-links.com&amp;#47;"&gt;Axapta Link&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7982369448932160157&amp;page=RSS%3a+Custom+List%3a+Dynamics+Ax+Links&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=casperkamal.spaces.live.com&amp;amp;GT1=casperkamal"&gt;</description><guid isPermaLink="false">cns!9138ED475277CD63!102</guid><pubDate>Fri, 06 Apr 2007 04:19:30 GMT</pubDate><msn:type>list</msn:type><live:type>list</live:type><live:typelabel>List</live:typelabel><cf:itemRSS>http://casperkamal.spaces.live.com/Lists/cns!9138ED475277CD63!102/feed.rss</cf:itemRSS><dcterms:modified>2007-04-06T04:19:30Z</dcterms:modified></item></channel></rss>