DBA Data[Home] [Help]

APPS.WIP_MASS_LOAD_UTILITIES dependencies on WIP_MASS_LOAD_UTILITIES

Line 1: PACKAGE BODY WIP_MASS_LOAD_UTILITIES AS

1: PACKAGE BODY WIP_MASS_LOAD_UTILITIES AS
2: /* $Header: wipmlutb.pls 115.10 2002/12/12 15:02:21 rmahidha ship $ */
3:
4:
5: procedure set_current_message(message varchar2) is

Line 7: WIP_MASS_LOAD_UTILITIES.CURRENT_MESSAGE := message ;

3:
4:
5: procedure set_current_message(message varchar2) is
6: begin
7: WIP_MASS_LOAD_UTILITIES.CURRENT_MESSAGE := message ;
8: end set_current_message ;
9:
10:
11: function get_current_message return varchar2 is

Line 13: return WIP_MASS_LOAD_UTILITIES.CURRENT_MESSAGE ;

9:
10:
11: function get_current_message return varchar2 is
12: begin
13: return WIP_MASS_LOAD_UTILITIES.CURRENT_MESSAGE ;
14: end get_current_message ;
15:
16:
17: procedure record_bad_query(x_statement in varchar2) is

Line 114: wip_mass_load_utilities.set_current_message(substr(fnd_message.get,1,500)) ;

110:
111: -- Grab the message at the top of the Fnd_Message stack, truncating it
112: -- to 500 characters (the width of WIP_INTERFACE_ERRORS.ERROR) if necessary.
113: -- Store its text so that we can retrieve it with get_current_message().
114: wip_mass_load_utilities.set_current_message(substr(fnd_message.get,1,500)) ;
115:
116: /* Insert records into the Errors table if appropriate */
117:
118: x_statement := '

Line 127: wip_mass_load_utilities.get_current_message,

123: )
124: SELECT
125: INTERFACE_ID,
126: ' || to_char(x_error_type) || ',
127: wip_mass_load_utilities.get_current_message,
128: LAST_UPDATE_DATE,
129: LAST_UPDATED_BY,
130: CREATION_DATE,
131: CREATED_BY,

Line 162: END WIP_MASS_LOAD_UTILITIES;

158:
159: END Error;
160:
161:
162: END WIP_MASS_LOAD_UTILITIES;