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?

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

  1. FileNet P8 工作流生命周期管理和 Process Engine API 应用介绍

    摘录:https://www.ibm.com/developerworks/cn/data/library/techarticles/dm-0902wangzheng/ FileNet P8 工作流生 ...

  2. [archlinux] linux boot process/order/stage

    信息量好大 --! 神教读物,无人能比: https://wiki.archlinux.org/index.php/Arch_boot_process IBM的高质量文档 https://www.ib ...

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

  4. OM模块功能&API详解

    (一)销售订单概述 1.1   与车间模块关系 当使用ATO类型订单时,订单管理模块会直接在车间模块中产生任务 1.2   与库存模块关系 在销售订单中使用的物料,单位等信息均来自库存模块,在订单执行 ...

  5. Oracle EBS 创建 RMA

    DECLARE l_api_version_number NUMBER := 1; l_return_status VARCHAR2(2000); l_msg_count NUMBER; l_msg_ ...

  6. Oracle EBS OM 发放订单

    DECLARE l_header_rec OE_ORDER_PUB.Header_Rec_Type; l_line_tbl OE_ORDER_PUB.Line_Tbl_Type; l_action_r ...

  7. Oracle EBS OM 取消订单

    DECLARE l_header_rec OE_ORDER_PUB.Header_Rec_Type; l_line_tbl OE_ORDER_PUB.Line_Tbl_Type; l_action_r ...

  8. Flink DataStream API 中的多面手——Process Function详解

    之前熟悉的流处理API中的转换算子是无法访问事件的时间戳信息和水位线信息的.例如:MapFunction 这样的map转换算子就无法访问时间戳或者当前事件的时间. 然而,在一些场景下,又需要访问这些信 ...

  9. 【ASP.NET Web API教程】4.2 路由与动作选择

    原文:[ASP.NET Web API教程]4.2 路由与动作选择 注:本文是[ASP.NET Web API系列教程]的一部分,如果您是第一次看本系列教程,请先看前面的内容. 4.2 Routing ...

随机推荐

  1. 操作系统内核Hack:(一)实验环境搭建

    操作系统内核Hack:(一)实验环境搭建 三四年前,心血来潮,入手<Orange's:一个操作系统的实现>学习操作系统内核,还配套买了王爽的<汇编语言(第二版)>和<80 ...

  2. OSTC 2015

    上周六去北京参加了OSTC 2015开源技术大会,并分享了<Spark技术内幕>,主要涵盖了Spark Core的核心实现.我主要以WordCount为例,讲解了任务调度的具体实现,资源分 ...

  3. 【mybatis深度历险系列】延迟加载

    在前面的博文中,小编主要简单的介绍了mybatis中的高级映射,小伙伴们可以把mybatis和hibernate的因素进行对比,更加有利于理解.今天这篇博文,小编主要来简单介绍一下mybatis中的延 ...

  4. Matlab to OpenCV Mat

    convert Matlab matrix to OpenCV Mat. Support CV_32FC3 only currently. The Code int matlab2opencv(cv: ...

  5. [boost][filesystem] 扫描给定目录下所有项

    Intro. Boost的filesystem可以用来扫描给定目录下的所有项. 实现 具体实现代码如下: 需要包含的头文件和使用的命名空间: #include <boost/filesystem ...

  6. JVM远程DEBUG(JPDA )

    原理 1. JPDA简介 JPDA(Java Platform Debugger Architecture)为Java平台上的调试器定义了一个标准的体系结构.该体系结构包括3个主要组成部分:JVM T ...

  7. 视频特性TI(时间信息)和SI(空间信息)的计算工具:TIandSI-压缩码流版

    ===================================================== TI(时间信息)和SI(空间信息)计算工具文章列表: 视频特性TI(时间信息)和SI(空间信 ...

  8. Hadoop与分布式数据处理 Spark VS Hadoop有哪些异同点?

    Spark是一个开源的通用并行分布式计算框架,由加州大学伯克利分校的AMP实验室开发,支持内存计算.多迭代批量处理.即席查询.流处理和图计算等多种范式.Spark内存计算框架适合各种迭代算法和交互式数 ...

  9. LInux last命令详解

    命令简介:     该命令用来列出目前与过去登录系统的用户相关信息.指令英文原义:show listing of last logged in users 执行权限 :有些需要特殊权限 指令所在路径: ...

  10. 贪婪算法(Greedy algorithm)-算法学习之旅(一)

    我研一下学期选修了网络管理,因为是限选课所以我没有认真上课,今天因为快结课考试了,我才去,然后我发现了一个大秘密...... 原来老师从第三节课已经开始讲算法导论的知识了,我是不是错过了什么... 废 ...