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

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 1591|回复: 0

未审批报销单

[复制链接]
发表于 2007/9/27 19:25:44 | 显示全部楼层 |阅读模式

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

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

x
WORKFLOW_APPROVED_FLAG 为W表示该报销单被撤回。



  1. select a.WORKFLOW_APPROVED_FLAG,
  2.        a.expense_status_code,
  3.        a.EXPENSE_CURRENT_APPROVER_ID,
  4.        a.created_by,
  5.       
  6.        g.segment1,
  7.        a.invoice_num,
  8.        c.last_name,
  9.        a.creation_date,
  10.        replace(a.description, ',', ',')  description,
  11.        (select cc.last_name
  12.           from hr_employees cc, per_assignments_f dd
  13.          where cc.employee_id = dd.PERSON_ID
  14.            and cc.employee_id = a.expense_current_approver_id
  15.            and (sysdate between dd.EFFECTIVE_START_DATE and
  16.                dd.EFFECTIVE_END_DATE)
  17.         
  18.         ) current_approver_name,
  19.       
  20.        b.item_description,
  21.        g.segment1 || '.' || g.segment2 || '.' || g.segment3 || '.' ||
  22.        g.segment4 || '.' || g.segment5 || '.' || g.segment6 || '.' ||
  23.        g.segment7 || '.' || g.segment8 segments,
  24.        b.amount,
  25.        replace(b.JUSTIFICATION, ',', ',')  JUSTIFICATION
  26.   from ap_expense_report_headers_all a,
  27.        ap_expense_report_lines_all   b,
  28.        hr_employees                  c,
  29.        per_assignments_f             d,
  30.        hr_organization_units         e,
  31.        gl_code_combinations          g
  32. where a.REPORT_HEADER_ID = b.REPORT_HEADER_ID
  33.    and c.employee_id = d.PERSON_ID
  34.    and a.employee_id = c.employee_id
  35.    and d.ORGANIZATION_ID = e.organization_id
  36.    and g.code_combination_id = b.code_combination_id
  37.    and (sysdate between d.EFFECTIVE_START_DATE and d.EFFECTIVE_END_DATE)
  38.       --and a.invoice_num = 'W105736'
  39.       --and a.invoice_num = 'W26370'
  40.    and a.expense_status_code = 'PENDMGR'
  41.    and (a.WORKFLOW_APPROVED_FLAG <> 'W' or a.WORKFLOW_APPROVED_FLAG is null)
  42.    and to_date(to_char(a.creation_date, 'YYYYMMDD'), 'YYYYMMDD') between
  43.        gp_start_date and gp_end_date
  44.    and a.org_id = gp_org_id
  45. order by c.last_name, a.invoice_num;
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

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

GMT+8, 2025/11/30 07:32 , Processed in 0.009982 second(s), 14 queries , File On.

Powered by Discuz! X3.4

Copyright © 2001-2020, Tencent Cloud.

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