Book Image

Microsoft Dynamics NAV 2013 Application Design - Second Edition

By : Marije Brummel
Book Image

Microsoft Dynamics NAV 2013 Application Design - Second Edition

By: Marije Brummel

Overview of this book

This book is a focused tutorial on Microsoft Dynamics NAV application development to help you develop complete applications and not just application outlines. This hands-on guide starts off by introducing the supply chain that you will be using throughout the book. You will then implement the Microsoft Dynamics NAV ERP suite and learn to set it up and customize it for various industries. You will learn how to customize Dynamics NAV to suit the different aspects of a business such as financial management, relationship management, production, jobs, trade, storage, logistics, and so on. The book will take you through these Microsoft-designed application features and show you how to customize and extend them safely. Therefore, by the end of this book, you will be able to create a structure of your own in Microsoft Dynamics NAV.
Table of Contents (12 chapters)

Changing jobs

In this chapter, we have used some changes to the Job functionality in order to make it work for CRONUS International Ltd. to sell Microsoft Dynamics NAV.

Quantity budgeting

For some companies, it is very important to know the total number of hours required for a job and the number of hours used rather than the exact amounts.

For this, we have created new flow fields in the Job Task table:

The flow field definition is quite special.

Sum("Job Planning Line"."Quantity (Base)"

WHERE (Job No. = FIELD(Job No.),

Job Task No. = FIELD(Job Task No.),

Job Task No. = FIELD(FILTER(Totaling)),

Contract Line = CONST(Yes),

Planning Date = FIELD(Planning Date Filter)))

The Totaling field is for the lines of type End-Total. The ValueIsFilter property ensures that the field will be interpreted as a filter instead of a value.

The result is visible in the Job Task page (1002).

Result...