|
看看这个有没有数据:
select * from mtl_material_transactions mmt
where transaction_date >= to_date('2009/07/01','yyyy/mm/dd')
and transaction_date <= to_date('2009/07/31','yyyy/mm/dd') + 0.99999
and ORGANIZATION_ID =53
and costed_flag IN ( 'N','E')
如果有的话
update mtl_material_transactions mmt
set costed_flag = 'N',
request_id = NULL,
transaction_group_id= NULL,
error_code = NULL,
error_explanation = NULL
where costed_flag in ('E','N') |
|