Oracle Bills of Material and Engineering Application Program Interface (APIs)

In this Document

Goal
  Solution
  1. Sample Notes for BOM APIs
  2. Datatypes used in these APIs
  3. Limitations / ERs
  References

APPLIES TO:

Oracle Bills of Material - Version 12.0.0 to 12.1.3 [Release 12 to 12.1]

Oracle Engineering - Version 12.0.0 to 12.1.3 [Release 12 to 12.1]

Information in this document applies to any platform.

GOAL

The document lists references to notes that show how to use public APIs provided for Bills of Material and Engineering along with sample code for testing purposes.

SOLUTION

Note 729513.1 How to use APIs: This demonstration walks the user through the API specifics, creating the PL/SQL procedure
for using an API and also debugging guidelines.

1. Sample Notes for BOM APIs

Note Title
Note 1242524.1 How to Create an Engineering Change Order (ECO) using Eng_Eco_PUB.Process_Eco API [Video] ?
Note 1242665.1 How to Create, Update or Delete a Bill of Material (BOM) using Bom_Bo_Pub.Process_Bom API [Video] ?
Note 1663810.1 How to CREATE / UPDATE / DELETE Product Family Bills using BOM_BO_PUB.Process_BOM API [Video] ?
Note 1244125.1 How to Create a Routing for a Bill using Bom_Rtg_Pub.Process_Rtg API [Video] ?

2. Datatypes used in these APIs

Type Internal Datatype
ECO Header Eng_Eco_Pub.Eco_Rec_Type
ECO Revision Eng_Eco_Pub.Eco_Revision_Tbl_Type
ECO Revised Item Eng_Eco_Pub.Revised_Item_Tbl_Type
ECO Revised Component Bom_Bo_Pub.Rev_Component_Tbl_Type
ECO Revised Operation Bom_Rtg_Pub.Rev_Operation_Tbl_Type
ECO Revised Operation Resource Bom_Rtg_Pub.Rev_Op_Resource_Tbl_Type
ECO Revised Operation Substitute Resource Bom_Rtg_Pub.Rev_Sub_Resource_Tbl_Type
BOM Header Bom_Bo_Pub.Bom_head_rec_type
BOM Revision Bom_Bo_Pub.Bom_revision_tbl_type
BOM Components Bom_Bo_Pub.Bom_comps_tbl_type
BOM Routing Header Bom_Rtg_Pub.Rtg_Header_Rec_Type
BOM Routing Revision Bom_Rtg_Pub.Rtg_Revision_Tbl_Type
BOM Routing Operation Bom_Rtg_Pub.Operation_Tbl_Type
BOM Routing Operation Resource Bom_Rtg_Pub.Op_Resource_Tbl_Type
BOM Routing Sub-Operation Resource Bom_Rtg_Pub.Sub_Resource_Tbl_Type
BOM Routing Operation Network Bom_Rtg_Pub.Op_Network_Tbl_Type
BOM Substitute Component Bom_Bo_Pub.Sub_Component_Tbl_Type
BOM Reference Designator Bom_Bo_Pub.Ref_Designator_Tbl_Typ

3. Limitations / ERs

Note 1386427.1 - Is there an API to Create BOM Resources?

REFERENCES

NOTE:729513.1 - How to use APIs for Inventory / Product Information Management [Video] ?

NOTE:869386.1 - How to Enable Trace or Debug for APIs executed as SQL Script Outside of the Applications ? [Video]

NOTE:136099.1 - How To Use Bill Of Material Business Object API - An Example

文档详细信息

 

 
  类型:
  状态:
  上次主更新:
  上次更新:

 
  HOWTO
  PUBLISHED
  2014-5-28
  2014-5-28

     

 

相关产品

 

Oracle Bills of Material

Oracle Engineering

     
 

信息中心

 
   

E-Business
Suite Product Information Center Index [444.2]

     
 

文档引用

 
   

Bills
of Material / Engineering Labs -- Basic Navigation, Open Interfaces (BMCOIN), APIs [416802.1]

How
to use APIs for Inventory / Product Information Management [Video] ? [729513.1]

How
to Enable Trace or Debug for APIs executed as SQL Script Outside of the Applications ? [Video] [869386.1]

