EBS总账模块与其他模块数据关联关系

时间:2022-02-11 00:12:30

表名:GL_IMPORT_REFERENCES

说明:总账导入附加信息表

用途:用来追溯从子模块传入总账模块的明细,对于报表开发很有帮助

SQL 语句:

select *
from gl_je_headers gjh,
gl_je_lines gjl,
gl_import_references gir
where gjh.je_header_id = gjl.je_header_id
and gjl.je_header_id = gir.je_header_id
and gjl.je_line_num = gir.je_line_num;

1、gjh.je_source = 'Payables':

1)与 AP 模块关联表:ap_ae_lines_all

2)SQL 语句:

select *
from gl_je_headers gjh,
gl_je_lines gjl,
gl_import_references gir,
ap_ae_lines_all ael,
ap_ae_headers_all aeh
where gjh.je_header_id = gjl.je_header_id
and gjl.je_header_id = gir.je_header_id
and gjl.je_line_num = gir.je_line_num
and gjh.je_source = 'Payables'
and gir.gl_sl_link_id = ael.gl_sl_link_id
and ael.ae_header_id = aeh.ae_header_id;

3)根据 aeh.ae_category 或 aeh.accounting_event_id 判断业务性质,从而关联以下数据

库表进行取值;

ap_invoices_all

ap_invoice_distributions_all

ap_checks_all

ap_invoice_payments_all

ap_accounting_events_all

4)借贷金额计算逻辑:

直接取 ap_ae_lines_all 的 ael.accounted_dr,ael.accounted_cr 字段值

  借项:

ael.accounted_dr;

  贷项:

ael.accounted_cr;

2、gjh.je_source = 'Receivables':

1)gjh.je_category in ('Credit Memos', 'Sales Invoices')

A.  与 AR 关联表:ra_cust_trx_line_gl_dist_all

2

B.  SQL 语句:

select *
from gl_je_headers gjh,
gl_je_lines gjl,
gl_import_references gir,
ra_cust_trx_line_gl_dist_all rcl
where gjh.je_header_id = gjl.je_header_id
and gjl.je_header_id = gir.je_header_id
and gjl.je_line_num = gir.je_line_num
and gjh.je_source = 'Receivables'
and gjh.je_category in ('Credit Memos', 'Sales Invoices')
and gir.reference_3 = to_char(rcl.cust_trx_line_gl_dist_id);

C.  根据 rcl.customer_trx_id、rcl.customer_trx_line_id 关联以下表:

ra_customer_trx_all

ra_customer_trx_lines_all

D.  借贷金额计算逻辑:

根据自总账模块所追溯科目的性质,判断 sign(rcl.acctd_amount)的符号和

gjl.accounted_dr 是否为空,分别列在借方和贷方金额栏。

以下为应收账款科目借贷方金额计算逻辑,仅供参考:

  借项:

decode(sign(rcl.acctd_amount),
1, rcl.acctd_amount,
0,
0,
-1,
0) acctd_dr;

  贷项:

decode(sign(rcl.acctd_amount),
1,
0,
0,
0,
-1,
rcl.acctd_amount * -1) acctd_cr;

2)gjh.je_category in ('Trade Receipts', 'Credit Memo Applications')

A.  与 AR 关联表:ar_receivable_applications_all

B.  SQL 语句:

select *
from gl_je_headers gjh,
gl_je_lines gjl,
gl_import_references gir,
ar_receivable_applications_all ara
where gjh.je_header_id = gjl.je_header_id
and gjl.je_header_id = gir.je_header_id
3
and gjl.je_line_num = gir.je_line_num
and gjh.je_source = 'Receivables'
and gjh.je_category in ('Trade Receipts', 'Credit Memo Applications')
and decode(gjh.je_category,
'Trade Receipts',
substr(gir.reference_2, instr(gir.reference_2, 'C', 1) + 1),
gir.reference_2) = ara.receivable_application_id;

C.  根据 ara.cash_receipt_id、 ara.customer_trx_id、 ara.applied_customer_trx_id

关联以下表:

ar_cash_receipts_all

ra_customer_trx_all

D.  借贷金额计算逻辑:

根据自总账模块所追溯科目的性质,判断 sign(ara.acctd_amount_applied_to)

的符号和 gjl.accounted_dr 是否为空,分别列在借方和贷方金额栏。

以下为应收账款科目借贷方金额计算逻辑,仅供参考:

  借项:

decode(gjh.je_category,
'Trade Receipts',
decode(sign(ara.acctd_amount_applied_to),
0,
0,
1,
0,
ara.acctd_amount_applied_to * -1),
decode(sign(ara.acctd_amount_applied_to),
0,
0,
1,
decode(gjl.accounted_dr,
null,
0,
ara.acctd_amount_applied_to),
decode(gjl.accounted_dr,
null,
0,
ara.acctd_amount_applied_to * -1))) acctd_dr;

  贷项:

