DBA Data[Home] [Help]

APPS.ERROR_HANDLER dependencies on MTL_INTERFACE_ERRORS

Line 2398: Error_Handler.Write_Debug('Writing the messages into MTL_INTERFACE_ERRORS table : ');

2394: l_program_upd_date DATE := Null;
2395:
2396: BEGIN
2397:
2398: Error_Handler.Write_Debug('Writing the messages into MTL_INTERFACE_ERRORS table : ');
2399:
2400: Error_Handler.Write_Debug('Number of Messages = ' || G_Error_Table.COUNT);
2401:
2402: IF l_request_id <> - 1

Line 2414: INSERT INTO mtl_interface_errors

2410:
2411: FOR l_idx IN 1..G_Error_Table.COUNT
2412: LOOP
2413:
2414: INSERT INTO mtl_interface_errors
2415: ( organization_id
2416: , unique_id
2417: , last_update_date
2418: , last_updated_by

Line 2453: /* Fix for bug 4661753 - Insert message_name from G_Error_Table into mtl_interface_errors above.

2449: , G_Error_Table(l_idx).row_identifier
2450: , G_Error_Table(l_idx).entity_id
2451: , G_Error_Table(l_idx).bo_identifier);
2452:
2453: /* Fix for bug 4661753 - Insert message_name from G_Error_Table into mtl_interface_errors above.
2454: Populate unique_id using mtl_system_items_interface_s sequence. */
2455:
2456: END LOOP;
2457: