Dynamics AX Useful Links

Posted by Alvin You
2013. 10. 25. 22:52 Dynamics AX

Dynamics AX와 관련한 유용한 Links 정보입니다.

 

Microsoft Dynamics InformationSource

 http://informationsource.dynamics.com

Microsoft Dynamics ERP RapidStart Services

 https://www.rapidstart.dynamics.com

Microsoft Dynamics AX 2012 for Developers

 http://msdn.microsoft.com/en-us/library/aa496079.aspx

Microsoft Dynamics AX architecture [AX 2012]

 http://technet.microsoft.com/en-us/library/dd309612.aspx

Unit Test Framework [AX 2012]

 http://msdn.microsoft.com/en-us/library/aa874515.aspx

Sure Step Online

 https://mbs2.microsoft.com/Surestep/default.aspx

The Microsoft Dynamics AX product team blog

 http://blogs.msdn.com/b/dax/

The Performance team blog

 http://blogs.msdn.com/baxperf/

The Dynamics AX Sustained Engineering team blog

 http://blogs.technet.com/b/dynamicsaxse/

 

 

Microsoft patterns & practices   http://msdn.microsoft.com/en-us/practices/bb190332
Architecture Journal   http://www.ArchitectureJournal.net
Application Lifecycle Management (ALM)   http://www.microsoft.com/visualstudio/en-us/strategies/alm
Microsoft Security Development Lifecycle

 http://www.microsoft.com/security/sdl/default.aspx

Visual Studio Test Professional Overview  http://www.microsoft.com/visualstudio/en-us/try/test-professional-2010-tour

Minimizing risk, maximizing returns

Posted by Alvin You
2013. 10. 25. 22:14 Dynamics AX

많은 BP(Business Partner)들이 자사만의 프로젝트 방법론을 통해 AX 프로젝트를 수행하지만, 목표는 성공적인 프로젝트를 수행하고 고객 만족도를 최대화 시키는게 공통 사항이라고 생각합니다.

많은 방법론들이 있지만 대표적인 방법은 MS의 SureStep이라는 표준 방법론이 있습니다. SureStep같이 표준화된 프로세스를 100% 따르기는 힘들어 많은 방법론들이 프로젝트에 꼭 필요한 내용을 기반으로 구성되어 있습니다.

아래 내용은 방법론적인 내용보다는 BP 또는 VAR(Value Added Reseller) 회사들이 AX 기반의 Solution을 구축할때 어떻게 하면 위험요소를 줄이고 이익을 극대화 할 수 있을지에 대해서 MS Dynamics R&D 직원이 도식화 시킨 내용입니다.

Solution을 만드는 과정도 하나의 프로젝트라고 생각한다면, 고객사에 AX Implementation 즉 프로젝트 방법론 중 일부를 아래 단계별 과정을 응용해 프로젝트를 수행하면 좋지 않을까 싶습니다.

 

Import data from Excel file to AX using X++ in AX 2012

Posted by Alvin You
2013. 10. 23. 00:19 Dynamics AX

Excel 파일을 Import 받아 AX에 구성되어 있는 Standard or Developed Table에 값을 집어 넣는 로직입니다. Delphi나 VB, Powerbuilder 개발을 해 보셨던 분들에겐 익숙한 코딩일 듯 싶습니다.

 

static void ReqAmount(Args _args)
{
    SysExcelApplication application;
    SysExcelWorkbooks workbooks;
    SysExcelWorkbook workbook;
    SysExcelWorksheets worksheets;
    SysExcelWorksheet worksheet;
    SysExcelCells cells;
    COMVariantType type;
    Name name;
    FileName filename;
    ReqAmount reqAmount;
    int row;
    str _reqOrderNo;
    int _reqAmount;
    ;
 
    application = SysExcelApplication::construct();
    workbooks = application.workbooks();
    filename = "D:\\ReqAmount.xlsx";
   
    try
    {
        workbooks.open(filename);
    }
    catch (Exception::Error)
    {
        throw error("File cannot be opened.");
    }
 
    workbook = workbooks.item(1);
    worksheets = workbook.worksheets();
    worksheet = worksheets.itemFromNum(1); //첫번째 Sheet
    cells = worksheet.cells();
    do
    {
        row++;
        _reqOrderNo = any2str(cells.item(row, 1).value().toString());
        _reqAmount = cells.item(row, 2).value().int();

        reqAmount.ReqOrderNo = _reqOrderNo;
        reqAmount.ReqAmount = _reqAmount;
        reqAmount.insert();

        type = cells.item(row+1, 1).value().variantType();
    } while (type != COMVariantType::VT_EMPTY);
   
    application.quit();
}