decode(gjh.je_category,
'Trade Receipts',
decode(sign(ara.acctd_amount_applied_to),
0,
0,
1,
ara.acctd_amount_applied_to,
4
0),
decode(sign(ara.acctd_amount_applied_to),
0,
0,
1,
decode(gjl.accounted_dr,
null,
ara.acctd_amount_applied_to,
0),
decode(gjl.accounted_dr,
null,
ara.acctd_amount_applied_to * -1,
0))) acctd_cr;

3、gjh.je_source = 'Inventory':

1)与 INV 关联表:mtl_transaction_accounts

2)SQL 语句:

select *
from gl_je_headers gjh,
gl_je_lines gjl,
gl_import_references gir,
mtl_transaction_accounts mta,
mtl_material_transactions mmt
where gjh.je_header_id = gjl.je_header_id
and gir.je_header_id = gjl.je_header_id
and gir.je_line_num = gjl.je_line_num
and gjh.je_source = 'Inventory'
and gir.reference_1 = to_char(mta.gl_batch_id)
and mta.transaction_id = mmt.transaction_id;

3)根据 mmt.transaction_type_id 关联以下表:

mtl_transaction_types

oe_order_headers_all

oe_order_liness_all

rcv_transactions

po_hedaers_all

po_lines_all

mtl_txn_request_headers

mtl_txn_request_lines

mtl_generic_dispositions

4)借贷金额计算逻辑:

根据自总账模块所追溯科目的性质,判断 sign(mta.base_transaction_value)的符

号,分别列在借方和贷方金额栏

以下为销售成本科目借贷方借计算逻辑,仅供参考:

  借项:

decode(sign(mta.base_transaction_value),
5
1,
mta.base_transaction_value,
0) acctd_dr;
 贷项:
decode(sign(mta.base_transaction_value),
-1,
mta.base_transaction_value * -1,
0) acctd_cr;

4、gjh.je_source = 'Purchasing':

1)与 PO 关联表:rcv_receiving_sub_ledger

2)SQL 语句:

select *
from gl_je_headers gjh,
gl_je_lines gjl,
gl_import_references gir,
rcv_receiving_sub_ledger rcs
where gjh.je_header_id = gjl.je_header_id
and gir.je_header_id = gjl.je_header_id
and gir.je_line_num = gjl.je_line_num
and gjh.je_source = 'Purchasing'
and gir.reference_5 = to_char(rcs.rcv_transaction_id);

3)根据 rcs.rcv_transaction_id 关联以下表:

rcv_transactions

po_headers_all

po_lines_all

po_line_locations_all

po_distributions_all

4)借贷金额计算逻辑:

直接取 rcv_receiving_sub_ledger 的 rcs.accounted_dr 和 rcs.accounted_cr 字

段值

  借项:

rcs.accounted_dr;

  贷项:

rcs.accounted_cr;

5、gjh.je_source = 'Assets':

1)与 FA 关联表:fa_adjustments

2)SQL 语句:

select *
from gl_je_headers gjh,
gl_je_lines gjl,
gl_import_references gir,
fa_adjustments fad
where gjh.je_header_id = gjl.je_header_id
and gir.je_header_id = gjl.je_header_id
6
and gir.je_line_num = gjl.je_line_num
and gjh.je_source = 'Assets'
and gir.je_header_id = fad.je_header_id
and gir.je_line_num = fad.je_line_num;

3)根据 source_type_code 关联以下表:

fa_additions_b

fa_additions_tl

fa_books

fa_deprn_detail

fa_deprn_summary

fa_retirements

fa_transfer_details

fa_distribution_accounts

fa_distribution_history

fa_transaction_headers

4)借贷金额计算逻辑:

根据 fad.debit_credit_flag 的性质,判断 fad.adjustment_amount 的借贷方属性

  借项:

decode(fad.debit_credit_flag,

'DR',

fad.adjustment_amount,

0) acctd_dr;

  贷项:

decode(fad.debit_credit_flag,

'CR',

fad.adjustment_amount,

0) acctd_cr;



