RE: Old paid off invoice not moving to historical
Hi,
I've had a similar issue in the past and I'm sure it was related to the POSTED value in the RM20201 (apply table) being set to 0. I changed this to 1 and re-ran the paid transaction removal routine and the transaction went to history. In your example you can check this by running the following SELECT statement in SQL. (the POSTED column will show at the beginning of the results set)
SELECT POSTED, * FROM RM20201 WHERE APTODCNM='INV016292'
If it is 0 you could try changing this by running the following:
UPDATE RM20201 SET POSTED=1 WHERE APTODCNM='INV016292'
**Always ensure you have a full backup of your data before running an SQL update.
Once this has been done try running paid transaction removal again.
I hope this helps.
Thanks
Gavin