'Dynamics AX' 카테고리의 다른 글

Dynamics AX Useful Links  (0) 2013.10.25
Minimizing risk, maximizing returns  (0) 2013.10.25
RecId란?  (0) 2013.10.20
훌륭한 Dynamics AX Project Manager에 필요한 자질  (0) 2013.10.16
SAP vs Oracle vs AX  (0) 2013.10.13

RecId란?

Posted by Alvin You
2013. 10. 20. 22:44 Dynamics AX
AX 개발자에겐 선배 개발자들이 말하는 RecId라는 말을 그냥 개발자에겐 꼭 알아야 하는 고유명사처럼 많이들 들어봤을겁니다. 하지만 정작 우리가 RecId에 대해 명확히 알고 사용을 하는지 한 번 되새겨 볼 필요가 있어서 RecID 원문 글을 올립니다. 
What is RecId?
The RecId is a unique field in every table, used as an identifier. Every row in the system can be guaranteed (in theory) to have a unique RecId. RecIds can be negative, and their value can change due import/export operations. Due to this, it is not a good idea to use RecIds as foreign key references to other tables.

What is the difference between a RecId and an Id?

The kernel generates the RecId while the Id is generated by the application.

'Dynamics AX' 카테고리의 다른 글

Minimizing risk, maximizing returns  (0) 2013.10.25
Import data from Excel file to AX using X++ in AX 2012  (0) 2013.10.23
훌륭한 Dynamics AX Project Manager에 필요한 자질  (0) 2013.10.16
SAP vs Oracle vs AX  (0) 2013.10.13
AX VS SAP?  (0) 2013.10.12

결혼 2주년

Posted by Alvin You
2013. 10. 16. 22:30 그녀&개똥이

벌써 그녀와의 결혼 생활이 2주년이 되었다. 결혼 1주년때에는 그녀와 어떤 이벤트로 기념을 했었는지 기억이 가물가물 하지만, 오늘은 퇴근길에 기념할만한 작은 이벤트를 준비했다.

저녁을 먹고 쉬고 있는 그녀에게 장미꽃 2송이를 선물하면서, 내년에는 그녀가 좋아할만한 Gold bar 3개를 기대해 보라는 멘트를 날렸답니다.

 

작은 순간이나마 그녀가 행복을 느끼길 기대하며... 개똥엄마 사랑해유~

'그녀&개똥이' 카테고리의 다른 글

신생아 장 마사지  (0) 2014.03.13
첫 사고 ㅋㅋㅋ  (0) 2014.03.13
우리 준영이 사진  (0) 2014.03.13
개똥이 엄마 입원  (0) 2013.10.12

훌륭한 Dynamics AX Project Manager에 필요한 자질

Posted by Alvin You
2013. 10. 16. 00:20 Dynamics AX

성공적인 Dynamics AX Project 가 되기 위해서는 Project Manager의 역할이 큽니다. 그렇다면 훌륭한 Dynamics AX Project Manager가 되기 위해서는 어떠한 것들이 필요할까요?

 

SAP과 같은 ERP 솔루션들은 SAP BC(Basis)와 같은 SAP과 관련한 Technical 영역을 담당하는 컨설턴트가 별도로 있을만큼 시스템 영역을 전문가가 담당하고 있습니다. 하지만, AX 같은 경우는 X++ 개발을 담당하는 개발자가 System Engineer 역할도 Developer 역할도... 같기도(흔히 이야기 하는 영업 같기도 개발자 같기도 아키텍쳐 같기도 등등 = Multi Player)와 같이 다양한 역할들을 담당해줘야 합니다.

 

Project Manager 또한 다양한 영역에 대한 배경 지식이 없는 한 그 모든것들을 컨트롤 한다는것은 불가능하다고 생각합니다.

 

WescJv

 

http://www.cognitive-group.com/blog/ax/what-makes-a-good-dynamics-ax-project-manager-with-infographic

'Dynamics AX' 카테고리의 다른 글

