壹佰网|ERP100 - 企业信息化知识门户

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 9022|回复: 8

订单信息表

[复制链接]
发表于 2006/5/15 08:01:43 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。如果您注册时有任何问题请联系客服QQ: 83569622  。

您需要 登录 才可以下载或查看,没有帐号?注册

x
select a.order_number || '' as order_number,
       a.cust_po_number,
       a.sold_to_org_id as customer_id,
       a.salesrep_id as salesrep_id,
       b.name as salesrep_name,
       c.customer_name,
       c.customer_number,
       (select sum(nvl(t.ordered_quantity * t.unit_selling_price, 0))
          from apps.oe_order_lines_all t
         where t.header_id = a.header_id) payment_amount,
      
       aa.ordered_item,
       aa.attribute15,
       aa.attribute16

  from ont.oe_order_headers_all a,
       ont.oe_order_lines_all   aa,
       jtf.JTF_RS_SALESREPS     b,
       apps.ra_customers        c
where a.salesrep_id = b.salesrep_id(+)
   and a.sold_to_org_id = c.customer_id(+)
   and a.org_id = 85
   and aa.header_id = a.header_id
   and a.BOOKED_FLAG = 'Y'
   AND a.CANCELLED_FLAG = 'N'
   AND a.OPEN_FLAG = 'Y'
   AND a.FLOW_STATUS_CODE = 'BOOKED'
order by a.order_number, aa.line_id
发表于 2006/7/6 09:43:38 | 显示全部楼层
呵呵,偶不懂,偶是来骗分的。
发表于 2006/7/15 09:38:13 | 显示全部楼层
邊頂邊學了....
发表于 2006/10/12 14:19:45 | 显示全部楼层
一定要顶
发表于 2006/10/31 20:08:08 | 显示全部楼层
顶~~~~
发表于 2006/12/16 15:01:42 | 显示全部楼层
我在用 这个 salesERP_id 这个字段的时候 郁闷了
 楼主| 发表于 2006/12/16 15:03:41 | 显示全部楼层
原帖由 gaoyiming 于 2006-12-16 15:01 发表
我在用 这个 saleserp_id 这个字段的时候 郁闷了



销售人员:oe_order_headers_all. salesrep_id关联jtf.JTF_RS_SALESREPS.salesrep_id,然后在jtf.JTF_RS_SALESREPS表中得到销售人员的person_id,然后利用如下的SQL取上下级关系.
代码如下:
select t.salesrep_id,t.person_id from jtf.JTF_RS_SALESREPS t where t.person_id is not null
取上下级的
SQL:


  1. select a.LAST_NAME 员工姓名,
  2.        a.PERSON_ID 员工ID,
  3.        a.SEX 性别,
  4.        a.EMAIL_ADDRESS 电子邮件,
  5.        b.ORGANIZATION_ID,
  6.        aa.LAST_NAME 主管姓名,
  7.        aa.EMAIL_ADDRESS 主管email
  8.   from per_people_f a, PER_ASSIGNMENTS_F b, per_people_f aa
  9. where a.PERSON_ID = b.person_id
  10.    and sysdate between b.EFFECTIVE_START_DATE and b.EFFECTIVE_END_DATE
  11.    and sysdate between a.EFFECTIVE_START_DATE and a.EFFECTIVE_END_DATE
  12.    and sysdate between aa.EFFECTIVE_START_DATE and aa.EFFECTIVE_END_DATE
  13.    and a.PERSON_TYPE_ID <> 9
  14.    and b.SUPERVISOR_ID = aa.PERSON_ID
复制代码
发表于 2006/12/16 15:06:47 | 显示全部楼层
特别感谢  
发表于 2006/12/18 10:15:21 | 显示全部楼层
受用了
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|Archiver|小黑屋|手机版|壹佰网 ERP100 ( 京ICP备19053597号-2 )

Copyright © 2005-2012 北京海之大网络技术有限责任公司 服务器托管由互联互通
手机:13911575376
网站技术点击发送消息给对方83569622   广告&合作 点击发送消息给对方27675401   点击发送消息给对方634043306   咨询及人才点击发送消息给对方138011526

GMT+8, 2025/11/30 11:37 , Processed in 0.014569 second(s), 16 queries , File On.

Powered by Discuz! X3.4

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表