How to Rollback SSHR Transaction in Oracle Self Service
How to Rollback SSHR Transaction in oracle apps.
begin
hr_transaction_api.rollback_transaction(p_transaction_id);
end;
commit;
Note:
p_transaction_id is the transaction_id that you will find in hr_api_transaction table.
After executing the above statement you will not find any record in hr_api_transaction
How to Rollback SSHR Transaction in oracle apps.
begin
hr_transaction_api.rollback_transaction(p_transaction_id);
end;
commit;
Note:
p_transaction_id is the transaction_id that you will find in hr_api_transaction table.
After executing the above statement you will not find any record in hr_api_transaction
No comments:
Post a Comment