DBA Data[Home] [Help]

APPS.ICX_POR_EXT_UTL dependencies on ICX_POR_EXT_UTL

Line 1: PACKAGE BODY ICX_POR_EXT_UTL AS

1: PACKAGE BODY ICX_POR_EXT_UTL AS
2: /* $Header: ICXEXTUB.pls 120.1 2006/01/10 11:59:20 sbgeorge noship $*/
3:
4: --------------------------------------------------------------
5: -- Global Variables --

Line 121: pushError('ICX_POR_EXT_UTL.openLog-'||xErrLoc||

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');
123: raise gFatalException;
124: else
125: gDebugLevel := -1;

Line 129: pushError('ICX_POR_EXT_UTL.openLog-'||xErrLoc||' '||SQLERRM);

125: gDebugLevel := -1;
126: gFileHandle := null;
127: end if;
128: when others then
129: pushError('ICX_POR_EXT_UTL.openLog-'||xErrLoc||' '||SQLERRM);
130: if (utl_file.is_open(gFileHandle)) then
131: utl_file.fclose(gFileHandle);
132: end if;
133: if (utl_file.is_open(gReportHandle)) then

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);

Line 224: raise_application_error(-20100, ICX_POR_EXT_UTL.UTL_FILE_ERR_MSG, TRUE);

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);
225: when others then
226: pushError('ICX_POR_EXT_UTL.log-'||xErrLoc || ': ' ||SQLERRM);
227: raise gException;
228: END log;

Line 226: pushError('ICX_POR_EXT_UTL.log-'||xErrLoc || ': ' ||SQLERRM);

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);
225: when others then
226: pushError('ICX_POR_EXT_UTL.log-'||xErrLoc || ': ' ||SQLERRM);
227: raise gException;
228: END log;
229:
230: PROCEDURE log(pString IN VARCHAR2) IS

Line 466: pushError('ICX_POR_EXT_UTL.getDatabaseVersion-'||xErrLoc || ': ' || 'versionString=' || versionString || ' majorVersion=' || majorVersion || ' minorVersion=' || majorVersion ||' ReturnedVersion=' || to_char(version) || ' - ' ||SQLERRM);

462: debug(MUST_LEVEL, 'Database Version: '|| to_char(version));
463: RETURN version;
464: EXCEPTION
465: when others then
466: pushError('ICX_POR_EXT_UTL.getDatabaseVersion-'||xErrLoc || ': ' || 'versionString=' || versionString || ' majorVersion=' || majorVersion || ' minorVersion=' || majorVersion ||' ReturnedVersion=' || to_char(version) || ' - ' ||SQLERRM);
467: raise gException;
468: END getDatabaseVersion;
469:
470:

Line 471: END ICX_POR_EXT_UTL;

467: raise gException;
468: END getDatabaseVersion;
469:
470:
471: END ICX_POR_EXT_UTL;