RE: Deactivate Financial Accounts w/o activity for a period time.
Hi Michael,
You can use SQL scripting to perform this function en masse if you want to avoid the manual window update.
However, as all SQL work would be at your complete discretion, please insure you have a good backup of the company db before doing so.
Example SQL scripting that would perform this function as of '06/01/2018' would be:
UPDATE GL00100
SET ACTIVE = 0
WHERE ACTINDX NOT IN (SELECT ACTINDX
FROM GL20000
WHERE DOCDATE > '06/01/2015'
AND SOURCDOC <> 'BBF') -- Open Year Entries
AND ACTINDX NOT IN (SELECT ACTINDX
FROM GL30000
WHERE DOCDATE > '06/01/2015'
AND SOURCDOC <> 'BBF') -- Historical Year Entries
Once inactive the user would need to manually activate the account before it can be used on a new entry.
Best Regards,
Jeff