This 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