Book Image

Building ERP Solutions with Microsoft Dynamics NAV

By : Stefano Demiliani
Book Image

Building ERP Solutions with Microsoft Dynamics NAV

By: Stefano Demiliani

Overview of this book

Implementing Microsoft Dynamics NAV in the real world often requires you to integrate the ERP with external applications or solve complex architectural tasks in order to have a final successful project. This book will show you how to extend a Microsoft Dynamics NAV installation to the enterprise world in a practical way. The book starts with an introduction to Microsoft Dynamics NAV architecture and then moves on to advanced topics related to implementing real-world solutions based on NAV and external applications. You will learn how an enterprise distributed architecture with NAV at the core can be implemented. Through a series of real-world cases on every topic and every industry (sales, retail, manufacturing, distribution, healthcare, and so on), you’ll see step by step how to efficiently solve a technical problem. These common problems encountered in a NAV implementation will be solved using the entire technology stack that Microsoft offers. By the end of the book, you will have the knowledge to efficiently solve certain scenarios, you will know which is the best solution architecture to propose to a customer and how to implement it.
Table of Contents (17 chapters)
Building ERP Solutions with Microsoft Dynamics NAV
Credits
About the Author
About the Reviewer
www.PacktPub.com
Customer Feedback
Preface

Azure Scheduler


Azure Scheduler is a cloud service that permits you to describe, schedule, and run tasks in the cloud automatically. Azure Scheduler does not host workloads or run any code but it schedules jobs (the code is hosted elsewhere).

Azure Scheduler is useful for handling recurring tasks in the cloud and you can manage tasks via the Azure Portal or programmatically by using .NET, PowerShell, or REST APIs.

Let's see how Azure Schedular works by performing the following steps:

  1. To create a job in Azure Scheduler via the Azure Portal, navigate to New | Monitoring + management | Scheduler:

  2. Then click Create.

  3. Now in the Scheduler Job window, you can create a job by entering the job name, on which Azure subscription the job must be created, and on which Job Collection it must be added (you can create a new one if one doesn't exist).

  4. When the job is created, in the Action settings window you can define the scheduler action. Here you can select three Action types (Http, Https, and Storage Queue...