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 性能相关 ...
随机推荐
- Java架构必会几大技术点(转)
关于学习架构,必须会的几点技术: 1. java反射技术 2. xml文件处理 3. properties属性文件处理 4. 线程安全机制 5. annocation注解 6. 设计模式 7. 代理机 ...
- 划分分区GPT11
umount /dev/sda1 /data1umount /dev/sdb1 /data2mount /dev/sdb1 /data1umount /dev/sdb2 /data3umount /d ...
- 安装ipython notebook
从http://cs231n.github.io/assignments2016/assignment1/开始说起,因为要学习cs231n课程,需要安装ipython notebook,原本电脑中安装 ...
- 模板:函数memcpy
函数原型 void *memcpy(void *dest, const void *src, size_t n); 2功能 从源src所指的内存地址的起始位置开始拷贝n个字节到目标dest所指的内存地 ...
- rpm的一些用法
rpm2cpio *.rpm | cpio -imd #解压一个rpm包 rpm -ivh *.rpm --force #强制安装这个rpm包 rpm -ivh *.rpm ...
- cache在spring中使用
一:参考文章 (1)http://haohaoxuexi.iteye.com/blog/2123030 Spring使用Cache,这篇文章讲的比较详细. 注:本文是对参考文章和实际使用中经验的总结 ...
- html5 meta头部设置
<meta name="viewport" content="height=[pixel_value | device-height], width=[pixel_ ...
- trigger
trigger() 方法触发被选元素的指定事件 <html><head><script type="text/javascript" src=&quo ...
- HttpWebRequest中的KeepAlive
一直不是非常理解.NET中HttpWebRequest的KeepAlive属性有何用处,看了这篇文章就清楚了! http://www.cnblogs.com/lwzz/archive/2011/08/ ...
- Python 中模块间全局变量的使用上的注意
最近用Python写代码,需要用到模块间的全局变量. 网上四处搜索,发现普遍做法是把全局变量放到一个独立的模块中,使用时,导入此全局变量模块即可. 但是在实际使用过程中发现了些小问题:在使用如下代码导 ...