Book Image

Microsoft Dynamics GP 2016 Cookbook

By : Mark Polino, Ian Grieve
Book Image

Microsoft Dynamics GP 2016 Cookbook

By: Mark Polino, Ian Grieve

Overview of this book

The latest release of Dynamics GP 2016 offers a powerful, adaptable, and cloud enabled enterprise accounting software solution. The new version has experienced changes in serviced-based architecture, workflow, existing functionalities, and the introduction of plenty of new features. This book will help you get the most out of Dynamics GP quickly and effectively. This book picks up where implementation training leaves off. Whether you are new or experienced, you will find useful recipes to improve the way you use and work with Dynamics GP. The book starts with recipes designed to enhance the usefulness of Microsoft Dynamics GP by personalizing the look and feel of the application. Most of the recipes are designed to give you tips for a typical installation of Dynamics GP, including core financials and distribution modules. The book then moves through recipes that include automating Dynamics GP to allow users or administrators to focus on value adding tasks, connecting Dynamics GP to Microsoft Office, exposing hidden features in Dynamics GP, PowerBI, and much more!
Table of Contents (20 chapters)
Microsoft Dynamics GP 2016 Cookbook
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Creating a new SmartList from a SQL View


In the Creating a new SmartList recipe, we created a new SmartList object using GP tables. SmartList Designer also allows SmartLists to be created from SQL Views, which allows for more flexibility in how SmartList Designers work.

One example of this, and one used by many of my clients, are SmartLists that report on the security configuration; these were created as SQL Views to make them easy to transfer between systems.

Getting ready

Before the SmartList can be created, the SQL View needs to be loaded into the relevant database; for security data, this is the system database (typically called DYNAMICS), but for many SmartLists, the SQL View will need to be loaded into all company databases.

The security-related SQL View (uv_AZRCRV_UserAccessAndGrantedSecurityViews) that we will use in this recipe is the User Access and Granted Security Roles, http://azrcrv.co.uk/y7xXlZ

Download the view and load it into SQL Server in the system database, making sure the...