查看AR的数据是否传送至总帐

本文档提供了一种方法来检查AR(应收账款)数据是否已传输到总账,涉及调整、发票、收款、核销、杂项收款和应收票据事务处理等多个方面,通过特定日期范围内的数据统计来确定未传送的记录数。
摘要由CSDN通过智能技术生成

参考文档:What to Do When a GL Period is Opened by Mistake (Doc ID 1609071.1)

--收款调整
--未传送到总帐数据:
select count(*) from ar_adjustments_all
 where posting_control_id = -3
   and gl_date between to_date('2014-02-01', 'YYYY-MM-DD') and
       to_date('2014-02-28', 'YYYY-MM-DD');
--应收发票
--未传送到总帐数据:      
select count(*)
  from ra_cust_trx_line_gl_dist_all
 where posting_control_id = -3
   and gl_date between to_date('2014-02-01', 'YYYY-MM-DD') and
       to_date('2014-02-28', 'YYYY-MM-DD');
--收款       
--未传送到总帐数据:
select count(*)
  from ar_cash_receipt_history_all
 where posting_control_id = -3
   and gl_date between to_date('2014-02-01', 'YYYY-MM-DD') and
       to_date('2014-02-28', 'YYYY-MM-DD');
--核销
--未传送到总帐数据:8       
select count(*)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值