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的更多相关文章

  1. LOCK TABLES和UNLOCK TABLES与Transactions的交互

    LOCK TABLES对事务不安全,并且在试图锁定表之前隐式提交任何活动事务. UNLOCK TABLES只有在LOCK TABLES已经获取到表锁时,会隐式提交任何活动事务.对于下面的一组语句,UN ...

  2. 函数的使用顺序---TABLES,USING,CHANGING

    SAP使用PERFORM的时候: ... [TABLES   itab1 itab2 ...]     [USING    a1 a2 ...]     [CHANGING a1 a2 ...]. E ...

  3. 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 ...

  4. 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'@' ...

  5. Neutron 理解 (4): Neutron OVS OpenFlow 流表 和 L2 Population [Netruon OVS OpenFlow tables + L2 Population]

    学习 Neutron 系列文章: (1)Neutron 所实现的虚拟化网络 (2)Neutron OpenvSwitch + VLAN 虚拟网络 (3)Neutron OpenvSwitch + GR ...

  6. 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 ...

  7. 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 ...

  8. MySql: show databases/tables use database desc table

    1. show databases mysql> show databases;+--------------------+| Database |+--------------------+| ...

  9. mysql performance_schema 和information_schema.tables了解

    这个是关于mysql的系统表,性能表,核心表操作的一些介绍,深入算不上 我们一般很少去动 mysql  information_schema 信息相关  performance_schema 性能相关 ...

随机推荐

  1. JSP九大内置对象(转载)

    JSP中一共预先定义了9个这样的对象,分别为:request.response.session.application.out.pagecontext.config.page.exception 1. ...

  2. bzoj4637:期望

    思路:最小生成树计数只不过加了一个期望,由于期望具有线性性质,就可以转化为每条边的期望之和,那么一条边的期望如何求呢,在最小生成树记数中,是把相同边权的一起处理,之后把属于连通块内的点缩点,也就是说, ...

  3. Menu bar missing from ClearCase Explorer

    See following links: Menu bar missing from ClearCase Explorer Understanding the Rational ClearCase E ...

  4. leetcode Maximal Rectangle 单调栈

    作者:jostree 转载请注明出处 http://www.cnblogs.com/jostree/p/4052721.html 题目链接:leetcode Maximal Rectangle 单调栈 ...

  5. mysql---多表关联

    首先要介绍一下集合的概念:集合具有无序性.唯一性. 无序性:指集合内部元素没有相对顺序的概念,对于两个集合而言,只要元素值和元素个数相同则两个集合相等. 唯一性:指集合内部元素不存在值相等的元素. 上 ...

  6. JS访问Struts 2 ValueStack中的内容

    /* * var myArray = new Array("${vacant[0]}", "${vacant[1]}", "${vacant[2]}& ...

  7. MVC文件上传-使用jQuery.FileUpload和Backload组件实现文件上传

    本篇使用客户端jQuery-File-Upload插件和服务端Badkload组件实现多文件异步上传.MVC文件上传相关兄弟篇: 处理文件上传的服务端组件Backload 用于处理文件上传的服务端组件 ...

  8. json 包含字段及函数的写法

    在javascript中写类有多种方式: 1.function()中嵌套function; 2.prototype的方式 ,3.json的方式,如下: <script language=&quo ...

  9. PERL代码摘录

    1. 语法与数据结构 #嵌套哈希的赋值和取值 $HashTable{$key} = [@Array] #这个是赋值 @Array = @{ $HashTable{$key} } # 这个是取值 #Pe ...

  10. SGU 194 Reactor Cooling Dinic求解 无源无汇有上下界的可行流

    题目链接 题意:有向图中有n(1 <= n <= 200)个点,无自环或者环的节点个数至少为3.给定每条边的最小流量和最大流量,问每条边的可行流量为多少? 思路:一般求解的网络流并不考虑下 ...