UNPOSTED ITEMS REPORT SHOWS UNPOSTED QUICK CASH

本文介绍了解决ERP系统中出现的未过账现金批次问题的方法。针对无法正常过账的情况,提供了一套详细的检查步骤及解决方案,包括如何重置请求ID和操作请求ID,确保数据一致性。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Problem Description:
===================
You have rows on the 'Unposted Items Report.'   The legend says that 'This
receipt is part of an unposted quick cash batch.' There are no quickcash
batches that show ready to import.

Problem Explanation:
===================
Receipts are showing on the 'Unposted Items Report'.
Message 'This receipt is part of an unposted quick cash batch'
is on the bottom of the page.  The credit column is blank.

There are no quick cash batches showing on the form, which is used to post
quick cash batches.

These records exist on the ar_interim_cash_receipts table.  There are no rows
on ar_cash_receipts for the same cash_receipt_id.  The batch_id of the receipts
is obtainable from ar_interim_cash_receipts.  The batch may have a
batch_applied_status of 'POST BATCH WAITING' and a status of 'OP', but not
always.

Use these scripts to look at the data:

Select cash_receipt_id,batch_id
From ar_interim_cash_receipts_all
Where receipt_number = &receiptnumber;

See if the cash_receipt_id exists on ar_cash_receipts;

Select cash_receipt_id
From ar_cash_receipts_all
Where cash_receipt_id = &cashrecid;

If it dosen't exist, then what probably happened is that the post quick cash
batch process abended.  See solution.

Solution Description:
====================
If the cash_receipt_id does not exist on AR_CASH_RECEIPTS_ALL, then the post
quick cash process probably abended.   You need to reset the request_id and the
operation_request_id to null for that batch_id;

Solution Explanation:
====================

Step 1.
-------

Obtain the batch_id from ar_interim_cash_receipts_all for this receipt_number.

Select batch_id,cash_receipt_id,receipt_number
From ar_interim_cash_receipts_all
Where gl_date between '01-MAR-98' and '31-MAR-98';

(use the date range for your GL period)

Select batch_id,batch_applied_status,status,operation_request_id
From ar_batches
Where batch_id =&batchid;

Step 2.
-------

If the batch_applied_status is not = 'POSTBATCH_WAITING' 
and the cash_receipt_id does not exist on ar_cash_receipts_all, then: 

Update ar_batches
Set request_id = null,
    batch_applied_status = 'POSTBATCH_WAITING',
    status = 'OP',
    operation_request_id = null
Where batch_id = &batch_id;
commit;

Step 3.
-------
Select your batch for Quick Cash Posting.

Step 4.
-------
Run your General Ledger Posting.




Search Words:
============
Post Quick Cash Unposted ARGLTP Unposted Receipt Receipts
failed terminated abended killed stopped postbatch post
batch interim lockbox

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值