wsh_delivery_details.RELEASED_STATUS(Pick Release Status)

Below post will give you the details about the pick release status
Instance: 11i or R12
Table: WSH_DELIVERY_DETAILS
Column: RELEASED_STATUS
Possible Values:
B: Backordered- Line failed to be allocated in Inventory
C: Shipped -Line has been shipped
D: Cancelled -Line is Cancelled
N: Not Ready for Release -Line is not ready to be released
R: Ready to Release: Line is ready to be released
S: Released to Warehouse: Line has been released to Inventory for processing
X: Not Applicable- Line is not applicable for Pick Release
Y: Staged- Line has been picked and staged by Inventory
Delivery line statuses in detail
 Not Applicable (Code X)  
The delivery line can be invoiced but non-shippable, for example, a service line or a warranty line.
Not Ready for Release (Code N)
 The delivery line is not eligible for pick release. This happens when the order line is manually imported into Oracle Shipping Execution using the Import Delivery Line concurrent process or the corresponding order line has not reached the Awaiting Shipping workflow activity.
Ready for Release (Code R)
 The delivery line is eligible for pick release. Occurs when the order line has reached the Awaiting Shipping workflow activity (it is booked, scheduled, and in Oracle Shipping Execution).
Submitted to Warehouse (Code S)
Pick release has processed the delivery line and has:
1.       Created move order headers and lines.
2.       Found available quantity and created inventory allocations.
3.       Not pick confirmed. If you are using auto-pick confirm, it changes release status to Staged. If you are not using auto-pick confirm and want to progress the delivery lines, navigate to Oracle Inventory Move Order Transaction window and perform manual pick confirm.
Staged (Code Y)
 The delivery line is pick confirmed; inventory is transferred from storage sub-inventory to staging sub-inventory.  It remains staged until ship confirm.
 Backordered (Code B)
Some of the circumstances that can causes this status are listed below
Ø Pick release has processed the delivery line and cannot find the entire quantity. This typically occurs when the Oracle Inventory indicates that there is not enough material (either because there is not enough material or because the inventory balance is incorrect).  
Ø At ship confirm, you: Enter Shipped Quantity that is less than Original Requested Quantity Backorder the entire delivery quantity transfer a reservation to cycle count.
Ø This typically occurs when the material that you want to ship:
1.       Has become unavailable, for example, damaged, between picking and shipping.
2.       Is available and you backorder material for specific business reasons. For example, all available material has been allocated to a specific customer when you find out additional supply for other orders will be delayed.
 Shipped (Code C)
 The delivery line’s delivery is ship confirmed and posted as in-transit, OM Interface and Inventory Interface have processed, and the trip is closed.
 Cancelled (Code D)
 The order line that the delivery line supports is cancelled.

在wsh_delivery_details中有以下栏位,
RELEASED_STATUS NULL VARCHAR2(1) Pick Release Status;
在我们公司里这个栏位有以下值:B,C,D,R,X,Y;
我只知道Y是Pick Release成功!
各位知道其他都是什么意思吗?谢谢......

给个脚本自己去查吧,

SELECT lookup_type, lookup_code, meaning, description,
       DECODE (view_application_id,
               660, 'ONT',
               665, 'WSH',
               201, 'PO',
               401, 'INV',
               200, 'AP',
               222, 'AR',
               101, 'GL',
               661, 'QP',
               0, 'FND',
               702, 'BOM',
               140, 'OFA',
               700,'MFG'
              )||'.'||view_application_id application
  FROM apps.fnd_lookup_values lv
WHERE LANGUAGE = USERENV ('LANG')
   AND view_application_id =665
   AND security_group_id = 0
   AND lookup_type= 'PICK_STATUS'
ORDER BY 1,5

LOOKUP_TYPE    LOOKUP_CODE    MEANING    DESCRIPTION    APPLICATION
PICK_STATUS      已延交    未能在库存管理系统中分配行    WSH.665
PICK_STATUS      已发运    已发运行    WSH.665
PICK_STATUS      已取消    已取消行    WSH.665
PICK_STATUS      已连接    已发送行并将其连接至 Oracle Order Management 和 Oracle Inventory。    WSH.665
PICK_STATUS      已关闭    已接收行    WSH.665
PICK_STATUS      未准备发放    行没有准备好进行发放    WSH.665
PICK_STATUS      已清除    已从源系统中清除行    WSH.665
PICK_STATUS      准备发放    行已准备好进行发放    WSH.665
PICK_STATUS      已发放至仓库    已将行发放至库存管理系统进行处理    WSH.665
PICK_STATUS      不适用    行不适合挑库发放    WSH.665
PICK_STATUS      分批发运/确认挑库    库存管理系统已挑库并分批发运行    WSH.665

原文地址:https://www.cnblogs.com/benio/p/2285714.html