Fault Handler in Oracle Integration Cloud
Fault handling in Oracle Integration Cloud (OIC) Fault handling in Oracle Integration Cloud (OIC) is an essential mechanism for managing errors that occur during integration execution. It is like fixing a problem when it happens so it doesn't go ignored. Purpose Instead of allowing an integration to fail silently, fault handling logic executes recovery actions or notifies the appropriate persons. Common techniques include: Email Notifications: Sending email about error codes, messages, and details to business or support teams for rectification. Audit Tables: Dumping error records and instance IDs into custom tables (such as ATP or DBAS) for periodic review and tracking. Generic Error Handlers: Building a single, reusable REST API integration for error handling that can be invoked by multiple other integrations to save time and avoid repetitive tasks. Bulk Record Handling: For high-volume data loads (like FBDI), failed records can be stored in a file and em...