惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
A
About on SuperTechFans
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 叶小钗
博客园 - 聂微东
博客园 - Franky
Apple Machine Learning Research
Apple Machine Learning Research
罗磊的独立博客
量子位
博客园 - 三生石上(FineUI控件)
Recent Announcements
Recent Announcements
The GitHub Blog
The GitHub Blog
B
Blog RSS Feed
T
The Blog of Author Tim Ferriss
GbyAI
GbyAI
云风的 BLOG
云风的 BLOG
Last Week in AI
Last Week in AI
宝玉的分享
宝玉的分享
B
Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Stack Overflow Blog
Stack Overflow Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC

博客园 - Angus

多行记录栏位合并 使用ROWNUM实现分页 ROWID and ROWNUM Null 比较 Item Interface PL/SQL Package WIP表结构 BOM表结构 INV表结构 OM表结构 PO表结构 AR表结构 AP表结构 GL表结构 HR表结构 APPLSYS表结构 Web页面消息框 Oracle ERP中的Flexfield Oracle ERP权限管理
BOM Interface
Angus · 2006-08-03 · via 博客园 - Angus

一.新增

SELECT * FROM BOM.BOM_BILL_OF_MTLS_INTERFACE
SELECT 
* FROM BOM.BOM_INVENTORY_COMPS_INTERFACE

insert into bom.bom_bill_of_mtls_interface
(
  assembly_type, 

--M/E
  assembly_item_id, 
  organization_id,
  process_flag,
  transaction_type
)
values
(
  
1,      --assembly_type, --M/E
  
12819,  --assembly_item_id, 
  
5138,   --organization_id,
  
1,      --process_flag,
  'CREATE'
--transaction_type
);

insert into bom.bom_inventory_comps_interface
(
  process_flag,
  transaction_type,
  assembly_item_id ,
  organization_id ,
  assembly_item_number,
  component_quantity ,
  item_num , 

--项目序列
  operation_seq_num , 
--工序序列
  component_item_id , 
--组件
  component_item_number, 
--component_item ,
  component_yield_factor , 
--产出率d1
  wip_supply_type , 
--供应类型
  OPTIONAL , 
--可选的
  MUTUALLY_EXCLUSIVE_OPTIONS, 
--互不相容 
  attribute1
)
values
(
  
1,
  'CREATE',
  
12819,-- assembly_item_id ,
  
5138--organization_id ,
  NULL, 
--assembly_item_number,--assembly_item ,
  
5--component_quantity ,
  
10--item_num , --项目序列
  
1--operation_seq_num , --工序序列
  
11816,--component_item_id , --组件
  NULL, 
--component_item_number, --component_item ,
  
1--component_yield_factor , --产出率d1
  
1--wip_supply_type , --供应类型
  
2--OPTIONAL , --可选的
  
2--MUTUALLY_EXCLUSIVE_OPTIONS, --互不相容 
  'A'
--,sysdate --attribute1
);

SELECT AA.TRANSACTION_ID,AA.

* FROM BOM.BOM_BILL_OF_MTLS_INTERFACE AA;
SELECT BB.TRANSACTION_ID,BB.
* FROM BOM.BOM_INVENTORY_COMPS_INTERFACE BB;
SELECT CC.
* FROM INV.MTL_INTERFACE_ERRORS CC WHERE CC.TRANSACTION_ID='2756981' ;

DELETE FROM BOM.BOM_BILL_OF_MTLS_INTERFACE
DELETE FROM BOM.BOM_INVENTORY_COMPS_INTERFACE

二.修改

(暂无)

Code Example: Bom Interface.rar