Blank Tote Label in Shipping

Blank Tote Label in Shipping

— code to fix a blank tote in shipping caused by scanning error
— run this script to idenifty the blank tote


select
* from TOTEDETL

where totlabel = ‘ ‘

 — code to fix a blank tote in shipping caused by scanning error

— run this script to update the tote with the original tote number

update TOTEDETL

set TOTLABEL =‘original label #’

where totlabel = ‘ ‘