最近一本关于Microsoft Dynamics AX 2012开发的书《Inside Microsoft Dynamics AX 2012 R3》 发布。

Book Description
Fully updated for Microsoft Dynamics AX 2012 R3!

Dig into the architecture and internals of
Microsoft Dynamics AX 2012 R3 – with firsthand insights from the team
that designed and developed it. Deepen your knowledge of the underlying
frameworks, components, and tools – and deliver custom ERP applications
with the extensibility and performance your business needs. Useful for
Microsoft Dynamics AX solution developers at all levels, this guide will
provide max benefit to those who understand OOP, relational database,
and Transact-SQL concepts.

Table of Contents

Part I: A Tour of the Development Environment
Chapter 1. Architectural Overview
Chapter 2. The MorphX Development Environment and Tools
Chapter 3. Microsoft Dynamics AX and .NET
Chapter 4. The X++ Programming Language

Part II: Developing with Microsoft Dynamics AX
Chapter 5. Designing the User Experience
Chapter 6. The AX 2012 Client
Chapter 7. Enterprise Portal
Chapter 8. Workflow in AX 2012
Chapter 9. Reporting in AX 2012
Chapter 10. BI and Analytics
Chapter 11. Security, Licensing, and Configuration
Chapter 12. AX 2012 Services and Integration
Chapter 13. Performance
Chapter 14. Extending AX 2012
Chapter 15. Testing
Chapter 16. Customizing and Adding Help

Part III: Under the Hood
Chapter 17. The Database Layer
Chapter 18  Automating tasks and document distribution
Chapter 19. Application Domain Frameworks
Chapter 20. Reflection
Chapter 21. Application Models
Chapter 22  Developing mobile apps for AX 2012
Chapter 23  Managing the application life cycle

Book Details:

  • Pages: 896 pages
  • Publisher: Microsoft Press; 1 edition
  • Language: English
  • ISBN-10: 073568510X
  • ISBN-13: 978-0735685109

在线预览

下载(preview):百度盘 (hk4q)

转载:ww12345678 的部落格 | AX Helper » [eBook]Inside Microsoft Dynamics AX 2012 R3发布

[eBook]Inside Microsoft Dynamics AX 2012 R3发布的更多相关文章

  1. Dynamics AX 2012 R3 Demo 安装与配置 - 导入测试数据 (Step 4)

        在前面三节中,Reinhard分别讲解了如何配置安装环境,安装数据库服务器,AOS和客户端,安装后的编译和配置.如果一直跟随Reinhard的脚步,到这里,已经拥有一个没有数据的系统.     ...

  2. Dynamics AX 2012 R3 Demo 安装与配置 - 配置安装环境 (Step 1)

    AX 2012 R3 发布后,Reinhard一直想体验一把,可是Reinhard所在的公司暂时不会升级到R3版本.这不,Reinhard就打算在个人电脑上安装下,可是安装的过程中,遇到了很多问题,R ...

  3. Microsoft Dynamics AX 2012 X++ Editor Extensions

    Microsoft Dynamics AX 2012 X++ Editor Extensions Initial version of this project is based on the MSD ...

  4. Dynamics AX 2012 R3 仓库和运输管理系列 - 仓库管理模块安装与配置

        在AX 2012 R3版本中,新增了仓库和运输管理模块,同时提供了一个在移动设备上进行仓库管理工作的网站.在这个系列里,与Reinhard一起,了解仓库和运输管理模块吧.     需要注意的是 ...

  5. Microsoft Dynamics AX 2012: How to get Company,Customer and Vendor address in AX 2012

    Scenario:  “How to get Addresses of “Customer, Vendor and Company” 1)      First we need to identify ...

  6. Dynamics AX 2012 R3 Demo 安装与配置 - 安装数据服务器、AOS和客户端 (Step 2)

    上一节中,Reinhard主要讲解了怎么配置安装环境,尤其是域控制器,并在域中添加了一个管理员账户 MSDynAX.NET\Reinhard ,以后的安装配置,均在该账户下进行. 现在运行 AX 20 ...

  7. Dynamics AX 2012 R3 Demo 安装与配置 - 编译和配置 (Step 3)

        在前两节中,Reinhard主要讲解了如何配置安装环境,安装数据库服务器,AOS和客户端.至此安装工作已经结束,下面Reinhard开始讲解如何编译和配置.     运行客户端后,系统弹出初始 ...

  8. 转:Microsoft Dynamics AX内部版本号概述

    Overview of Microsoft Dynamics AX build numbers 转自:https://community.dynamics.com/ax/b/axsupport/arc ...

  9. Dynamics AX 2012 R2 安装额外的AOS

    众所周知,AX系统分为三层:Client,Application Server,Database Server. 我们添加额外的Application Server主要是出于以下两个原因: 使用多台服 ...

随机推荐

  1. js验证表单大全1

    附加:js验证radio是否选择 <script language="javascript"> function checkform(obj) { for(i=0;i& ...

  2. JS判断是手机访问还是PC端访问网站

    <script>    if ((navigator.userAgent.match(/(iPhone|iPod|Android|ios|iOS|iPad|Backerry|WebOS|S ...

  3. BufferedReader.mark()函数注意事项

    BufferedRedder.mark()注意事项,在如下代码u3 = br3.readLine();会出现java.lang.OutOfMemoryError: Java heap space异常. ...

  4. Python3.6全栈开发实例[019]

    19.干掉主播.现有如下主播收益信息, 按照要求, 完成相应操作:(1)计算主播平均收益值 sum = 0 for i in zhubo.values(): sum +=i print(round(s ...

  5. End to End 端到端

    在DeepLearning的文章中有看到end2end一次,作者们似乎都比较喜欢这个end2end learning的方式.那么到底啥是end2end? 找了一下相关论文,没找到专门讲这个概念的,看来 ...

  6. solrcloud配置步骤

    SolrCloud是Solr4.0版本以后基于Solr和Zookeeper的分布式搜索方案.SolrCloud是Solr的基于Zookeeper一种部署方式. 版本信息:solr版本6.2.0+tom ...

  7. C#中的foreach和yield

    1. foreach C#编译器会把foreach语句转换为IEnumerable接口的方法和属性. foreach (Person p in persons) { Console.WriteLine ...

  8. 爬虫基础库之Selenium

    1.简介 selenium最初是一个自动化测试工具,而爬虫中使用它主要是为了解决requests无法直接执行JavaScript代码的问题 selenium本质是通过驱动浏览器,完全模拟浏览器的操作, ...

  9. win10 chrome 调试

      下载NPAPI版本的flash player: http://www.adobe.com/support/flashplayer/debug_downloads.html#fp13       禁 ...

  10. $《第一行代码:Android》读书笔记——第9章 服务

    (一)Service简介 服务适合执行那种不需要和用户交互而且还要长期运行的任务.所有的服务代码都是默认运行在主线程中,需要在服务内部手动添加子线程,在子线程中执行耗时任务.   (二)线程 1.线程 ...