zoukankan      html  css  js  c++  java
  • GL中本位币借贷不平的处理方法

    仅供引用参考,实际请联系Oracle Support索取Datafix。 

    --Journal name:GL-SGA 042010-18

    select * from gl.gl_je_batches where je_batch_id=571585 

    --running_total_accounted_dr=-165850.88,running_total_accounted_dr=-165850.86

    select * from gl.gl_je_headers where je_header_id=377429

    --running_total_accounted_dr=-165850.88,running_total_accounted_dr=-165850.86

    select * from gl.gl_je_lines where je_header_id=377429 and je_line_num=2

    --accounted_dr=-34312.79

     

    update gl.gl_je_batches

    set running_total_accounted_dr=-165850.86

    where je_batch_id=571585

     

    update gl.gl_je_headers 

    set running_total_accounted_dr=-165850.86

    where je_header_id=377429

     

    update gl.gl_je_lines

    set accounted_dr=-34312.77

    where je_header_id=377429 and je_line_num=2

     

     

    --Journal name:GL-SGA 042010-19

    select * from gl.gl_je_batches where je_batch_id=571584 

    --running_total_accounted_dr=1790149.05,running_total_accounted_cr=1790149.03

    select * from gl.gl_je_headers where je_header_id=377427 

    --running_total_accounted_dr=1790149.05,running_total_accounted_cr=1790149.03

    select * from gl.gl_je_lines where je_header_id=377427 and je_line_num=3

    --accounted_dr=-272693.54

     

    update gl.gl_je_batches

    set running_total_accounted_dr=1790149.03

    where je_batch_id=571584

     

    update gl.gl_je_headers 

    set running_total_accounted_dr=1790149.03

    where je_header_id=377427

     

    update gl.gl_je_lines

    set accounted_dr=-272693.52

    where je_header_id=377427 and je_line_num=3

  • 相关阅读:
    C++ 课程设计——电梯调度系统
    PAT 1006 Sign In and Sign Out 查找元素
    PAT 1005 Spell It Right 字符串处理
    C++ 词汇表
    四六级分数竟是这样算出来的!交白卷都不会得零分 (转)
    以太坊智能合约部署
    如何设计一个通证经济体系?(转载)
    以太坊上那些暴力“利”的应用(转载)
    geth搭建以太坊私链及常用操作
    ubuntu18.04 安装 QQ
  • 原文地址:https://www.cnblogs.com/benio/p/2580167.html
Copyright © 2011-2022 走看看