zoukankan      html  css  js  c++  java
  • 查询纳税账户

    select  gcck.concatenated_segments 科目组合,
    --  xla_oa_functions_pkg.get_ccid_description(gcck.chart_of_accounts_id,gcck.code_combination_id) 科目组合描述,
      gl_flexfields_pkg.get_description_sql(gcck.chart_of_accounts_id, 3,gcck.segment3) 科目描述,
      zrb.tax_rate_code 税代码,
      hou.name 业务实体,
      gl.name 分类账,
      (select fu.description from fnd_user fu where fu.user_id=za.last_updated_by) 更新者,
      (select fu.description from fnd_user fu where fu.user_id=za.created_by) 创建者,
      zrb.rate_type_code 税率类型
    from ZX_ACCOUNTS za
    ,zx_rates_b zrb
    ,gl_ledgers gl
    ,gl_code_combinations_kfv gcck
    ,hr_operating_units hou
    where za.tax_account_entity_id=zrb.tax_rate_id
    and gl.ledger_id=za.ledger_id
    --and gl.name like '1135%'
    and gl.chart_of_accounts_id=gcck.chart_of_accounts_id
    and za.tax_account_ccid=gcck.code_combination_id
    and za.internal_organization_id=hou.organization_id
    --and hou.name like '%橡胶%'
    ;
  • 相关阅读:
    15 鼠标事件
    09 属性操作
    06 DOM操作之插入节点
    03 如何处理多个库$冲突的问题
    01 jquery引入
    08 千千音乐盒实现全选和反选
    03 衣服相册切换效果
    02 显示和隐藏图片
    01 图片切换
    派生
  • 原文地址:https://www.cnblogs.com/lizicheng/p/8711588.html
Copyright © 2011-2022 走看看