/
Database view containing one time vendor address

Database view containing one time vendor address





Description of Issue

Need database view containing one time vendor address



Context
  • EERP all versions

  • SSRS reports

  • Crystal reports

  • SaaS clients

  • OnPrem clients

  • One time vendor

  • Accounts Payable



Cause

Need to retrieve address of one time vendor for building custom reports



Resolution

One time vendor address is available through TRS view ap_otp_vendor_address in the following columns:

  • ir_address1

  • ir_address2

  • ir_city

  • ir_state

  • ir_zip

  • ir_country



Additional Information

Refer to the sample query below to retrieve all One-time vendors and their addresses.


SELECT V.a_vendor_number, V.a_invoice_number, V.ir_name, V.ir_address1, V.ir_address2, V.ir_city, V.ir_state, V.ir_zip, V.ir_country FROM ap_checks as C LEFT OUTER JOIN ap_otp_vendor_address AS V ON C.a_vendor_number = V.a_vendor_number AND C.a_invoice_number = V.a_invoice_number WHERE C.vn_vend_status = 'O'












Related content

Database views containing one time vendor names and their invoices
Database views containing one time vendor names and their invoices
More like this
Database view containing P-Card Invoice vendor name
Database view containing P-Card Invoice vendor name
More like this
Database view to get remit address on an invoice
Database view to get remit address on an invoice
More like this
Database view to obtain certificate information of all Accounts Payable vendors
Database view to obtain certificate information of all Accounts Payable vendors
More like this
Database view to tie AP invoices to purchase order line numbers
Database view to tie AP invoices to purchase order line numbers
More like this
Database view containing vendor user defined fields and their values
Database view containing vendor user defined fields and their values
More like this