博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
组织架构查询脚本
阅读量:5282 次
发布时间:2019-06-14

本文共 875 字,大约阅读时间需要 2 分钟。

select gl.ledger_id,       gl.name ledger_name,       substr(gl.name, 1, 4) com_num,        xfiv.legal_entity_identifier legal_id,        xfiv.name legal_name,       hou.organization_id ou_id, --org_id       hou.name  ou_name, --ou名称       ood.organization_id  inv_id, --库存组织 id       ood.organization_code  inv_code, --库存组织代码       ood.ORGANIZATION_NAME inv_name  from hr_organization_information  hoi, --组织分类表       hr_operating_units           hou, --ou视图       org_organization_definitions ood, --库存组织定义视图       xle_firstparty_information_v xfiv, --法人实体视图       gl_ledgers gl --账簿where hoi.org_information1 = 'OPERATING_UNIT'   and hoi.organization_id = hou.organization_id   and ood.operating_unit= hoi.organization_id   and ood.LEGAL_ENTITY=xfiv.legal_entity_id   and hou.set_of_books_id=gl.ledger_idorder by gl.name

 

转载于:https://www.cnblogs.com/lizicheng/p/8707154.html

你可能感兴趣的文章
文件序列化
查看>>
jQuery之end()和pushStack()
查看>>
Bootstrap--响应式导航条布局
查看>>
Learning Python 009 dict(字典)和 set
查看>>
JavaScript中随着鼠标拖拽而移动的块
查看>>
HDU 1021 一道水题
查看>>
The operation couldn’t be completed. (LaunchServicesError error 0.)
查看>>
php每天一题:strlen()与mb_strlen()的作用分别是什么
查看>>
工作中收集JSCRIPT代码之(下拉框篇)
查看>>
《转载》POI导出excel日期格式
查看>>
code异常处理
查看>>
git - 搭建最简单的git server
查看>>
会话控制
查看>>
推荐一款UI设计软件Balsamiq Mockups
查看>>
Linux crontab 命令格式与详细例子
查看>>
百度地图Api进阶教程-地图鼠标左右键操作实例和鼠标样式6.html
查看>>
游标使用
查看>>
LLBL Gen Pro 设计器使用指南
查看>>
SetCapture() & ReleaseCapture() 捕获窗口外的【松开左键事件】: WM_LBUTTONUP
查看>>
Android 设置界面的圆角选项
查看>>