DBA Data[Home] [Help]

APPS.WIP_INTERFACE_ERR_UTILS dependencies on WIP_INTERFACE_ERRORS

Line 9: error_type wip_interface_errors.error_type %type,

5: -- with three columns: Interface_id, error_type and error
6:
7: type request_error is record (
8: interface_id number,
9: error_type wip_interface_errors.error_type %type,
10: error wip_interface_errors.error %type
11: ) ;
12:
13: type error_list is table of request_error index by binary_integer ;

Line 10: error wip_interface_errors.error %type

6:
7: type request_error is record (
8: interface_id number,
9: error_type wip_interface_errors.error_type %type,
10: error wip_interface_errors.error %type
11: ) ;
12:
13: type error_list is table of request_error index by binary_integer ;
14:

Line 30: -- Copy all errors from current_errors into WIP_INTERFACE_ERRORS.

26: -- Add an error message into PL/SQL table current_errors.
27:
28: Procedure load_errors;
29:
30: -- Copy all errors from current_errors into WIP_INTERFACE_ERRORS.
31:
32: end WIP_INTERFACE_ERR_Utils;