Re: New Inventory wizard tasks
I don't think there is any specific wizard to update "item available on website".
Be very careful when running sql statements. Always have a database backup before you run any sql. The following code will do. The first is by department, the second by category. webitem=1 is to set the item to available on website. 0 is not available.
Run the select statement first to be sure that the correct records are affected.
select itemlookupcode,description from item where departmentid = (select id from department where name = 'Dept Name')
update item set webitem=1 where departmentid = (select id from department where name = 'Dept Name')
select itemlookupcode,description from item where categoryid = (select id from category where name = 'Category Name')
update item set webitem=1 where categoryid = (select id from category where name = 'Category Name')
Thank you. TimB