How Can I Get a List of New Vendors Set Up Since a Certain Date?

How Can I Get a List of New Vendors Set Up Since a Certain Date?

Q: Is there a table within Elliot that will show when a new vendor was set up in the system? We have a request from our corporate office to provide a list of all new vendors set up in 2014. I was hoping there is a table with a field that contains this information so I can run a query from the tables.
A: Yes, there is a table for this purpose. It is APVENADT (A/P Vendor Audit Trail). You can use the following sample SQL statement to retrieve the data you need:
SELECT * FROM APVENADT WHERE v_aud_date >= 20140101 and v_aud_action = 'A'
You can also go into Elliott, A/P -> Reports -> Vendor Audit Trail Report, and pick the proper range. The Vendor Audit Trail Report will result in showing both Add and Change records, so if you know how to access the data in the APVENADT table through ODBC directly, it might suit your needs better. It's possible that your Vendor Audit Trail feature is not turned on.  In that case, you will need to go to A/P -> Util-Setup -> A/P Setup, and change the following flag to ""Y"":
    17. Keep Vendor File Audit Trail ?
This won't retroactively create the vendor audit trail record for you.  But in the future, as a vendor is added or changed, an audit trail record will be written to APVENADT for future reporting.



    • Related Articles

    • What Is the Impact of Purging Inactive Vendors in Accounts Payable?

      Release Date: 8/9/2017 Q - Our accounting manager wants to purge certain vendors out of Elliott based on a list of criteria. He wants to archive the information to another company in case they have to reference it again. What are the ramifications of ...
    • Elliott V7.4 Release Notes: What's New Since Elliott V7.3

      What’s New Since Elliott V7.3 Use ATP as MRP The ATP (Available to Promise) feature has been in Elliott since V6.7. Initially, ATP only supported parent items and was mainly used by importers to view scheduled sales orders and purchase orders ...
    • Elliott V7.5 Release Notes: What's New Since Elliott V7.4

      What’s New Since Elliott V7.4 Elliott 7.5 Overview Netcellent has rewritten all the legacy manufacturing modules for Elliott V7.5 and consolidated them into the BOMP module. It simplifies manufacturing data collection while providing powerful ...
    • I Am Unable to Post or Enter a Date for the New Year

      Q - Starting from the new year, we are not able to process transaction in certain areas through out Elliott. For example, if I go to COP and try to print an invoice with invoice date in the new year, system complains: Error: Trx Date Outside Date ...
    • How to Run Inventory Stock Status Report for a Certain Date

      Release Date: 8/1/2017 Q - I am trying to run an inventory report by location as of 10/31/16. I know that the Stock Status is a live report generally, so I am not sure how I would do this. Is there a way? A - Generally speaking, there are three ...