Wednesday, March 01, 2006
Fusion is it a treat to Axapta?

Monday, January 09, 2006
Porting Ax Application between Instances
In usual implementation scenario/update scenario we have to work on a test application and then transfer all the content to the live environment. The following steps are to be followed if an application is to be moved from one Environment to other i.e. Test, Development, Live.
- Close down all connections for
- Clients
- AOS
- Business Connector
- Copy the following files to the new application folder
- .aod
- .ald
- .ahd
- .add
- Remove the application object index file (.aoi) from the application folder
- Start the new application in 2-tier mode, compile entire application and then synchronize the entire database
Thursday, January 05, 2006
Security in Axapta

Tuesday, December 27, 2005
Our Team
Friday, November 04, 2005
Important Inventory Tables
InventTable
InventtableModule
InventLocation
InventDim
InventSum
ItemID the for the item is stored in InventTable
DimensionID with all the inventory dimensions are stored in the InventDim table. A new dimensionID will be created when there is a change in any of the eight inventrory dimensions.
InventOnhand will be present in the InventSum table. Onhand quantity will be for combination of DimensionId and ItemID.
Hope it gives some basic input on the same.
Thursday, November 03, 2005
Automatic Number Sequence Attach Code
I find this very great in case if any one wants to attach a number sequence manually created to a particular column in Axapta. We have to write the code in create, write, delete override methods in the table we wanted to have a number sequence to be attached. Here the table is name is Test_Table and the column name for which number sequence to be attached is Test_Num
public void create(boolean _append = false)
{
super(_append);
numberSeq = NumberSeq::newGetNumFromCode("Test_001", true,true);
if (numberSeq)
{
Test_Table.Test_Num = numberSeq.num();
numAllocated = Test_Table.Test_Num;
}
}
public void write()
{
;
ttsbegin;
if (numberSeq && Test_Table.Test_Num == numAllocated)
numberSeq.used();
else
{
if (numberSeq)
numberSeq.abort();
}
super();
ttscommit;
}
public void delete()
{
ttsbegin;
if (!Test_Table.RecId && numberSeq)
numberSeq.abort();
super();
ttscommit;
}
Thursday, October 27, 2005
Some Important Blogs and Website links for Axapta
I have been going through different sites of Axapta I have got he following blogs which are very useful for us
http://blogs.msdn.com/charles_sterling/
http://blogs.msdn.com/palle_agermark/
http://dynamics-ax.blogspot.com/
http://axaptafreak.blogspot.com/
http://blogs.msdn.com/lcash/default.aspx
And also below are the links of the personal sites where we can get good info
Hope to give more links in future for reference.