EBS总账模块与其他模块数据关联关系的更多相关文章

  1. Nodejs中cluster模块的多进程共享数据问题

    Nodejs中cluster模块的多进程共享数据问题 前述 nodejs在v0.6.x之后增加了一个模块cluster用于实现多进程,利用child_process模块来创建和管理进程,增加程序在多核 ...

  2. Python基础之模块、数据类型及数据类型转换

    一.模块 1.标准库 不需要安装,直接调入使用的模块. import sys模块: import sys print(sys.path) #打印环境变量绝对路径 print(sys.argv) #打印 ...

  3. 使用Jyhon脚本和PMI模块监控WAS性能数据

    使用Jyhon脚本和PMI模块监控WAS性能数据的优点有: 1.可以使用非交互的方式远程获取数据 2.不需要图形化模块支持 3.对各种was版本的兼容性较高 4.使用方便,官方自带 缺点也有很多: 1 ...

  4. python常用模块(模块和包的解释,time模块,sys模块,random模块,os模块,json和pickle序列化模块)

    1.1模块 什么是模块: 在计算机程序的开发过程中,随着程序代码越写越多,在一个文件里代码就会越来越长,越来越不容易维护. 为了编写可维护的代码,我们把很多函数分组,分别放到不同的文件里,这样,每个文 ...

  5. threading模块和queue模块实现程序并发功能和消息队列

    简介: 通过三个例子熟悉一下python threading模块和queue模块实现程序并发功能和消息队列. 说明:以下实验基于python2.6 基本概念 什么是进程? 拥有独立的地址空间,内存,数 ...

  6. python数据库操作之pymysql模块和sqlalchemy模块(项目必备)

    pymysql pymsql是Python中操作MySQL的模块,其使用方法和MySQLdb几乎相同. 1.下载安装 pip3 install pymysql 2.操作数据库 (1).执行sql #! ...

  7. python-Day5-深入正则表达式--冒泡排序-时间复杂度 --常用模块学习:自定义模块--random模块:随机验证码--time & datetime模块

    正则表达式   语法:             mport re #导入模块名 p = re.compile("^[0-9]") #生成要匹配的正则对象 , ^代表从开头匹配,[0 ...

  8. 第五十五节,IO多路复用select模块加socket模块,伪多线并发

    IO多路复用select模块加socket模块,伪多线并发,并不是真正的多线程并发,实际通过循环等待还是一个一个处理的 IO多路复用,lo就是文件或数据的输入输出,IO多路复用就是可以多用户操作 IO ...

  9. Python之xml文档及配置文件处理(ElementTree模块、ConfigParser模块)

    本节内容 前言 XML处理模块 ConfigParser/configparser模块 总结 一.前言 我们在<中我们描述了Python数据持久化的大体概念和基本处理方式,通过这些知识点我们已经 ...

  10. Python之数据加密与解密及相关操作(hashlib模块、hmac模块、random模块、base64模块、pycrypto模块)

    本文内容 数据加密概述 Python中实现数据加密的模块简介 hashlib与hmac模块介绍 random与secrets模块介绍 base64模块介绍 pycrypto模块介绍 总结 参考文档 提 ...

随机推荐

  1. Python解析命令行读取参数 -- argparse模块

    在多个文件或者不同语言协同的项目中,python脚本经常需要从命令行直接读取参数.万能的python就自带了argprase包使得这一工作变得简单而规范.PS:optparse包是类似的功能,只不过写 ...

  2. 如何删掉Portal中的无效内容

    1.登陆到https://[PORTALURL]/arcgis/sharing/rest/ 2.使用内容的所有者或者门户管理员的账号登陆. 3.登陆后访问https://[PORTALURL]/arc ...

  3. ED&sol;EP简介

    ED:electronic Deposit,电子存折 EP:electronic Purse,电子钱包 PIN:personal identification number,个人识别码 MAC:Mes ...

  4. MQTT研究

    http://www.jianshu.com/collection/1c742515f8d8 http://blog.csdn.net/gaojq_ios/article/details/481597 ...

  5. Ubuntu命令整理

    linux下find命令的使用和总结 - CS408 - 博客园 ubuntu 命令简写和全称 su:Swith user  切换用户,切换到root用户 cat: Concatenate  串联 u ...

  6. C&num; &period;NET newtonsoft&period;json 多版本冲突解决

    A.DLL 引用了6.0 的 newtonsoft.json  (V2 运行时),B.DLL 引用了10.0 的 newtonsoft.json (V4 运行时). 可以在.CONFIG RUNTIM ...

  7. 摘选改善Python程序的91个建议

    1.理解Pythonic概念 Pythonic Tim Peters 的 <The Zen of Python>相信学过 Python 的都耳熟能详,在交互式环境中输入import thi ...

  8. Oracle&lowbar;plsql&lowbar;开发工具搭建最小化客户端

    一:资源下载获取路径: 二:配置方法 1:前提是安装好plsql开发工具 具体安装步骤略 2:配置 简化版的客户端工具. 具体格式:可以参照下文来修改编写使用. orcl_1521 = (DESCRI ...

  9. JSP组件Telerik UI for JSP发布R1 2019 SP1&vert;附下载

    Telerik UI for JSP拥有由Kendo UI for jQuery支持的40+ JSP组件,同时通过Kendo UI for jQuery的支持能使用JSP封装包构建现代的HTML5和J ...

  10. SVN trunk&lpar;主线&rpar; branch&lpar;分支&rpar; tag&lpar;标记&rpar; 用法详解和详细操作步骤

    使用场景: 假如你的项目(这里指的是手机客户端项目)的某个版本(例如1.0版本)已经完成开发.测试并已经上线了,接下来接到新的需求,新需求的开发需要修改多个文件中的代码,当需求已经开始开发一段时间的时 ...