Oracle AP Invoice APIs
These APIs are handful when you want to do Insert, Update or Delete programmatically
for some business requirements (rare cases!)
|
API Name |
Procedure Name |
Description |
|
AP_AI_TABLE_HANDLER_PKG |
insert_row |
Inserts a row in AP_INVOICES_ALL |
|
update_row |
Updates a row in AP_INVOICES_ALL |
|
|
delete_row |
Deletes a row in AP_INVOICES_ALL. Also subsequently delete rows in the related tables like AP_INVOICE_LINES_ALL, |
|
API Name |
Procedure Name |
Description |
|
AP_AIL_TABLE_HANDLER_PKG |
check_unique |
Check the Uniqueness of a Row |
|
insert_row |
Inserts a row in AP_INVOICE_LINES_ALL |
|
|
update_row |
Updates a row in AP_INVOICE_LINES_ALL |
|
|
delete_row |
Deletes a row in AP_INVOICE_LINES_ALL. Also subsequently delete rows in the related tables like AP_INVOICE_DISTRIBUTIONS_ALL |
|
API Name |
Procedure Name |
Description |
|
AP_AID_TABLE_HANDLER_PKG |
check_unique |
Check the Uniqueness of a Row |
|
insert_row |
Inserts a row in AP_INVOICE_DISTRIBUTIONS |
|
|
update_row |
Updates a row in AP_INVOICE_DISTRIBUTIONS |
|
|
delete_row |
Deletes a row in AP_INVOICE_DISTRIBUTIONS |
|
API Name |
Procedure Name |
Description |
|
AP_AIP_TABLE_HANDLER_PKG |
insert_row |
Inserts a row in AP_INVOICE_PAYMENTS |
|
update_amounts |
Update amounts in AP_INVOICE_PAYMENTS |
|
API Name |
Procedure Name |
Description |
|
AP_AC_TABLE_HANDLER_PKG |
insert_row |
Inserts a row in AP_CHECKS_ALL |
|
update_row |
Updates a row in AP_CHECKS |
|
|
delete_row |
Deletes a row in AP_CHECKS |
|
|
update_amounts |
Update amounts in AP_CHECKS |
Oracle AP Invoice APIs的更多相关文章
- ORACLE EBS AP invoice 到付款的数据流
--1.Invoice创建时生成数据如下表 --Invoice主表 SELECT * FROM AP_INVOICES_ALL A WHERE A.INVOICE_NUM = '20111213001 ...
- 增加AP INVOICE 行&分配行
-- 增加行 DECLARE v_row_id VARCHAR2(1000); v_line_number number; g_user_id CONSTANT NUMBER := fnd_globa ...
- Oracle AP更新供应商
/*l_return_status:S l_msg_count:0 l_msg_data: l_vendor_id:133003 l_party_id:236055 */ DECLARE l_ ...
- [转]Oracle EBS APIs
FROM:http://blog.csdn.net/pan_tian/article/details/7754598 API To Find Sales Order's Subtotal,discou ...
- General Ledger Useful SQL Scripts – Oracle Applications 11i
General Ledger Useful SQL Scripts – Oracle Applications 11i Contents GL Set of Books Configuration O ...
- Oracle Global Finanicals Technical Reference(一个)
Skip Headers Oracle Global Finanicals Oracle Global Financials Technical Reference Manual Release 11 ...
- Using PL/SQL APIs as Web Services
Overview Oracle E-Business Suite Integrated SOA Gateway allows you to use PL/SQL application program ...
- Oracle Global Finanicals Technical Reference(一)
Skip Headers Oracle Global Finanicals Oracle Global Financials Technical Reference Manual Release 11 ...
- Oracle EBS应用笔记整理 (转自IT++ flyingkite)
***************************************************** Author: Flyingkite Blog: http://space.itpub. ...
随机推荐
- solr6.6初探之配置篇
一.solr的简介 1) solr是企业级应用的全文检索项目,它是基于Apache Lucence搜索引擎开发出来的用于搜索的应用工程 2) solr最新版本6.6 下载地址:下载地址 二 启动与配置 ...
- 我用 tensorflow 实现的“一个神经聊天模型”:一个基于深度学习的聊天机器人
概述 这个工作尝试重现这个论文的结果 A Neural Conversational Model (aka the Google chatbot). 它使用了循环神经网络(seq2seq 模型)来进行 ...
- ExecutorService
接口 java.util.concurrent.ExecutorService 表述了异步执行的机制,并且可以让任务在后台执行.壹個 ExecutorService 实例因此特别像壹個线程池.事实上, ...
- dnc开源梦之队2018 开源项目精选集
dnc开源梦之队2018 dnc开源项目选择标准 dnc = .NET Core.dotnet core 1.支持dnc 2.x,Github star数量100以上,最近2月活跃更新 2.轻量级.示 ...
- 开源Spring解决方案--lm.solution
Github 项目地址: https://github.com/liumeng0403/lm.solution 一.说明 1.本项目未按java项目传统命名方式命名项目名,包名 如:org.xxxx. ...
- 用命令直接在两台ubuntu之间传输数据
首先查看openssh-server是否启动: ps -e | grep ssh 如果没有任何提示则是没有启动: sudo /etc/init.d/ssh -start 启动进程.若提示找不到命令则需 ...
- FJUT第四周寒假作业之第一集,临时特工?(深度优先搜索)
原网址:http://210.34.193.66:8080/vj/Contest.jsp?cid=163#P2 第一集,临时特工? TimeLimit:1000MS MemoryLimit:128M ...
- xlwt以格式生成xls文件
参考: http://blog.sina.com.cn/s/blog_5357c0af01019gjo.html http://www.programcreek.com/python/example/ ...
- 最优秀的网络框架retrofit
由于某学员要求所以我打算写一篇 标题先记录下来 我会在一周内完成此篇文章
- 自定义view实现阻尼效果的加载动画
效果: > 需要知识: 1. 二次贝塞尔曲线 2. 动画知识 3. 基础自定义view知识 先来解释下什么叫阻尼运动 阻尼振动是指,由于振动系统受到摩擦和介质阻力或其他能耗而使振幅随时间逐渐衰减 ...