Import data from Excel file to AX using X++ in AX 2012  (0) 2013.10.23
RecId란?  (0) 2013.10.20
SAP vs Oracle vs AX  (0) 2013.10.13
AX VS SAP?  (0) 2013.10.12
Code for Proxies in Enterprise Portal of AX 2012  (0) 2013.10.11

SAP vs Oracle vs AX

Posted by Alvin You
2013. 10. 13. 23:41 Dynamics AX

Welcome to the ERP Fight Club:

In Today’s match let me introduce you with our fighters:
1.)SAP
2.) Oracle(E-Business Suite)

3.) Microsoft (Microsoft Dynamics)

4.) Other ERP vendors.

Each of these has their own advantages and disadvantages. So to get the clear idea we will compare all of these according to different points. Starting with

1.Market Share:

 

So i think SAP is leading the way in this Game.

2.Average ERP Solution Satisfaction and Benefits Realization.

According to survey carried out over thousands of companies which use the ERP Tools.

SAP Gives : 75%

Oracle Gives : 60%

Microsoft Gives : 58%

Other ERP Vendors gives : 60%

 

So again SAP wins the game. The biggest advantage with SAP is the huge experience which it gets from its client and makes the ERP Tool more Power full to satisfy each and every business need.

3.Average Cost to maintain and implement the ERP Tool

SAP : $16 M

Oracle : $12 M

Microsoft :$3 M

Others : $3.5 M

 

if you don’t want to spend much for ERP tool just go for the last two options.

4.Average implementation Time Duration :

SAP : 15 Months

Oracle : 13 Months

Microsoft : 12 Months

Others : 11 months

5.Business Risk Factor:

This factor is most important as it gives the proportion of the companies that suffered from operational interruptions following go-live are relatively high.

프로페셔널

Posted by Alvin You
2013. 10. 12. 20:32 밑줄 한줄

프로페셔널은 감정을 조절하고 이성적으로 행동하는 사람이다. 전문적인 지식과 기술, 바람직한 윤리관은 물론이고 고객 제일주의와 끝없는 호기심, 자기 계발 능력, 엄격한 규율, 이 모든 것을 빠짐없이 겸비한 사람을 프로페셔널이라고 부른다.

<프로페셔널의 4가지 조건>

'밑줄 한줄' 카테고리의 다른 글

다시 일상으로 복귀  (0) 2014.06.05
생각대로 살지 않으면 사는 대로 생각하게 된다  (0) 2014.03.21
일단 부딪쳐 본다  (0) 2013.10.12

일단 부딪쳐 본다

Posted by Alvin You
2013. 10. 12. 20:26 밑줄 한줄

문제를 해결하는 사람과 해결하지 못하는 사람의 차이는 간단하다. 자신이 아직 경험하지 못한 일을 피하느냐, 아니면 일단 부딪쳐 보느냐 바로 그 행동의 차이다. 처음부터 성공의 길을 알고 있는 사람은 없다.

<돈 잘 버는 사람은 머리를 어떻게 쓸까>

'밑줄 한줄' 카테고리의 다른 글

다시 일상으로 복귀  (0) 2014.06.05
생각대로 살지 않으면 사는 대로 생각하게 된다  (0) 2014.03.21
프로페셔널  (0) 2013.10.12

개똥이 엄마 입원

Posted by Alvin You
2013. 10. 12. 01:10 그녀&개똥이

지난주 내내 개똥이 엄마는 규칙적이고 빈번하게 느껴지는 자궁 수축으로 인해 병원에 입원했었답니다. 그러다가, 10일날 출근해서 상황을 지켜본다는게 또다시 자궁 수축이 발생하여 그날 오후에 병원으로 달려가 입원을 했지요.

아직은 개똥이가 자라는 시기인 23주가 지난터라 개똥이 엄마는 개똥이가 걱정이 많이 되나봐요. 남편은 개똥이 엄마가 걱정이 되는데... 암튼 우리 가족 개똥이 태어나는 날까지 화이팅 해봐요!

개똥이도 엄마 뱃속에서 엄마 지켜주구..알았지!

- 개똥이 엄마 보고와서...

'그녀&개똥이' 카테고리의 다른 글

신생아 장 마사지  (0) 2014.03.13
첫 사고 ㅋㅋㅋ  (0) 2014.03.13
우리 준영이 사진  (0) 2014.03.13
결혼 2주년  (0) 2013.10.16