博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
查询物料PAC单位成本
阅读量:4952 次
发布时间:2019-06-11

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

select  cpp.period_name       期间名称, ccga.organization_id  组织ID, ood.ORGANIZATION_CODE 组织代码, OOD.ORGANIZATION_NAME 组织名称, msib.inventory_item_id 物料ID, msib.segment1 物料编码, msib.description 物料名称, msib.primary_uom_code 单位, cppb.txn_category 类型, cppb.txn_category_qty 数量, round(decode(cppb.txn_category_qty, 0, 0,cppb.txn_category_value / cppb.txn_category_qty),5) 单位成本, round(cppb.txn_category_value,2) 金额, cppb.period_quantity 期间数量, cppb.periodic_cost 期间成本, round(cppb.period_balance,2) 期间金额, round(cppb.variance_amount,2) 差异  from cst_pac_period_balances      cppb,       mtl_system_items_b           msib,       cst_pac_periods              cpp,       cst_cost_groups              ccg,       cst_cost_group_assignments   ccga,       org_organization_definitions ood where cppb.inventory_item_id = msib.inventory_item_id   and msib.organization_id = ccga.organization_id   and cpp.period_name = '&period_name'  and ood.ORGANIZATION_CODE=nvl('&organization_code',ood.ORGANIZATION_CODE)  and msib.segment1='&item_code'  and ood.OPERATING_UNIT=nvl('&ou_id',ood.OPERATING_UNIT)   and cpp.pac_period_id = cppb.pac_period_id   and ccg.cost_group_id = cppb.cost_group_id   and ccg.cost_group_id = ccga.cost_group_id   and ood.ORGANIZATION_ID = ccga.organization_id;

 

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

你可能感兴趣的文章
python--迭代器与生成器
查看>>
SQL之case when then用法详解
查看>>
STL 排序函数
查看>>
Microsoft Dynamics CRM 2011 面向Internet部署 (IFD) ADFS虚拟机环境搭建的步骤(CRM与ADFS装在同一台服务器上) 摘自网络...
查看>>
Setting up a Passive FTP Server in Windows Azure VM(ReplyCode: 227, Entering Passive Mode )
查看>>
Atitit mtp ptp rndis midi协议的不同区别
查看>>
Ajax辅助方法
查看>>
Python模块调用
查看>>
委托的调用
查看>>
c#中从string数组转换到int数组
查看>>
Scrapy入门程序点评
查看>>
DotNetty网络通信框架学习之源码分析
查看>>
8.1 Android Basic 数据存储 Preferences Structured(分组的Preferences)
查看>>
原因和证明
查看>>
VC6.0图像处理2--图像的反色
查看>>
Snoop, 对WPF程序有效的SPY++机制
查看>>
JAVA程序猿怎么才干高速查找到学习资料?
查看>>
使用axel下载百度云文件
查看>>
Qt中图像的显示与基本操作
查看>>
详解软件工程之软件测试
查看>>