Total Pageviews

Search This Blog

Thursday, December 24, 2009

Merry Xmas!

Wish all my blog readers a Merry Xmas! Njoi!

Cleared WSS Configuring Exam 70-630

Cleared my WSS 3.0 Configuring Exam.

Dynamics AX 6.0 Deployment Engine

Here's a great 4-part series post by mfp regarding the deployment process with the upcoming release of Dynamics AX 2011 aka Dynamics AX 6.0.

Part 1 - Models and deploying models
http://blogs.msdn.com/mfp/archive/2009/09/23/introducing-ax-models-part-1.aspx

Part 2 - Manifest and signing
http://blogs.msdn.com/mfp/archive/2009/09/29/introducing-ax-models-part-2.aspx

Part 3 - Multiple models per layer
http://blogs.msdn.com/mfp/archive/2009/10/08/introducing-ax-models-part-3.aspx

Part 4 - Working with models inside MorphX
http://blogs.msdn.com/mfp/archive/2009/11/25/ax-models-part-4-working-with-models-inside-morphx.aspx

Thanks to mfp for putting up this wonderful post.

Dynamics AX 4.0 and AX 2009 support for Win 7 and Windows Server 2008

https://mbs.microsoft.com/customersource/newsevents/news/generalnews/MDAXCompatibility?r=14&l=4



Sunday, December 20, 2009

Sharepoint Uninstall Wizard?

Wondering why the Sharepoint Uninstall Wizard doesn't delete the databases which were created by the install wizard, Is it a bug?

Saturday, December 12, 2009

Dynamics AX 2009 Enterprise Portal Troubleshooting Blank Page Issue

We have implemented Dynamics AX 2009 EP portal for one of our business. Users log on to the EP to create/edit/view their timesheets. Recently, we got this issue where suddenly the Edit timesheet page got disappeared. Whenever the user goes to view/edit timesheet, the page was blank.

Solution:

a. Checked the Event viewer and security logs but couldn't find anything.
b. Restarted IIS but with no luck.
c. Restarted AOS, restarted the web server but still the same error persisted.
d. Checked in sharepoint virtual folder and found that the Edit Timesheet.cs (C# page) file was not there.
e. Finally, went to AOT > Web > Web Files > Page Definitions > EditTimeSheetpage and right-clicked to deploy the same to the web server.















This solved the issue, but still wondering how the page got disappeared!

Friday, December 11, 2009

How to identify SQL Server version and edition

This comes in handy when you need to check the SQL Server Version, Service Pack which your Enterprise is running, It shows the different versions and sp's for SQL Server rite from version 6.5 to SQL Server 2008, A handy link to be stored in your favorites and this is the query :

SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY ('productlevel'), SERVERPROPERTY ('edition')

You can read more here,

http://support.microsoft.com/kb/321185