How
To Use Bill Of Material Business Object API - An Example [136099.1]

     
 

最近查看

 
Oracle
Product Hub / Product Lifecycle Management / Product Information Management / Advanced Product Catalog APIs [730164.1]
How
to use APIs for Inventory / Product Information Management [Video] ? [729513.1]
Oracle
Inventory Management Application Program Interface ( APIs) [729998.1]
ship
Confirm Open Interface results in Error [220070.1]
Failed
Interorg Transfer Interface Errors (Like Invalid Serial) Leave Receiving Data [551124.1]

显示更多

     

时间: 2024-10-23 13:43:50

Oracle Bills of Material and Engineering Application Program Interface (APIs)的相关文章

Oracle Inventory Management Application Program Interface ( APIs) (Doc ID 729998.1)

In this Document Goal Solution References APPLIES TO: Oracle Inventory Management - Version 12.0.0 and later Information in this document applies to any platform. This document includes all versions R12.x.x and later. ***Checked for relevance on 22-O

Oracle Inventory Management Application Program Interface ( APIs)

In this Document   Goal   Solution   References APPLIES TO: Oracle Inventory Management - Version 12.0.0 and later Information in this document applies to any platform. This document includes all versions R12.x.x and later. ***Checked for relevance o

Application binary interface and method of interfacing binary application program to digital computer

An application binary interface includes linkage structures for interfacing a binary application program to a digital computer. A function in a relocatable shared object module obtains the absolute address of a Global Offset Table (GOT) in the module

application program Can't Start

一.电脑插U盘中毒之后感染,出现无法启动,但是风扇工作,先拔掉电源,卸掉电池之后重新安装,重启电脑,之后发现电脑桌面上的程序无法启动,360webShield也无法启动,可能是电脑中毒后的假死机现象. 1.强制电脑启动程序 同时按住Ctrl   Alt    Delete三个键启动任务栏点击 选择启动任务管理器 2.选择文件新建任务运行  输入360Safe.exe 确定之后 弹出360卫士的程序界面, 选择木马查杀,系统修复.最好进行联网查杀,修补系统漏洞 二.断电源,把线.键盘.鼠标重新连一

Linking code for an enhanced application binary interface (ABI) with decode time instruction optimization

A code sequence made up multiple instructions and specifying an offset from a base address is identified in an object file. The offset from the base address corresponds to an offset location in a memory configured for storing an address of a variable

PowerPC Embedded Application Binary Interface (EABI)初探

C的源代码中定义一下结构体. typedef struct { UINT8 RecType; UINT8 NumBytes; UINT32 LoadAddr; UINT8 Data[MaxSRecLen]; } SRecDataRec; 发现,在内存中是按照以下方式排列的: 可见,struct中间可能是留有空隙的.这样的对齐方式是符合标准的. 原文地址:https://www.cnblogs.com/praiseslow/p/9383294.html

How To Transact Move Order Using INV_PICK_WAVE_PICK_CONFIRM_PUB.Pick_Confirm API

In this Document Goal   Solution   Sample Code:   Steps:   FAQ   References APPLIES TO: Oracle Inventory Management - Version 11.5.10.2 to 12.1.3 [Release 11.5.10 to 12.1] Information in this document applies to any platform. This document includes 1

Enhancing the Application: Advanced JDBC Features(转)

Enhancing the Application: Advanced JDBC Features This chapter describes additional functionality that you can use in your Java application. Some of these features have not been implemented in the sample application, while some features are enhanceme

工单发料态别(转)

在定义BOM的时候,我们需要设定,工单供货的方式(Supply Type).Push 推式发料,必须手工通过界面做发料,价格昂贵的,需严格控制数量,或者波动比较大的物料.推式组件根据需要可被直接发放至离散任务和重复性计划.虽然在制品管理系统会默认与组件关联的供应子库存,但您仍可以指定从中发放推式组件的子库存. Assembly Pull 拉式发料,装配件完工或报废时自动按标准消耗量触发 消耗比较稳定的物料.在在制品管理系统中完成装配件后,装配拉式组件即被发放至离散任务和重复性计划.这些组件是从分