Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1801533
  • 博文数量: 334
  • 博客积分: 11301
  • 博客等级: 上将
  • 技术积分: 3452
  • 用 户 组: 普通用户
  • 注册时间: 2006-10-18 10:19
个人简介

路虽弥,不行不至;事虽少,不做不成。

文章分类

全部博文(334)

文章存档

2013年(4)

2012年(19)

2011年(27)

2010年(71)

2009年(45)

2008年(15)

2007年(84)

2006年(69)

分类: Oracle

2010-04-21 16:06:29

Note: It has the same functionality with XLA
 
select mta.transaction_id,
       mmt.organization_id,
       msi.segment1,
       mta.transaction_date,
       mta.primary_quantity,
       gcc.segment1 || '.' || gcc.segment2 || '.' || gcc.segment3 || '.' ||
       gcc.segment4 || '.' || gcc.segment5 account,
       DECODE(SIGN(mta.transaction_value),
              1,
              mta.transaction_value,
              0,
              0,
              NULL,
              DECODE(SIGN(mta.base_transaction_value),
                     1,
                     mta.base_transaction_value,
                     NULL)) Entered_Dr,
       DECODE(SIGN(mta.transaction_value),
              -1,
              (-1 * mta.transaction_value),
              0,
              0,
              NULL,
              DECODE(SIGN(mta.base_transaction_value),
                     -1,
                     (-1 * mta.base_transaction_value))) Entered_Cr,
       DECODE(SIGN(mta.base_transaction_value),
              1,
              mta.base_transaction_value,
              0,
              0,
              NULL) Accounted_Dr,
       DECODE(SIGN(mta.base_transaction_value),
              -1,
              (-1 * mta.base_transaction_value),
              0,
              0,
              NULL) Accounted_Cr,
       gh.currency_code,
       mtt.transaction_type_name,
       decode(mta.gl_batch_id, -1, 'N', 'Y') "Transfered_Flag",
       mta.gl_batch_id,
       gh.je_header_id
  from inv.mtl_material_transactions mmt,
       inv.mtl_transaction_types     mtt,
       inv.mtl_system_items_b        msi,
       inv.mtl_transaction_accounts  mta,
       gl.gl_code_combinations       gcc,
       gl.gl_je_batches              gb,
       gl.gl_je_headers              gh,
       gl.gl_je_lines                gl,
       gl.gl_import_references       gr
 where mmt.organization_id = msi.organization_id
   and msi.inventory_item_id = mmt.inventory_item_id
   and mmt.transaction_id = mta.transaction_id
   and gcc.code_combination_id = mta.reference_account
   and mtt.transaction_type_id = mmt.transaction_type_id
   and gb.je_batch_id = gh.je_batch_id
   and gh.je_header_id = gl.je_header_id
   and gl.code_combination_id = mta.reference_account
   and mta.gl_batch_id =
       to_number(substr(gb.name, 1, instr(gb.name, ' ') - 1))
   and gh.je_Category = 'MTL'
   and gh.je_source = 'Inventory'
   and gh.name = 'MTL CNY'
   and gl.je_line_num = gr.je_line_num
   and gr.je_header_id = gl.je_header_id
   and gr.je_line_num = gl.je_line_num
   and mta.gl_batch_id = gr.reference_1
   and gh.period_name = '&period_name'
   and upper(gb.name) like upper('%&gl_batch_name%')
 order by 1
 
阅读(1395) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~