DBA Data[Home] [Help]

APPS.JL_CO_GL_MG_MEDIA_PKG dependencies on UTL_FILE

Line 33: x_file_handle UTL_FILE.FILE_TYPE;

29:
30: count_process_flag NUMBER := 0;
31: count_status NUMBER := 0;
32:
33: x_file_handle UTL_FILE.FILE_TYPE;
34:
35: TYPE get_movement_record IS RECORD (
36: mg_header_id jl_co_gl_mg_headers.mg_header_id%TYPE,
37: mg_line_id jl_co_gl_mg_lines.mg_line_id%TYPE,

Line 107: WHEN UTL_FILE.INVALID_PATH THEN

103: fnd_file.put_line(which, buffer);
104:
105: EXCEPTION
106:
107: WHEN UTL_FILE.INVALID_PATH THEN
108:
109: fnd_message.set_name('JL', 'JL_CO_GL_MG_INVALID_PATH');
110: x_error_text := SUBSTR(fnd_message.get, 1, 100);
111: app_exception.raise_exception (exception_type => 'APP',

Line 116: WHEN UTL_FILE.INVALID_MODE THEN

112: exception_code =>
113: jl_zz_fa_utilities_pkg.get_app_errnum('JL', 'JL_CO_GL_MG_INVALID_PATH'),
114: exception_text => x_error_text);
115:
116: WHEN UTL_FILE.INVALID_MODE THEN
117:
118: fnd_message.set_name('JL', 'JL_CO_GL_MG_INVALID_MODE');
119: x_error_text := SUBSTR(fnd_message.get, 1, 100);
120: app_exception.raise_exception (exception_type => 'APP',

Line 125: WHEN UTL_FILE.WRITE_ERROR THEN

121: exception_code =>
122: jl_zz_fa_utilities_pkg.get_app_errnum('JL', 'JL_CO_GL_MG_INVALID_MODE'),
123: exception_text => x_error_text);
124:
125: WHEN UTL_FILE.WRITE_ERROR THEN
126:
127: fnd_message.set_name('JL', 'JL_CO_GL_MG_WRITE_ERROR');
128: x_error_text := SUBSTR(fnd_message.get, 1, 100);
129: app_exception.raise_exception (exception_type => 'APP',

Line 134: WHEN UTL_FILE.INVALID_FILEHANDLE THEN

130: exception_code =>
131: jl_zz_fa_utilities_pkg.get_app_errnum('JL', 'JL_CO_GL_MG_WRITE_ERROR'),
132: exception_text => x_error_text);
133:
134: WHEN UTL_FILE.INVALID_FILEHANDLE THEN
135:
136: fnd_message.set_name('JL', 'JL_CO_GL_MG_INVALID_FILEHANDLE');
137: x_error_text := SUBSTR(fnd_message.get, 1, 100);
138: app_exception.raise_exception (exception_type => 'APP',

Line 143: WHEN UTL_FILE.INVALID_OPERATION THEN

139: exception_code =>
140: jl_zz_fa_utilities_pkg.get_app_errnum('JL', 'JL_CO_GL_MG_INVALID_FILEHANDLE'),
141: exception_text => x_error_text);
142:
143: WHEN UTL_FILE.INVALID_OPERATION THEN
144:
145: fnd_message.set_name('JL', 'JL_CO_GL_MG_INVALID_OPERATION');
146: x_error_text := SUBSTR(fnd_message.get, 1, 100);
147: app_exception.raise_exception (exception_type => 'APP',