Skip to main content

Notifications

SQL Scripts for Microsoft Dynamics GP: Payment Run Apply Query

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 was written to return documents included in the selected payment batch (entered in the highlighted parameter) along with the apply information.

/*
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). */
DECLARE @BACHNUMB VARCHAR(15) = 'COMPUTER CHECKS'

SELECT
['Payables Document Types'].DOCTYNAM
,['PM Creditor Master'].VENDNAME
,['PM Transactions'].*
,['PM Payment Apply'].*
FROM
(
SELECT
BACHNUMB
,VCHRNMBR
,VENDORID
,DOCDATE AS PYMTDOCDATE
,CHEKBKID
,PSTGDATE
FROM
PM10300 AS ['PM Payment Work'] --PM Payment WORK (PM10300) UNION ALL
SELECT
BACHNUMB
,VCHRNMBR
,VENDORID
,DOCDATE AS PYMTDOCDATE
,CHEKBKID
,PSTGDATE
FROM
PM30200 --PM Paid Transaction History File (PM30200) WHERE
DOCTYPE = 6
) AS ['PM Transactions'] INNER JOIN
(
SELECT
DOCTYPE
,PMNTNMBR
,APFVCHNM
,DOCDATE
,CASE WHEN DOCTYPE >= 3 THEN
DOCAMNT * -1
ELSE
DOCAMNT
END AS DOCAMNT
,CASE WHEN DOCTYPE >= 3 THEN
0
ELSE
AMNTPAID
END AS AMNTPAID
,Net_Paid_Amount
FROM
PM10201 AS PM --PM Payment Apply To Work File (PM10201) ) AS ['PM Payment Apply'] ON
['PM Payment Apply'].PMNTNMBR = ['PM Transactions'].VCHRNMBR
INNER JOIN
PM40102 AS ['Payables Document Types'] --Payables Document Types (PM40102) ON
['Payables Document Types'].DOCTYPE = ['PM Payment Apply'].DOCTYPE
INNER JOIN
PM00200 AS ['PM Creditor Master'] --PM Vendor Master File (PM00200) ON
['PM Creditor Master'].VENDORID = ['PM Transactions'].VENDORID
WHERE
['PM Transactions'].BACHNUMB = @BACHNUMB
ORDER BY
['PM Payment Apply'].APFVCHNM

Click to show/hide the SQL Scripts for Microsoft Dynamics GP Series Index

SQL Scripts for Microsoft Dynamics GP
Sales Transactions (Work) Against a Specific Site
Update Site Descriptions From CSV
Select All Primary Keys and Generate ALTER Script
Export Open/History PM Transactions After a Specified Date
Migrate Vendor Emails from Active Docs to Standard Email Fields
Update Inventory Accounts from Item Class
Update Accounts Payable Distribution on Work Status PM Transactions from Posting Account Setup
Update Inventory Distribution on Work Status Purchase Orders from the Item Card
Update Accrued Purchases Distribution on History Receipts from Posting Account Setup
Insert National Accounts from CSV
Import Site Bins From CSV
Update Accounts and Distributions on Work Status Sales Transactions from Item Card, Tax Details or Posting Account Setup
Assign All Items to All Site Bins
SQL Trogger on PO invoice Insert to Change GL posted Date
PO Receipt History View
Workflow Assignment Review
Sales Invoice Query
Assembly Transaction Quantities Required
Generate Standard Cost Update Macro from Text File Import
Validate and Insert/Update Vendor Emails from a Text File
Update Min Order Qty and Average Lead Time on Vendor Item From Text File
Update Mfg Cost Accounts from Mfg Item Class Setup
Create Macro to Delete Items
Update Item Resource Planning on Item Quantity Master from Text File
Update Item Engineering File from a Text File
Insert Mfg BOMs from Text File
Insert Manufacturing Routings from Text File
Return Top Level BOM for Manufacturing Orders
Simple RMA Audit
Allow Workflow Originator to be an Approver
Change Web Service URi
Prefix Companies Names with System Designator
Purchased Items With Serial Numbers and Linked Sales Transactions
Script to Set Transactions as Included on VAT Daybook Return
Get Alpha Characters from an Alphanumeric String
Get Numeric Characters from an Alphanumeric String
Select Next Temporary Creditor ID
Compare Ship To Address on Work Sales Trx Against Customer
Update Ship To Name on Work Sales Transactions to Match the Customer Name
Table Function to Split String on Delimiter
Payment Run Apply Query
Update Item Replenishment Method for Manufacturing

Read original post SQL Scripts for Microsoft Dynamics GP: Payment Run Apply Query at azurecurve|Ramblings of an IT Professional


This was originally posted here.

Comments

*This post is locked for comments