Question

Availability of a report showing all the stock items which didn’t move during a specific period?

  • 7 March 2022
  • 1 reply
  • 74 views

Userlevel 3
Badge +6

Is there a way I can generate a report showing all the stock items which didn’t move last year? or what is the easiest way to achieve this result?

 


This topic has been closed for comments

1 reply

Userlevel 2
Badge +4

The easiest way would be to create a Quick Report that selects stock records that have a last_activity_date which is earlier than 365 days ago. Something like this:

select <the columns that you want to display>
from inventory_part_in_stock
where last_ACTIVITY_DATE < SYSDATE - 365