OSFM Tables
OSFM - Oracle Shop Floor Management
1. (N) Shop Floor Manager > Lot Based Jobs (B: New)
Status: Unreleased
Insert data to table:
wip_entities
wip_discrete_jobs
========================================================
select *
from wip_entities
where 1=1
and wip_entity_name = 'JM41309150001';
select *
from
wip_discrete_jobs
where 1=1
and wip_entity_id in(
select wip_entity_id
from wip_entities
where 1=1
and wip_entity_name = 'JM41309150001'
);

2. Change the status: Released
Insert data to table:
wip_period_balances
========================================================
select *
from wip_period_balances
where 1=1
and wip_entity_id in(
select wip_entity_id
from wip_entities
where 1=1
and wip_entity_name = 'JM41309150001'
);

3. (N) Shop Floor Manager > Lot Transactions > Material Transactions
Transaction Type: WIP component issue
Update data to table:
wip_period_balances
WIP_PERIOD_BALANCES.PL_MATERIAL_IN
WIP_PERIOD_BALANCES.PL_MATERIAL_OVERHEAD_IN
WIP_PERIOD_BALANCES.PL_RESOURCE_IN
========================================================
| PL_MATERIAL_IN | PL_MATERIAL_OVERHEAD_IN | PL_RESOURCE_IN |
| 1 | 1,005 | 20 |



4. (N) Shop Floor Manager > Lot Transactions > WIP Lot Transactions
Transctiont Type: Split
Job No: JM41309150001
>>> split: 1) JM41309150001*1
2) JM41309150001*2
========================================================

