Skip to main content
Question

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

  • March 7, 2022
  • 1 reply
  • 98 views

Forum|alt.badge.img+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 replies.

1 reply

Leif Peterson
Do Gooder (Employee)
Forum|alt.badge.img+4
  • Do Gooder (Employee)
  • 11 replies
  • March 28, 2022

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