代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
OracleEBS
】
根据事务处理ID取会计分录的金额
作者:
Dezai.CN
/ 发布于
2013/4/8
/
1612
function get_price(p_in_transaction_id in number) return number is l_price number; l_exists varchar2(1); l_msg varchar2(200); begin begin select 'Y' into l_exists from xla.xla_transaction_entities xte where nvl(xte.source_id_int_1, -99) = p_in_transaction_id and rownum = 1; exception when others then l_exists := 'N'; l_msg := '存在未创建会计分录的事务处理 ID:' || p_in_transaction_id; fnd_file.put_line(fnd_file.log, l_msg); end; if l_exists = 'Y' then select sum(nvl(xal.entered_dr, 0) - nvl(xal.entered_cr, 0)) into l_price from xla.xla_ae_lines xal, xla.xla_ae_headers xah, xla.xla_events xe, xla.xla_transaction_entities xte where xah.ae_header_id = xal.ae_header_id and xah.application_id = xal.application_id and xah.application_id = 555 and xe.event_id = xah.event_id and xe.application_id = xah.application_id and xe.entity_id = xte.entity_id and xe.application_id = xte.application_id and xte.application_id = xah.application_id and xte.entity_id = xah.entity_id and xal.accounting_class_code = 'DEFERRED_COGS'--'COST_OF_GOODS_SOLD' and nvl(xte.source_id_int_1, -99) = p_in_transaction_id; end if; return nvl(l_price, 0); end get_price;
试试其它关键字
会计分录
同语言下
.
设置窗体的位置
.
初始化操作
.
在FORMS调用WEB页面
.
判断数据块的项是否为空
.
EBS 循环处理块记录
.
Oracle Form中调用并发请求生成报表并输出为PDF的方法
.
添加并发程序到指定职责API
.
EBS请求查询输出
.
删除 AP 发票相关脚本
.
ebs安全性
可能有用的
.
实现测量程序运行时间及cpu使用时间
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
Dezai.CN
贡献的其它代码
(
4037
)
.
多线程Socket服务器模块
.
生成随机密码
.
清除浮动样式
.
弹出窗口居中
.
抓取url的函数
.
使用base HTTP验证
.
div模拟iframe嵌入效果
.
通过header转向的方法
.
Session操作类
.
执行sqlite输入插入操作后获得自动编号的ID
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3