How to re-process those records stuck in mtl_transactions_interface with error_code 'Oracle error' ?
We are trying to perform misc.receipt through material transactions interface. But some records stuck with the error_code 'Oracle error' and error_explanation 'One or more transactions failed for this group of records.'
When we tried to re-process using below script, it is still failing with the same error_code 'Oracle error' but this time error explanation is blank. Please advise how to re-process these records successfuly ?
UPDATE apps.MTL_TRANSACTIONS_INTERFACE
SET PROCESS_FLAG = 1,
LOCK_FLAG = 2,
TRANSACTION_MODE = 3,
ERROR_CODE = NULL ,
error_explanation = null
WHERE PROCESS_FLAG = 3
AND source_line_id = 3199131
Thanks,
Saravanan