DBA Data[Home] [Help]

APPS.ZX_TEST_API dependencies on UTL_FILE

Line 52: g_file := UTL_FILE.FOPEN(p_file_dir,

48: l_line_max_size := 32767;
49: -------------------------------
50: -- Open the file to process.
51: -------------------------------
52: g_file := UTL_FILE.FOPEN(p_file_dir,
53: p_file_name,
54: 'r',
55: l_line_max_size);
56: x_return_status := 'SUCCESS';

Line 82: UTL_FILE.FCLOSE_ALL;

78: BEGIN
79: -------------------------------
80: -- Close the file.
81: -------------------------------
82: UTL_FILE.FCLOSE_ALL;
83: x_return_status := 'SUCCESS';
84:
85: EXCEPTION
86: WHEN OTHERS THEN

Line 191: UTL_FILE.GET_LINE ( g_file,

187: IF g_initial_file_reading_flag = 'Y' THEN
188: -------------------------------------------------
189: -- Get a Line from the file and put it in buffer
190: -------------------------------------------------
191: UTL_FILE.GET_LINE ( g_file,
192: g_line_buffer);
193: x_return_status := 'SUCCESS';
194: g_initial_file_reading_flag := 'N';
195: ELSE

Line 216: UTL_FILE.GET_LINE ( g_file,

212: g_current_datafile_section := 'INPUT_DATA';
213: ---------------------------
214: -- Get a Line from the file.
215: ---------------------------
216: UTL_FILE.GET_LINE ( g_file,
217: g_line_buffer);
218: x_return_status := 'SUCCESS';
219: l_curr_line_string := substr(g_line_buffer,1,1000);
220: ELSIF substr(l_curr_line_string,1,38) = '' THEN

Line 253: UTL_FILE.GET_LINE ( g_file,

249: BEGIN
250: -----------------------------------
251: -- Get the next line from the file.
252: -----------------------------------
253: UTL_FILE.GET_LINE ( g_file,
254: g_next_line_buffer);
255: g_next_line_return_status := 'SUCCESS';
256: l_next_line_string := substr(g_next_line_buffer,1,1000);
257:

Line 270: UTL_FILE.GET_LINE ( g_file,

266: write_message('Skiping Line '||GET_NTH_ELEMENT(9,l_next_line_string,g_separator)||' not used for calculations.');
267: ---------------------------
268: -- Get a Line from the file.
269: ---------------------------
270: UTL_FILE.GET_LINE ( g_file,
271: g_next_line_buffer);
272: x_return_status := 'SUCCESS';
273: l_next_line_string := substr(g_next_line_buffer,1,1000);
274: ELSE