Solved

Supplier expiry date list

  • 18 August 2022
  • 2 replies
  • 188 views

Userlevel 4
Badge +8

Hi community,

 

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

 

suggest, please , Thank you 

icon

Best answer by ShawnBerk 19 August 2022, 00:03

View original

2 replies

Userlevel 7
Badge +28

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)

Userlevel 2
Badge +5

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

 

 

Reply