DBA Data[Home] [Help]

APPS.JL_CO_GL_MG_MEDIA_PKG dependencies on UTL_FILE

Line 24: x_file_handle UTL_FILE.FILE_TYPE;

20:
21: count_process_flag NUMBER := 0;
22: count_status NUMBER := 0;
23:
24: x_file_handle UTL_FILE.FILE_TYPE;
25:
26: TYPE get_movement_record IS RECORD (
27: mg_header_id jl_co_gl_mg_headers.mg_header_id%TYPE,
28: mg_line_id jl_co_gl_mg_lines.mg_line_id%TYPE,

Line 98: WHEN UTL_FILE.INVALID_PATH THEN

94: fnd_file.put_line(which, buffer);
95:
96: EXCEPTION
97:
98: WHEN UTL_FILE.INVALID_PATH THEN
99:
100: fnd_message.set_name('JL', 'JL_CO_GL_MG_INVALID_PATH');
101: x_error_text := SUBSTR(fnd_message.get, 1, 100);
102: app_exception.raise_exception (exception_type => 'APP',

Line 107: WHEN UTL_FILE.INVALID_MODE THEN

103: exception_code =>
104: jl_zz_fa_utilities_pkg.get_app_errnum('JL', 'JL_CO_GL_MG_INVALID_PATH'),
105: exception_text => x_error_text);
106:
107: WHEN UTL_FILE.INVALID_MODE THEN
108:
109: fnd_message.set_name('JL', 'JL_CO_GL_MG_INVALID_MODE');
110: x_error_text := SUBSTR(fnd_message.get, 1, 100);
111: app_exception.raise_exception (exception_type => 'APP',

Line 116: WHEN UTL_FILE.WRITE_ERROR THEN

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

Line 125: WHEN UTL_FILE.INVALID_FILEHANDLE THEN

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

Line 134: WHEN UTL_FILE.INVALID_OPERATION THEN

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