zoukankan      html  css  js  c++  java
  • Oracle EBS 日记账

    select b.status,
           h.je_source,
           (select USER_JE_CATEGORY_NAME
              from GL_JE_CATEGORIES
             where JE_CATEGORY_NAME = h.je_category) je_category,
           B.DEFAULT_PERIOD_NAME,
           b.name,
           h.name,
           h.currency_code,
           b.running_total_dr,
           b.running_total_cr,
           h.description,
           h.period_name,
           h.default_effective_date,
           (select gcc.concatenated_segments
              from gl_code_combinations_kfv gcc
             where gcc.code_combination_id = l.code_combination_id) concatenated_segments,
           l.accounted_dr,
           l.accounted_cr,
           l.description,
           l.context,
           l.attribute1,
           l.attribute2,
           l.attribute3,
           l.attribute4,
           l.attribute5,
           l.attribute6,
           l.attribute7,
           l.attribute8,
           l.attribute9,
           l.attribute10,
           l.attribute11,
           l.attribute12,
           l.attribute13,
           l.attribute14,
           l.attribute15,
           l.attribute16,
           l.attribute17,
           l.attribute18,
           l.attribute19,
           l.attribute20
      from gl_je_batches b, gl_je_headers h, gl_je_lines l
     where b.je_batch_id = h.je_batch_id
       AND (h.display_alc_journal_flag = 'Y' or
           h.display_alc_journal_flag is null)
       and h.je_header_id = l.je_header_id
       and h.je_source = 'Manual'
       and h.doc_sequence_value like '5020%'
       and b.default_period_name = 'JAN-17'
    土豆君
  • 相关阅读:
    IGV解读
    box-cox解读
    linux命令eval的用法
    R中导入excel乱码的解决办法
    Django下实现HelloWorld
    python的list求和与求积
    win10下安装Django
    python下实现汉诺塔
    (stm32f103学习总结)—DS18B20
    (stm32f103学习总结)—GPIO结构
  • 原文地址:https://www.cnblogs.com/jenrry/p/10006534.html
Copyright © 2011-2022 走看看