SQL Scripts for Microsoft Dynamics GP: Update Accounts Receivables Distribution on Work Status RM Transactions from Posting Account Setup

Microsoft Dynamics GPThis script is part of the SQL Scripts for Microsoft Dynamics GP where I will be posted the scripts I wrote against Microsoft Dynamics GP over the 19 years before I stopped working with Dynamics GP.

This script updates the Accounts Receivables distribution on work status receivables transactions from the Posting Account Master (SY01100) table.

/*
Created by Ian Grieve of azurecurve | Ramblings of an IT Professional (http://www.azurecurve.co.uk) This code is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0 Int). */
UPDATE ['RM Distribution Work File'] SET DSTINDX = ACTINDX FROM RM10101 AS ['RM Distribution Work File'] --RM Distribution Work File (RM10101) INNER JOIN SY01100 AS ['Posting Account Master'] --Posting Account Master (SY01100) ON ['Posting Account Master'].SERIES = 3 AND ['Posting Account Master'].PTGACDSC = 'Accounts Receivables' WHERE DISTTYPE = 3 -- ACCOUNTS RECEIVABLES

Microsoft Excel Column Headers Showing as Numbers Instead of Letters

Microsoft OfficeI had a strange occurrence recently with Microsoft Excel where the column headers changed from letters to numbers. I’d didn’t notice initially, but it was when I was working with a formula that I realised it wasn’t putting letters in the cells but an odd numbering style.

When I looked into why I discovered the column headers were numbers:

Column headers in Excel showing as numbers

Continue reading “Microsoft Excel Column Headers Showing as Numbers Instead of Letters”