Interesting Findings & Knowledge Sharing » Dynamics

Archive for the ‘Dynamics’ Category

Restricting Dimension Codes to Specific Account Numbers

Hi all In this article, I am going to explain yet another functionality in Analytical Accounting, where we can restrict a dimension code to a specific account number (or) a specific range of accounts. When a dimension code is created, we need to grant access to the dimension codes to specific users who can use [...]

June 20, 2011 · veeyeskay · 2 Comments
Tags: , , , ,  Â· Posted in: Analytical Accounting, Dynamics, Great Plains Total Views: 218

SQL Script for Budgets vs. Actuals in Amounts in Analytical Accounting – By Budget Tree Node

Hi all This script is in continuation to the previous article where I had posted a script for Budgets vs. Actuals in Amounts in Analytical Accounting – By Dimension Code. This script is for viewing Budgets vs. Actuals (for amounts) at Budget Tree Node level. IF EXISTS ( SELECT * FROM sys.objects WHERE object_id = [...]

June 16, 2011 · veeyeskay · One Comment
Tags: , , ,  Â· Posted in: Analytical Accounting, Dynamics, Great Plains, SQL Server, SQL Server 2005, SQL Server 2008 Total Views: 177

SQL Script for Budgets vs. Actuals in Amounts in Analytical Accounting – By Dimension Code

Hi all Today, I am posting a script for analyzing Budgets vs. Actuals (using Amounts) in Analytical Accounting. However, there are two methods of analyzing the budget information in Analytical Accounting. They are: Node Level Dimension Code Level This script is for viewing Budgets vs. Actuals at Dimension Code level. I will be posting the [...]

June 16, 2011 · veeyeskay · 5 Comments
Tags: , ,  Â· Posted in: Analytical Accounting, Dynamics, Great Plains, SQL Server, SQL Server 2005, SQL Server 2008 Total Views: 629

Analytical Accounting Information Flow from Purchase Order to Receipts

Hi all This article is to explain how Analytical Accounting (AA) information is transferred from Purchase Orders to Receiving Transaction Entry. The scenario explained below is on an environment where there is one transaction dimension configured in Analytical Accounting. Create a Purchase Order with 2 line items as explained below. PO Number Line Seq. No [...]

June 2, 2011 · veeyeskay · One Comment
Tags: , , ,  Â· Posted in: Analytical Accounting, Dynamics, Great Plains, Purchase Order Processing Total Views: 310

SQL Script for POP Receiving Transactions with AA Information

Hi all My last post had a script for Purchase Orders with AA information. Today, I am posting a script for the following POP transactions with AA information. Shipments Shipment/Invoice Invoice IF EXISTS ( SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N’[dbo].[vw_POPRcptInformation]‘) ) DROP VIEW [dbo].[vw_POPRcptInformation] GO   S Read the rest of this entry

May 20, 2011 · veeyeskay · 3 Comments
Tags: , ,  Â· Posted in: Analytical Accounting, Dynamics, Great Plains, Purchase Order Processing, SQL Server, SQL Server 2005, SQL Server 2008 Total Views: 237

Dynamics GP Technical Database Guides – GP 10

Hi all In this article, I have posted the link of a detailed database reference guide for Microsoft Dynamics GP 10. I have posted the link to the guide for the system database (DYNAMICS) and the sample company (TWO) database.   This guide provides detailed specifications of the various tables, views and stored procedures present in [...]

May 18, 2011 · veeyeskay · 2 Comments
Tags: , ,  Â· Posted in: Documentation, Dynamics, Great Plains, SQL Server, SQL Server 2005 Total Views: 230

Table Structure Definitions – Fiscal Period Setup

Hi all This is the second article that I have decided to post in the table structure definition series. This time, I am going to explain the table structure of the Fiscal Period Setup (SY40100) table in Dynamics GP. The structure of the table is as follows: Column Name SQL Column Name Data Type Length [...]

May 17, 2011 · veeyeskay · 3 Comments
Tags: , ,  Â· Posted in: Dynamics, Fiscal Periods, Great Plains, SQL Server, SQL Server 2005, SQL Server 2008 Total Views: 351

Updated SQL Script for fixing Primary Key Errors in Analytical Accounting

Hi all I had posted an article in my blog some time back which updates the indexes in the AAG00102 table to fix the primary keys in analytical accounting. This article can be viewed here. Even though that was useful to update the account indexes in all companies at once to synchronize it, it does [...]

May 15, 2011 · veeyeskay · 5 Comments
Tags: ,  Â· Posted in: Analytical Accounting, Dynamics, Great Plains, SQL Server, SQL Server 2005, SQL Server 2008 Total Views: 432

SQL View for Purchase Order Details with AA Information

Hi all Based on a request from a community user on my blog, I have decided to post these SQL Views for fetching the purchase order information with analytical accounting information. IF EXISTS ( SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N’[dbo].[vw_POInformation]‘) ) DROP VIEW [dbo].[vw_POInformation]   GO SET ANSI_NULLS ON GO SET QU Read [...]

May 9, 2011 · veeyeskay · One Comment
Tags: , , ,  Â· Posted in: Analytical Accounting, Dynamics, Great Plains, Purchase Order Processing, SQL Server, SQL Server 2005, SQL Server 2008 Total Views: 301

Understanding Voucher Numbers in Receivables & Payables

All of us know that the document number field in the Receivables Transaction Entry and the voucher number field in the Payables Transaction Entry has a maximum of 20 characters. However, on the transaction entry windows, these fields ONLY allow us to enter 17 characters. But the actual table field allows 20 characters. So where [...]

May 8, 2011 · veeyeskay · One Comment
Tags: , ,  Â· Posted in: Accounts Payables, Accounts Receivables, Dynamics, Great Plains Total Views: 387