| ACCT_PERIOD_ID | WIP_ENTITY_ID | WIP_ENTITY_NAME | CLASS_TYPE |
| 7,143 | 113,708 | JM41309150001*1 | 5 |
| 7,143 | 113,709 | JM41309150001*2 | 5 |
| 7,143 | 113,707 | JM41309150001-TST | 5 |
| TL_RESOURCE_IN | TL_OVERHEAD_IN | TL_OUTSIDE_PROCESSING_IN | PL_MATERIAL_IN | PL_MATERIAL_OVERHEAD_IN |
| 0 | 0 | 0 | 0 | 302 |
| 0 | 0 | 0 | 1 | 704 |
| 0 | 0 | 0 | 1 | 1,005 |
| PL_RESOURCE_IN | PL_OVERHEAD_IN | PL_OUTSIDE_PROCESSING_IN | TL_MATERIAL_OUT | TL_MATERIAL_OVERHEAD_OUT |
| 6 | 0 | 0 | 0 | 0 |
| 14 | 0 | 0 | 0 | 0 |
| 20 | 0 | 0 | 0 | 0 |
| TL_RESOURCE_OUT | TL_OVERHEAD_OUT | TL_OUTSIDE_PROCESSING_OUT | PL_MATERIAL_OUT | PL_MATERIAL_OVERHEAD_OUT |
| 0 | 0 | 0 | 0 | 0 |
| 0 | 0 | 0 | 0 | 0 |
| 0 | 0 | 0 | 1 | 1,005 |
| PL_RESOURCE_OUT | PL_OVERHEAD_OUT | PL_OUTSIDE_PROCESSING_OUT |
| 0 | 0 | 0 |
| 0 | 0 | 0 |
| 20 | 0 | 0 |
OSFM Tables的更多相关文章
- LOCK TABLES和UNLOCK TABLES与Transactions的交互
LOCK TABLES对事务不安全,并且在试图锁定表之前隐式提交任何活动事务. UNLOCK TABLES只有在LOCK TABLES已经获取到表锁时,会隐式提交任何活动事务.对于下面的一组语句,UN ...
- 函数的使用顺序---TABLES,USING,CHANGING
SAP使用PERFORM的时候: ... [TABLES itab1 itab2 ...] [USING a1 a2 ...] [CHANGING a1 a2 ...]. E ...
- Drop all the tables, stored procedures, triggers, constraints and all the dependencies in one SQL statement
Is there any way in which I can clean a database in SQl Server 2005 by dropping all the tables and d ...
- mysqldump: Got error: 1142: SELECT, LOCK TABLES command denied to user 'root'@'localhost' for table 'accounts' when using LOCK TABLES
AutoMySQLBackup备份时,出现mysqldump: Got error: 1142: SELECT, LOCK TABLES command denied to user 'root'@' ...
- Neutron 理解 (4): Neutron OVS OpenFlow 流表 和 L2 Population [Netruon OVS OpenFlow tables + L2 Population]
学习 Neutron 系列文章: (1)Neutron 所实现的虚拟化网络 (2)Neutron OpenvSwitch + VLAN 虚拟网络 (3)Neutron OpenvSwitch + GR ...
- Codeforces Round #342 (Div. 2) C. K-special Tables(想法题)
传送门 Description People do many crazy things to stand out in a crowd. Some of them dance, some learn ...
- mysql [ERROR] Fatal error: Can't open and lock privilege tables: Table 'mysql.host' doesn't exist (转载)
mysql报错Fatal error: Can't open and lock privilege tables: Table 'mysql.host' doesn't exist 2013-11-2 ...
- MySql: show databases/tables use database desc table
1. show databases mysql> show databases;+--------------------+| Database |+--------------------+| ...
- mysql performance_schema 和information_schema.tables了解
这个是关于mysql的系统表,性能表,核心表操作的一些介绍,深入算不上 我们一般很少去动 mysql information_schema 信息相关 performance_schema 性能相关 ...
随机推荐
- ###《Machine Learning in Action》 - KNN
初学Python:理解机器学习. 算法是需要实现的,纸上得来终觉浅. // @author: gr // @date: 2015-01-16 // @email: forgerui@gmail.com ...
- ios - cordova(phoneGap)
安装教程 下载 node.js. http://nodejs.org/ 下载后,直接安装就可以了. 安装 Cordova工具, $ sudo npm install -g cordova 创建APP: ...
- KMP入门(周期)
Description Given two strings a and b we define a*b to be their concatenation. For example, if a = & ...
- svn 项目转移
http://www.cnblogs.com/techMichaelLee/p/3193197.html (参考) svnadmin dump /home/svn/project > /home ...
- html5新增标签兼容性
很多低版本的浏览器是不识html5新增的标签的,所以为了解决浏览器兼容性问题,主要有两种方法: js可以创建我们自定义的标签,例如,我们可以用js语句 document.createElement(' ...
- javascript 上传 预览图片 兼容 谷歌 ie
最近的项目要用到这块,但是在网上找了很多资料,很多都是假的,都不行,最后终于找到一个,还是可以兼容主流的,特分享给大家,可以用 <!DOCTYPE html PUBLIC "-//W3 ...
- php 命名空间(要求php5.3以上)
要求php5.3以上 <?phpnamespace test;// 命名空间与目录类似功能,也可定义子命名空间,用分层的方式定义:/*namespace mydir\ok\project; 在声 ...
- C#基础(六)——值类型与引用类型
CLR支持两种类型:值类型和引用类型. 值类型包括C#的基本类型(用关键字int.char.float等来声明),结构(用struct关键字声明的类型),枚举(用enum关键字声明的类型):而引用类型 ...
- win7 64 安装Oracle 11G 、使用PLSQL进行连接 标准实践
第一步: 安装oracle 服务,两个解压包,分别解压后 合并到一个文件夹,点击exe安装 (安装过程中如遇到PATH问题,直接忽略即可) 第二步:使用SQLPlus 测试是否成功 安装成功:CMD ...
- Centos 6.2上安装使用 Informix11.70 数据库
环境要求:操作系统: Centos 6.2 32位数据库软件: iif.11.70.UC7IE.Linux-RHEL5.tar(在IBM网站上注册个帐号就可以下载,包括windows,Linux,Un ...