|
              
- UID
- 8
- 帖子
- 4390
- 精华
- 223
- 积分
- 22257
- 人气值
- 18685 点
- 努力值
- 32933 点
- 推广注册人数
- 208 个人
- 阅读权限
- 200
- 性别
- 男
- 在线时间
- 3050 小时
- 注册时间
- 2005-3-30
- 最后登录
- 2009-1-9
   ![双子座[05月21-06月21] 双子座[05月21-06月21]](images/common/medal/820054291413.jpg)   
|
楼主
发表于 2005-5-4 20:06
| 只看该作者
如果你的冲销日期有误要修改请参考如下的SQL
select *
from AR_MISC_CASH_DISTRIBUTIONS_ALL t
where t.cash_receipt_id in (cash_receipt_id...);
for update;
select *
from AR_CASH_RECEIPT_HISTORY_ALL t
where t.cash_receipt_id in (cash_receipt_id....)
for update
其中cash_receipt_id 可以根据如下的SQL得到
select CASH_RECEIPT_ID
from AR_CASH_RECEIPTS_ALL
where RECEIPT_NUMBER in
( 'receipt_number');
in中为收款编号 |
|