Close Window

How to:
resolve when a sku is locked in the Put system with "SKU LOCD" message.
Skill required to complete this article: Software ~ Order Fulfillment Put-To-Light and level is No Skill Level Association.

1. Access the database by typing dbaccess $DB_SQL -.

2. Navigate to the carton ex:   select * from carton where ship_label_id ="060199800040797278";

3. Use the ton number to find the orderl entries.

> select q_ordered,q_picked,in_use,status from orderl where ton ="101369950";

 

 

  q_ordered    q_picked      in_use      status

 

          1           1           0          17

          1           0      236403           0

          1           1           0          17

          1           1           0          17

          1           1           0          17

          1           1           0          17

          1           1           0          17

          1           1           0          17

 

8 row(s) retrieved.

4. The pick is locked by a GUI user id 236403. Use the sku_code to find if any how many picks are locked with this Gui id. 

 

>select unique in_use,count(*) from orderl where sku_code ="661395702060199800040797278" group by in_use;

 

 

     in_use       (count(*))

 

          0                7

     236403                1

 

2 row(s) retrieved.

 

5. Update the in_use field to 0.

> update orderl set in_use =0 where in_use ="236403" and ton ="101369950";

 

1 row(s) updated.

 

> select q_ordered,q_picked,in_use,status from orderl where ton ="101369950";

 

 

  q_ordered    q_picked      in_use      status

 

          1           1           0          17

          1           0           0           0

          1           1           0          17

          1           1           0          17

          1           1           0          17

          1           1           0          17

          1           1           0          17

          1           1           0          17

 

8 row(s) retrieved.

 

6. Have the site try to fill it. 

 Related Articles
No Related Articles Available.
 Article Info
 Article ID:  KB-11749
 Published on  6/24/2023
 Last Modified on  6/22/2023
 Last Modified by  Christopher Ferguson
 Original URL:  https://dashboard.intelligrated.com//Knowledgebase/Article.aspx?article=f95383d8-2ab3-45b5-a862-0ddddcda6a93
Close Window