May 2012
M T W T F S S
« Apr    
 123456
78910111213
14151617181920
21222324252627
28293031  

Recent Posts

Archives

Yearly Archives: 2010

Dynamics GP ISV Product Reviews at GPWindow.com

We are starting the GP ISV Product review series at www.GPWindow.com . With research inputs from Chetna and implementation inputs from Tina and Rubal - I think there will be content that will be of use to both GP Users and GP Consultants Continue reading

GP2010 – Sales Charts & KPIs – Top Items By Sale Amount – Stored Procedure Bug

I stumbled across a bug (of sorts) in GP2010 SSRS Charts & KPIs for Sales Module. GP2010 has got default Charts & KPIs designed in SSRS and we have quite hands full of Charts & KPIs which covers most of our basic requirements. Continue reading

Integration Manager and Analytical Accounting

If you in the trenches with Analytical Accounting and considering the use of Integration Manager, check out these two posts Using Integration Manager with Analytical Accounting by David Musgrave When you use Integration Manager on a system with Analytical Accounting (AA) installed, integrations often fail because Analytical Accounting will open windows which are unhandled by Integration Manager. Continue reading

SmartView Available from Today.

One of the primary things that mid market companies look for in an ERP system is better and faster access to data. One of the most loved features of Microsoft Dynamics GP is SmartList and SmartList Builder - and that is because it provides an extremely simple interface to access all the data captured within your ERP system Continue reading

GL Reconciliation SQL Script – Payables

Hi all

This script can be used as a base to reconcile the receivables sub-ledger balances as of a certain date.

DECLARE @ASOFDATE AS DATETIME
 
SET @ASOFDATE = '2017-04-12'
 
SELECT  Z.*
FROM    ( SELECT    A.[… Continue reading 

GL Reconciliation SQL Script – Receivables

Hi all

This script can be used as a base to reconcile the receivables sub-ledger balances as of a certain date.

DECLARE @ASOFDATE AS DATETIME
 
SET @ASOFDATE = '2017-04-12'
 
SELECT  Z.*
FROM    ( SELECT    A.[… Continue reading 

Receivables HATB Report (using GL Posting Date)

Hi all

I had posted the script for the Receivables HATB using document date logic in my earlier post.

Today, I have decided to post this script which is generated by picking transactions based on the GL posting date.… Continue reading