We had been using stop dates for our products but have recently stopped using them. Is there a sql command that I can run to remove all of the stop dates for products entered? Changing them individually is taking forever.
We had been using stop dates for our products but have recently stopped using them. Is there a sql command that I can run to remove all of the stop dates for products entered? Changing them individually is taking forever.
You can run this sql command to accomplish what your after, though I would highly recommend making a backup of the db before doing any direct table edits.
update Product set AvailableStopDate = NULL where AvailableStopDate IS NOT NULL
Thanks John, that was soooo much easier!
Your very welcome.
Question 2: AvailableStopDate
Instead of the SQL command to "Null" how could a statement be formed that instead displays/reports the items that have reached their respective AvailableStopDate?
A custom report, or perhaps output to a topics page by modifying an XML file? WSI output?
The problem is some products are phantoms where the Stop Date was never set? In fact, no product is set to stop.
V 7.0.2.5