Hello,
When we are temporarily sold out of a product, we will hide it.
Is there anyway we can run a report to see which items are hidden? Its very hard to keep track of them otherwise.
Many thanks
Hello,
When we are temporarily sold out of a product, we will hide it.
Is there anyway we can run a report to see which items are hidden? Its very hard to keep track of them otherwise.
Many thanks
Sure, you can run these scripts to view the hidden products and variants:
You can use the Custom Report and use each script as value for the SQLCommand parameter.Code:select * from Product where Published = 0 select * from ProductVariant where Published = 0
Last edited by Jao; 10-22-2009 at 07:31 AM.