转:Order&Shipping Transactions Status Summary
详细内容:
http://blog.csdn.net/pan_tian/article/details/7696528
WSH_DELIVERY_DETAILS.Release_Status can have any of the below valid values
SELECT lookup_type,
lookup_code,
meaning,
description
FROM fnd_lookup_values
WHERE lookup_type = 'PICK_STATUS'
AND LANGUAGE = 'US';
| LOOKUP_TYPE | LOOKUP_CODE | MEANING | DESCRIPTION |
|---|---|---|---|
| PICK_STATUS | B | Backordered | Line failed to be allocated in Inventory |
| PICK_STATUS | C | Shipped | Line has been shipped |
| PICK_STATUS | D | Cancelled | Line is Cancelled |
| PICK_STATUS | E | Replenishment Requested | Line has been replenishment requested |
| PICK_STATUS | F | Replenishment Completed | Line has been replenishment completed |
| PICK_STATUS | I | Interfaced | Line has been shipped and interfaced to Order Management and Inventory |
| PICK_STATUS | K | Planned for Crossdocking | Line has been Planned for X-dock |
| PICK_STATUS | L | Closed | Line has been Received |
| PICK_STATUS | N | Not Ready to Release | Line is not ready to be released |
| PICK_STATUS | P | Purged | Line has been purged from source system |
| PICK_STATUS | R | Ready to Release | Line is ready to be released |
| PICK_STATUS | S | Released to Warehouse | Line has been released to Inventory for processing |
| PICK_STATUS | X | Not Applicable | Line is not applicable for Pick Release |
| PICK_STATUS | Y | Staged/Pick Confirmed | Line has been picked and staged by Inventory |
WSH_NEW_DELIVERIES.status_code column values
SELECT lookup_type,
lookup_code,
meaning,
description
FROM fnd_lookup_values
WHERE lookup_type = 'TRIP_STATUS'
AND LANGUAGE = 'US';
LOOKUP_TYPE LOOKUP_CODE MEANING DESCRIPTION
TRIP_STATUS CL Closed Trip has completed
TRIP_STATUS IT In-Transit Trip is in-transit and has begun
TRIP_STATUS OP Open Trip is Open and has not begun
转:Order&Shipping Transactions Status Summary的更多相关文章
- Order&Shipping Transactions Status Summary
Order&Shipping Transactions Status Summary Step Order Header Status Order Line Status Order Flow ...
- Shipping Transactions > Error: The action can not be performed because the selected records could not be locked.
Shipping Transactions > Action: Launch Pick Release (B: Go) Error: The action can not be performe ...
- SAP CRM One order里user status和system status的mapping逻辑
Below example show: How the mapping relationship between User status and System status maintained in ...
- 转:Oracle EBS订单的流程(Order->AR)
目录(?)[-] 基本流程 创建订单 Pick Release Pick Confirm Ship Confirm Deliveries Interface Trip Stop - SRS Workf ...
- Oracle EBS订单的流程(Order->AR)
from:http://blog.csdn.net/pan_tian/article/details/7693447 基本流程 创建订单 路径:Order Management > Orders ...
- Receving Transactions > No data found IQC无法接收PO采购物料
Receving Transactions > No data found IQC无法接收PO采购物料 APP-PO-14094: No records meet your search cri ...
- Order to Cash Process
order to cash process steps can be listed as below · Enter the Sales Order · Book the Sales Order · ...
- System and method for parallel execution of memory transactions using multiple memory models, including SSO, TSO, PSO and RMO
A data processor supports the use of multiple memory models by computer programs. At a device extern ...
- 转:Internal Sales Order (ISO) Process Flow
本文介绍下内部销售订单Internal Sales Order(ISO)在Oracle EBS中的流程,内部销售订单和组织间转移(Inter-Organization Transfer,IOT)的作用 ...
随机推荐
- Qt Focus事件,FocusInEvent()与FocusOutEvent()
描述:一开始我要实现的目的就是,在一个窗体上有多个可编辑控件(比如QLineEdit.QTextEdit等),当哪个控件获得焦点,哪个控件的背景就高亮用来起提示作用,查了下文档应该用focusInEv ...
- 利用ArcMap对tiff或jpg格式地图图片的配准步骤
原文:利用ArcMap对tiff或jpg格式地图图片的配准步骤 在实际应用中,经常会遇到提供一张高精度的地图图片文件,如何对将该图片进行配准(使图片具有经纬度坐标). 当然我们得有一些大概的参考图层, ...
- python和pywin32实现窗口查找、遍历和点击
Pywin32是一个Python库,为python提供访问Windows API的扩展,提供了齐全的windows常量.接口.线程以及COM机制等等. 1.通过类名和标题查找窗口句柄,并获得窗口位置和 ...
- 常用 linux 命令(部分)
常用命令总结: 1. mkdir命令 mkdir dirname , 用来创建目录.该命令创建由dirname命名的目录.如果在目录名的前面没有加任何路径名,则在当前目录下创建由dirname指定的目 ...
- javabean与map互转
/** * 将一个 JavaBean 对象转化为一个 Map * @param bean 要转化的JavaBean 对象 * @return 转化出来的 Map 对象 * ...
- 对memcpy函数的改进
void *mymemcpy(void *dst,const void *src,size_t num) { assert((dst!=NULL)&&(src!=NULL)); int ...
- mysql -B 恢复与不加
-B 跟--database 意义一样 在默认不指定库时候 连续名称,只有第一个名称为库名,后面的都为表名 而使用 -B 或者 --database 之后 所有的名 都是库名 1 导出单个库时候加了- ...
- Java文件操作①——XML文件的读取
一.邂逅XML 文件种类是丰富多彩的,XML作为众多文件类型的一种,经常被用于数据存储和传输.所以XML在现今应用程序中是非常流行的.本文主要讲Java解析和生成XML.用于不同平台.不同设备间的数据 ...
- [Linux]gdb调试
exbot@ubuntu:~/CodeLearn/HelloWorld/src$ g++ -g main.cpp exbot@ubuntu:~/CodeLearn/HelloWorld/src$ ./ ...
- dojo使用疑难杂症集锦
最近在用dojo做项目, 把使用过程中遇到的一些问题记录下来, 方便以后查阅, 因为问题不断, 所以持续更新中.......... 嵌套 TabContainer 时会出现样式问题: tab控制样式问 ...