DBA Data[Home] [Help]

APPS.ICX_POR_EXT_UTL dependencies on FND_FILE

Line 114: fnd_file.put_names(pFileName||'_log', pFileName||'_out', gFilePath);

110: xErrLoc := 200;
111: -- for concurrent process log file
112: -- This function does nothing if called from a concurrent program
113: if (gUseFile = USE_CONCURRENT_LOG) then
114: fnd_file.put_names(pFileName||'_log', pFileName||'_out', gFilePath);
115: end if;
116:
117: EXCEPTION
118: when fnd_file.utl_file_error then

Line 118: when fnd_file.utl_file_error then

114: fnd_file.put_names(pFileName||'_log', pFileName||'_out', gFilePath);
115: end if;
116:
117: EXCEPTION
118: when fnd_file.utl_file_error then
119: -- Bug#2876721
120: if (gUseFile = USE_CONCURRENT_LOG) then
121: pushError('ICX_POR_EXT_UTL.openLog-'||xErrLoc||
122: ' fnd_file.utl_file_error');

Line 122: ' fnd_file.utl_file_error');

118: when fnd_file.utl_file_error then
119: -- Bug#2876721
120: if (gUseFile = USE_CONCURRENT_LOG) then
121: pushError('ICX_POR_EXT_UTL.openLog-'||xErrLoc||
122: ' fnd_file.utl_file_error');
123: raise gFatalException;
124: else
125: gDebugLevel := -1;
126: gFileHandle := null;

Line 156: -- close open files. FND_FILE.CLOSE should not

152: end if;
153:
154: if (gUseFile = USE_CONCURRENT_LOG) then
155: -- if the context is not concurrent program then
156: -- close open files. FND_FILE.CLOSE should not
157: -- be called from a concurrent program.
158: if (fnd_global.conc_request_id <= 0) then
159: fnd_file.close;
160: end if;

Line 159: fnd_file.close;

155: -- if the context is not concurrent program then
156: -- close open files. FND_FILE.CLOSE should not
157: -- be called from a concurrent program.
158: if (fnd_global.conc_request_id <= 0) then
159: fnd_file.close;
160: end if;
161: end if;
162:
163: EXCEPTION

Line 208: fnd_file.put_line(fnd_file.log, substr(pString, xPnt, 1000));

204: while (xPnt < xLength) loop
205: -- FPI feature, Analysis Report
206: if (pReport = LOG_REPORT) then
207: -- Log for concurrent request
208: fnd_file.put_line(fnd_file.log, substr(pString, xPnt, 1000));
209: else
210: -- Out for concurrent request
211: fnd_file.put_line(fnd_file.output, substr(pString, xPnt, 1000));
212: end if;

Line 211: fnd_file.put_line(fnd_file.output, substr(pString, xPnt, 1000));

207: -- Log for concurrent request
208: fnd_file.put_line(fnd_file.log, substr(pString, xPnt, 1000));
209: else
210: -- Out for concurrent request
211: fnd_file.put_line(fnd_file.output, substr(pString, xPnt, 1000));
212: end if;
213: xPnt := xPnt + 1000;
214: end loop;
215: xErrLoc := 420;

Line 219: when fnd_file.utl_file_error then

215: xErrLoc := 420;
216: end if;
217:
218: EXCEPTION
219: when fnd_file.utl_file_error then
220: pushError('ICX_POR_EXT_UTL.log-fnd_file.utl_file_error');
221: -- Bug 3488764 : Add custom message to the error stack trace so that customer
222: -- can understand the problem and fix.
223: -- Raise utl_file_error. This is handled seperately by upgrade script

Line 220: pushError('ICX_POR_EXT_UTL.log-fnd_file.utl_file_error');

216: end if;
217:
218: EXCEPTION
219: when fnd_file.utl_file_error then
220: pushError('ICX_POR_EXT_UTL.log-fnd_file.utl_file_error');
221: -- Bug 3488764 : Add custom message to the error stack trace so that customer
222: -- can understand the problem and fix.
223: -- Raise utl_file_error. This is handled seperately by upgrade script
224: raise_application_error(-20100, ICX_POR_EXT_UTL.UTL_FILE_ERR_MSG, TRUE);