万本电子书0元读

万本电子书0元读

顶部广告

Microsoft Dynamics AX 2012 Development Cookbook电子书

售       价:¥

1人正在读 | 0人评论 9.8

作       者:Mindaugas Pocius

出  版  社:Packt Publishing

出版时间:2012-05-04

字       数:128.9万

所属分类: 进口书 > 外文原版书 > 电脑/网络

温馨提示:数字商品不支持退换货,不提供源文件,不支持导出打印

为你推荐

  • 读书简介
  • 目录
  • 累计评论(0条)
  • 读书简介
  • 目录
  • 累计评论(0条)
Microsoft Dynamics AX 2012 Development Cookbook' is full of immediately useable recipes showing you how to manage your company’s ERP information and operations efficiently, and solve your business process problems in an effective and quick way. This book contains a list of useful Dynamics AX modifications – recipes – along with all required code and in-depth explanations. Most of the recipes are presented using real-world examples in a variety of Dynamics AX modules. In addition to its cookbook style, which ensures the solutions are presented in a clear step-by-step manner, its explanations go into great detail, which makes it good learning material for everyone who has experience in Dynamics AX and wants to improve. The book is designed in such a way that most of the recipes are presented as separate, standalone entities and reading of other, prior recipes is not required. Some recipes however, are extensions of the prior ones. If you are a Dynamics AX developer who is primarily focused on delivering time-proven application modifications, then this book is for you. Although new X++ developers will find this book useful, this book is focused more towards developers who already know the basics of Dynamics AX programming and want to step up to the next level and at the same time learn the functional aspects of Dynamics AX. Some Dynamics AX coding experience is expected.
目录展开

Microsoft Dynamics AX 2012 Development Cookbook

Table of Contents

Microsoft Dynamics AX 2012 Development Cookbook

Credits

About the Author

About the Reviewers

www.PacktPub.com

Support files, eBooks, discount offers and more

Why Subscribe?

Free Access for Packt account holders

Instant Updates on New Packt Books

Preface

What this book covers

What you need for this book

Who this book is for

Conventions

Reader feedback

Customer support

Downloading the example code

Errata

Piracy

Questions

1. Processing Data

Introduction

Creating a new number sequence

How to do it...

How it works...

See also

Renaming the primary key

How to do it...

How it works...

Merging two records

How to do it...

How it works...

Adding a document handling note

How to do it...

How it works...

Using a normal table as a temporary table

How to do it...

How it works...

Copying a record

How to do it...

How it works...

There's more...

Building a query object

How to do it...

How it works...

There's more...

Using the OR operator

Using arrays fields

See also

Using a macro in an SQL statement

How to do it...

How it works...

Executing a direct SQL statement

How to do it...

How it works...

There's more...

Enhancing the data consistency check

Getting ready

How to do it...

How it works...

There's more...

Exporting data to an XML file

How to do it...

How it works...

Importing data from an XML file

How to do it...

How it works...

Creating a comma-separated value file

How to do it...

How it works...

There's more...

Reading a comma-separated value file

How to do it...

How it works...

There's more...

Using the date effectiveness feature

How to do it...

How it works...

There's more...

2. Working with Forms

Introduction

Creating a dialog

How to do it...

How it works...

See also

Handling a dialog event

How to do it...

How it works...

There's more...

See also

Building a dynamic form

How to do it...

How it works...

Adding a form splitter

How to do it...

How it works...

Creating a modal form

How to do it...

How it works...

There's more...

See also

Modifying multiple forms dynamically

How to do it...

How it works...

Storing last form values

How to do it...

How it works...

Using a tree control

How to do it...

How it works...

There's more...

Performance

Drag-and-drop

See also

Building a checklist

How to do it...

How it works...

There's more...

Adding the View details link

How to do it...

How it works...

3. Working with Data in Forms

Introduction

Using a number sequence handler

How to do it...

How it works...

See also

Creating a custom filter

