DBA Data[Home] [Help]

APPS.WIP_INTERFACE_ERR_UTILS dependencies on WIP_INTERFACE_ERRORS

Line 4: --- Added a new Autonomous procedure to insert errors into wip_interface_errors table.

1: package body WIP_INTERFACE_ERR_Utils as
2: /* $Header: wipieutb.pls 120.6.12020000.2 2012/08/24 09:06:24 akuppa ship $ */
3:
4: --- Added a new Autonomous procedure to insert errors into wip_interface_errors table.
5: --- This is added for bug 5124822
6:
7: procedure insert_error(p_interface_id IN number,
8: p_error_type IN Varchar2,

Line 130: -- This API will insert a record into wip_interface_errors table

126: END load_errors;
127:
128:
129: -- The following API is added for bug fix 5124822
130: -- This API will insert a record into wip_interface_errors table
131: -- and commit it immediately. But this is an autonomous transcation
132:
133: procedure insert_error(p_interface_id IN number,
134: p_error_type IN Varchar2,

Line 143: insert into wip_interface_errors

139: p_last_update_login IN Number,
140: p_updated_by IN Number) is
141: PRAGMA AUTONOMOUS_TRANSACTION;
142: Begin
143: insert into wip_interface_errors
144: (interface_id,
145: error_type,
146: error,
147: last_update_date,