AX Query에서 사용하는 like operator

Posted by Alvin You
2013. 11. 13. 14:58 Dynamics AX

AX Engine에서 사용되는 Query 작성시 사용할 수 있는 Like 연산자 사용방법에 대한 예제입니다.

 

static void likeOperator(Args _args)
{
    DirPartyTable dirPartyTable;
    ;
 
    select dirPartyTable where dirPartyTable.Name like("*Pusan*");// match with Pusan
    info(dirPartyTable.Name);   
    select dirPartyTable where dirPartyTable.Name like("*Pusan");// end with with Pusan
    info(dirPartyTable.Name);   
    select dirPartyTable where dirPartyTable.Name like("Pusan*");// start with Pusan
    info(dirPartyTable.Name);
}

Data Migration Framework

Posted by Alvin You
2013. 11. 13. 14:02 Dynamics AX

AX 2012의 DMF(Data Migration Framework)에 대한 요약 내용입니다. AX 2012 출시 이후 많은 Business Partner사들이 Excel Addin을 통해 잘못된 Data Migration 작업을 시도하면서 MS에서 발빠르게 준비해서 나온 Data 이관 솔루션입니다.

 

Data Migration Framework within Microsoft Dynamics AX 2012

AX 2012 Model store database and baseline model store

Posted by Alvin You
2013. 11. 13. 13:24 Dynamics AX
Model store database
The model store is the database where all application elements for Microsoft Dynamics AX are stored. Customizations are also stored in the model store. The model store replaces the Application Object Data (AOD) files that were used in earlier versions of Microsoft Dynamics AX.

Baseline model store
The baseline model store holds model store tables for the earlier version of the metadata and is used only during upgrade. The baseline model store is like the old folder in earlier versions of Microsoft Dynamics AX.

Note : In Microsoft Dynamics AX 2012 R2, the model store was moved into a database that is separate from the business database.