How to do it...

How it works...

See also

Creating a custom instant search filter

How to do it...

How it works...

See also

Building a selected/available list

How to do it...

How it works...

There's more...

Preloading images

How to do it...

How it works...

There's more...

See also

Creating a wizard

How to do it...

How it works...

Processing multiple records

How to do it...

How it works...

Coloring records

How to do it...

How it works...

Adding an image to records

How to do it...

How it works...

There's more...

Displaying an image as part of a form

Saving a stored image as a file

4. Building Lookups

Introduction

Creating an automatic lookup

How to do it...

How it works...

There's more...

Creating a lookup dynamically

How to do it...

How it works...

Using a form for building a lookup

How to do it...

How it works...

See also

Building a tree lookup

How to do it...

How it works...

See also

Displaying a list of custom options

How to do it...

How it works...

There's more...

Another way of displaying custom options

How to do it...

How it works...

There's more...

Building a lookup based on record description

How to do it...

How it works...

There's more...

Building the Browse for Folder lookup

How to do it...

How it works...

There's more...

Manual folder browsing lookup

Adding a Make New Folder button

Building a lookup for selecting a file

How to do it...

How it works...

There's more...

Creating a color picker lookup

How to do it...

How it works...

There's more...

5. Processing Business Tasks

Introduction

Using a segmented entry control

How to do it...

How it works...

There's more...

See also

Creating a general journal

How to do it...

How it works...

There's more

See also

Posting a general journal

How to do it...

How it works...

See also

Processing a project journal

How to do it...

How it works...

There's more...

Creating and posting a ledger voucher

How to do it...

How it works...

See also

Changing an automatic transaction text

Getting ready

How to do it...

How it works...

There's more...

Creating a purchase order

How to do it...

How it works...

See also

Posting a purchase order

How to do it...

How it works...

There's more...

Creating a sales order

How to do it...

How it works...

See also

Posting a sales order

How to do it...

How it works...

There's more...

Creating an electronic payment format

How to do it...

How it works...

6. Integration with Microsoft Office

Introduction

Creating an Excel file

How to do it...

How it works...

Reading an Excel file

How to do it...

How it works...

Creating a Word document from a template

Getting ready

How to do it...

How it works...

Creating a Word document with repeating elements

Getting ready

How to do it...

How it works...

Creating a Microsoft Project file

Getting ready

How to do it...

How it works...

Sending an e-mail using Outlook

Getting ready

How to do it...

How it works...

7. Using Services

Introduction

Consuming the system query service

How to do it...

How it works...

Consuming the system metadata service

How to do it...

How it works...

Consuming an existing document service

How to do it...

How it works...

There's more

Creating a document service

How to do it...

How it works...

Consuming a document service

How to do it...

How it works...

See also

Using an enhanced document service

How to do it...

How it works...

See also

Creating a custom service

How to do it...

How it works...

See also

Consuming a custom service

How to do it...

How it works...

See also

Consuming an external service

How to do it...

How it works...

See also

8. Improving Development Efficiency

Introduction

Creating an editor template

How to do it...

How it works...

Modifying the Tools menu

How to do it...

How it works...

Modifying the right-click context menu

How to do it...

How it works...

Searching for an object in a development project

How to do it...

How it works...

See also

Modifying the Personalization form

How to do it...

How it works...

Modifying the application version

How to do it...

How it works...

9. Improving Dynamics AX Performance

Introduction

Calculating code execution time

How to do it...

How it works...

There's more...

Writing efficient SQL statements

How to do it...

How it works...

Caching a display method

How to do it...

How it works...

Using Dynamics AX Trace Parser

How to do it...

How it works...

See also

Using SQL Server Database Engine Tuning Advisor

How to do it...

How it works...

See also

Index

累计评论(0条) 1个书友正在讨论这本书 发表评论

发表评论

发表评论,分享你的想法吧!

买过这本书的人还买过

读了这本书的人还在读

回顶部