Skip to main content
Solved

Supplier expiry date list

  • August 18, 2022
  • 2 replies
  • 298 views

Forum|alt.badge.img+8

Hi community,

 

How to get the report or the list of the suppliers who have passed their expiry dates? 

 

suggest, please , Thank you 

Best answer by ShawnBerk

If you just want the list without the date or creating a report, you can do an Advance SQL search on Suppliers like this.

 

If you need the date and want this in a downloadable report, then you would need the SQL Query Tool or a Quick Report setup like this.

 

select si.supplier_id, si.name, si.country, iii.expire_date from [YOURIFSINSTANCE].supplier_info si

INNER JOIN [YOURIFSINSTANCE].identity_invoice_info iii ON

si.supplier_id = iii.supplier_id

WHERE iii.expire_date < trunc(SYSDATE)

2 replies

Forum|alt.badge.img+28
  • Superhero (Customer)
  • Answer
  • August 18, 2022

If you just want the list without the date or creating a report, you can do an Advance SQL search on Suppliers like this.

 

If you need the date and want this in a downloadable report, then you would need the SQL Query Tool or a Quick Report setup like this.

 

select si.supplier_id, si.name, si.country, iii.expire_date from [YOURIFSINSTANCE].supplier_info si

INNER JOIN [YOURIFSINSTANCE].identity_invoice_info iii ON

si.supplier_id = iii.supplier_id

WHERE iii.expire_date < trunc(SYSDATE)


Forum|alt.badge.img+8
  • Sidekick (Employee)
  • July 17, 2023

There is an Inactive Date under the Supplier - Invoice / General tabs

If an Expiration date has been entered under the Supplier - Purchase / Misc Supplier Info tab - you can see this in the Suppliers - Purchase Specific Information screen