Process Order API - How To Scripts

In this Document

  Purpose
  Questions and Answers
  References

APPLIES TO:

Oracle Order Management - Version 11.5 to 12.2.3 [Release 11.5 to 12.2]

Information in this document applies to any platform.

***Checked for relevance on 08-Sep-2014***

PURPOSE

This document is a compilation of Process Order API ‘How To‘ Scripts

QUESTIONS AND ANSWERS

Note Number

Script Description

Document 364316.1 How does one import Credit Card Payments using Process Order API ?
Document 427947.1 How does one process orders from different operating units using Process Order API ?
Document 470741.1 How Does One Book An Order Using Process Order API ?
Document 745369.1 How Does One Update Order Header Details Using Process Order API For R12 ?
Document 746783.1 Script To Create An Order With One Line
Document 746787.1 Process Order API In Order Management
Document 746796.1 Script To Add A New Line To An Existing Order
Document 746797.1 Script To Cancel An Existing Order
Document 746798.1 Script To Cancel An Existing Order Line
Document 746802.1 Script To Update An Existing Order Line
Document 746803.1 Script To Reserve an Order Line
Document 746804.1 Script To Unreserve An Order Line
Document 746808.1 Script To Split An Order Line
Document 746809.1 Script To Delete An Order
Document 746810.1 Script To Delete An Order Line
Document 746811.1 Script To Apply Hold in Sales Order
Document 746812.1 Script To Release Hold In A Sales Order
Document 755135.1 How does one update Unit Price using Process Order API?
Document 811264.1 How Does One Book An Order Using OE_INBOUND_INT.PROCESS_ORDER() ?
Document 869085.1 Process Order API In Order Management - R12 Updates
Document 1128445.1 Need Script To Apply Hold using Process Order API in R12 ?
Document 1907954.1 Seeded API Not Generating Trxn_Extension_id In Oe_payments Table For ACH Payment Type Information

Still Have Questions?

To discuss this information further with Oracle experts and industry peers, we encourage you to review, join or start a discussion in the My
Oracle Support Order Management EBS Community
.

Let us know your feedback!

We hope you find this information useful. Our desire is to provide the right information when you need it. Please let us know how we are doing. To provide feedback on this note:

1. Select the "Rate this document" link. Depending on how you are viewing the note, you will find the link on the:

a) bottom left when viewing the note in a separate window.

b) upper right when viewing the note in the My Oracle Support window.

2. In the resulting pop-up box, enter your comments and ratings for the document.

3. Select Send Rating.

REFERENCES

NOTE:1396053.1 -
How to apply a HOLD at Line Level using an API ?

NOTE:1066731.1 -
Is There Any Documentation for the OE_HOLDS_PUB API?

时间: 2024-10-08 21:03:51

Process Order API - How To Scripts的相关文章

[archlinux] linux boot process/order/stage

信息量好大 --! 神教读物,无人能比: https://wiki.archlinux.org/index.php/Arch_boot_process IBM的高质量文档 https://www.ibm.com/developerworks/library/l-linuxboot/ https://www.freedesktop.org/software/systemd/man/bootup.html# init process: https://en.wikipedia.org/wiki/Li

How to Simulate the Price Order or Price Line Function using API QP_PREQ_PUB.PRICE_REQUEST Includes

How to Simulate the Price Order or Price Line Function using API QP_PREQ_PUB.PRICE_REQUEST Includes Example Scripts (文档 ID 412545.1) 转究竟部 In this Document _afrLoop=270486812581593&id=412545.1&displayIndex=4&_afrWindowMode=0&_adf.ctrl-state

OM模块功能&API详解

(一)销售订单概述 1.1   与车间模块关系 当使用ATO类型订单时,订单管理模块会直接在车间模块中产生任务 1.2   与库存模块关系 在销售订单中使用的物料,单位等信息均来自库存模块,在订单执行过程中,按订单保留及销售发运等功能也会对库存模块起作用 1.3   与应收模块关系 销售完成后,订单管理模块会在应收接口中产生INVOICE信息,影响应收模块中销售订单对应的应收INVOICE处理操作 1.4   与采购模块关系 在直发流程,背对背等销售流程中,订单模块会在采购模块中产生对应的采购需

已存在销售订单上插入销售订单行

 在已存在销售订单上插入销售订单行 --This is to add a line to an existing order DECLARE l_api_version_number NUMBER := 1 ; l_return_status      VARCHAR2(2000 ); l_msg_count          NUMBER; l_msg_data           VARCHAR2(2000 ); /*****************INPUT VARIABLES FOR

订单应用暂挂

You can apply hold on existing order by populating the order import interface with the following : OE_HEADERS_IFACE_ALL ORDER_SOURCE_ID ORIG_SYS_DOCUMENT_REF OPERATION_CODE => 'UPDATE' ORG_ID ORDER_TYPE_ID CREATED_BY CREATION_DATE LAST_UPDATED_BY LAS

Oracle EBS 创建 RMA

DECLARE l_api_version_number NUMBER := 1; l_return_status VARCHAR2(2000); l_msg_count NUMBER; l_msg_data VARCHAR2(2000); /*****************INPUT VARIABLES FOR PROCESS_ORDER API************************* l_header_rec oe_order_pub.header_rec_type; l_lin

Oracle EBS OM 发放订单

DECLARE l_header_rec OE_ORDER_PUB.Header_Rec_Type; l_line_tbl OE_ORDER_PUB.Line_Tbl_Type; l_action_request_tbl OE_ORDER_PUB.Request_Tbl_Type; l_header_adj_tbl OE_ORDER_PUB.Header_Adj_Tbl_Type; l_line_adj_tbl OE_ORDER_PUB.line_adj_tbl_Type; l_header_s

Oracle EBS OM 取消订单

DECLARE l_header_rec OE_ORDER_PUB.Header_Rec_Type; l_line_tbl OE_ORDER_PUB.Line_Tbl_Type; l_action_request_tbl OE_ORDER_PUB.Request_Tbl_Type; l_header_adj_tbl OE_ORDER_PUB.Header_Adj_Tbl_Type; l_line_adj_tbl OE_ORDER_PUB.line_adj_tbl_Type; l_header_s

NodeJS入门(五)—— process对象

process对象用于处理与当前进程相关的事情,它是一个全局对象,可以在任何地方直接访问到它而无需引入额外模块. 它是 EventEmitter 的一个实例. 本章的示例可以从我的Github上下载到(敏感时期GFW发大招,git暂时传不了,等多几天风头过了再试着上传). 事件'exit' 当进程将要退出时触发.这是一个在固定时间检查模块状态(如单元测试)的好时机.需要注意的是 'exit' 的回调结束后,主事件循环将不再运行,所以计时器也会失效: process.on('exit', func