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'
    土豆君
  • 相关阅读:
    【转】杭电ACM试题分类
    python strip()函数介绍
    正则表达式的语法规则
    POSIX扩展正则表达式函数
    JS学习笔记
    PCRE兼容正则表达式函数
    vs 2008 feature pack 之体验
    #单元测试
    300道四则运算题
    观后感
  • 原文地址:https://www.cnblogs.com/jenrry/p/10006534.html
Copyright © 2011-2022 走看看