RE: AP Aging variance to general ledger
Hi Tim,
I would suppose that someone removed the Pre-pay Nbr field from your Voucher and Adjustment Entry screen.
Several changes were made to the reports in how they handle the display of pre-payments. Most likely some database fields for these pre-pays and the items (checks & vouchers) linked to the pre-pays are not set correctly.
The statement below should return two rows from APdoc table. Pick the refnbr of a PP document that is currently showing in your aged report. In all statements, substitute the X's with your refnbr of the PP.
Select * from apdoc where prepay_refnbr = 'xxxxxx'
The two rows returned would be one for the pre-payment and the other row should be the voucher that the PP was applied to.
Select * from apadjust where adjdrefnbr = 'xxxxxx'
In the above statement, the ADJAMT field should contain 0 (zero) if the PP is fully applied to a voucher.
To see if it is fully applied, note the check number (adjgrefnbr) that paid the PP from the above statement and try this statement. Substitute the y's for the check number.
Select * from apadjust where adjgrefnbr = 'yyyyyy'
Let's start there and see what you find.
You could also create a support case as this is a bit difficult to support in this forum.