BOM导入问题?
BOM导入问题?
请问BOM导入需哪些基本字段。作如下插入接口表动作。再到Bill\Import导入总无法导入成功。
头信息过去。但组件信息仍停在接口表bom_inventory_comps_interface。查接口表mtl_interface_errors.字段error_message,column_name都无信息,字段Message_name有信息“BOM_EFF_DATE_MISSING”
不知在哪此字段有遗漏。请各位高手帮忙指点。
insert into bom.bom_bill_of_mtls_interface(
assembly_type, --M/E
assembly_item_id,
organization_id,
process_flag,transaction_type)
values(
1,
96411,
3,
1,'CREATE')
insert into bom.bom_inventory_comps_interface (
process_flag,transaction_type,
assembly_item_id ,
organization_id ,
assembly_item_number,--assembly_item ,
component_sequence_id ,
component_quantity ,
item_num , --项目序列
operation_seq_num , --工序序列
component_item_id , --组件
component_item_number, --component_item ,
PLANNING_FACTOR , --计划%d100
component_yield_factor , --产出率d1
wip_supply_type , --供应类型
supply_subinventory , --子库存supply_subinventory
OPTIONAL , --可选的
MUTUALLY_EXCLUSIVE_OPTIONS, --互不相容
attribute1)--,effectivity_date )
values(1,'CREATE',
96411,-- assembly_item_id ,
3, --organization_id ,
NULL, --assembly_item_number,--assembly_item ,
NULL, --component_sequence_id ,
2, --component_quantity ,
10, --item_num , --项目序列
1, --operation_seq_num , --工序序列
16678,--component_item_id , --组件
NULL, --component_item_number, --component_item ,
100, --PLANNING_FACTOR , --计划%d100
1, --component_yield_factor , --产出率d1
1, --wip_supply_type , --供应类型
'F080收料', --supply_subinventory , --子库存supply_subinventory
2, --OPTIONAL , --可选的
2, --MUTUALLY_EXCLUSIVE_OPTIONS, --互不相容
'A'--,sysdate --attribute1
)
|