DBA Data[Home] [Help]

APPS.JTF_DIAGNOSTIC_ADAPTUTIL dependencies on JTF_DIAG_REPORT

Line 62: IF (UPPER(arg2) <> 'JTF_DIAG_REPORT') THEN

58: END IF;
59: IF (UPPER(arg1) <> 'JTF_DIAG_INPUTTBL') THEN
60: return b_false;
61: END IF;
62: IF (UPPER(arg2) <> 'JTF_DIAG_REPORT') THEN
63: return b_false;
64: END IF;
65: IF (UPPER(arg3) <> 'CLOB') THEN
66: return b_false;

Line 175: isFatal IN VARCHAR2 DEFAULT 'FALSE') RETURN JTF_DIAG_REPORT IS

171:
172: FUNCTION constructReport(status IN VARCHAR2 DEFAULT 'FAILED',
173: errStr IN VARCHAR2 DEFAULT 'Internal Error',
174: fixInfo IN VARCHAR2 DEFAULT 'No Fix Information Available',
175: isFatal IN VARCHAR2 DEFAULT 'FALSE') RETURN JTF_DIAG_REPORT IS
176: tempReport JTF_DIAG_REPORT;
177: BEGIN
178: b_html_on := false;
179: tempReport := JTF_DIAG_REPORT(status,

Line 176: tempReport JTF_DIAG_REPORT;

172: FUNCTION constructReport(status IN VARCHAR2 DEFAULT 'FAILED',
173: errStr IN VARCHAR2 DEFAULT 'Internal Error',
174: fixInfo IN VARCHAR2 DEFAULT 'No Fix Information Available',
175: isFatal IN VARCHAR2 DEFAULT 'FALSE') RETURN JTF_DIAG_REPORT IS
176: tempReport JTF_DIAG_REPORT;
177: BEGIN
178: b_html_on := false;
179: tempReport := JTF_DIAG_REPORT(status,
180: errStr,

Line 179: tempReport := JTF_DIAG_REPORT(status,

175: isFatal IN VARCHAR2 DEFAULT 'FALSE') RETURN JTF_DIAG_REPORT IS
176: tempReport JTF_DIAG_REPORT;
177: BEGIN
178: b_html_on := false;
179: tempReport := JTF_DIAG_REPORT(status,
180: errStr,
181: fixInfo,
182: isFatal);
183: return tempReport;

Line 209: -- caller method. A table of a single empty JTF_DIAG_REPORT

205: END;
206:
207: ---------------------------------------------------------------------
208: -- initialise a reportTable object and return it to the
209: -- caller method. A table of a single empty JTF_DIAG_REPORT
210: -- is created and then removed with the call to trim -
211: -- this initializes the collection
212: ---------------------------------------------------------------------
213:

Line 214: FUNCTION initReportTable RETURN JTF_DIAG_REPORTTBL IS

210: -- is created and then removed with the call to trim -
211: -- this initializes the collection
212: ---------------------------------------------------------------------
213:
214: FUNCTION initReportTable RETURN JTF_DIAG_REPORTTBL IS
215: tempRpt JTF_DIAG_REPORT;
216: temp JTF_DIAG_REPORTTBL;
217: BEGIN
218: tempRpt := JTF_DIAG_REPORT('','','','');

Line 215: tempRpt JTF_DIAG_REPORT;

211: -- this initializes the collection
212: ---------------------------------------------------------------------
213:
214: FUNCTION initReportTable RETURN JTF_DIAG_REPORTTBL IS
215: tempRpt JTF_DIAG_REPORT;
216: temp JTF_DIAG_REPORTTBL;
217: BEGIN
218: tempRpt := JTF_DIAG_REPORT('','','','');
219: temp := JTF_DIAG_REPORTTBL(tempRpt);

Line 216: temp JTF_DIAG_REPORTTBL;

212: ---------------------------------------------------------------------
213:
214: FUNCTION initReportTable RETURN JTF_DIAG_REPORTTBL IS
215: tempRpt JTF_DIAG_REPORT;
216: temp JTF_DIAG_REPORTTBL;
217: BEGIN
218: tempRpt := JTF_DIAG_REPORT('','','','');
219: temp := JTF_DIAG_REPORTTBL(tempRpt);
220: temp.trim;

Line 218: tempRpt := JTF_DIAG_REPORT('','','','');

214: FUNCTION initReportTable RETURN JTF_DIAG_REPORTTBL IS
215: tempRpt JTF_DIAG_REPORT;
216: temp JTF_DIAG_REPORTTBL;
217: BEGIN
218: tempRpt := JTF_DIAG_REPORT('','','','');
219: temp := JTF_DIAG_REPORTTBL(tempRpt);
220: temp.trim;
221: return temp;
222: EXCEPTION

Line 219: temp := JTF_DIAG_REPORTTBL(tempRpt);

215: tempRpt JTF_DIAG_REPORT;
216: temp JTF_DIAG_REPORTTBL;
217: BEGIN
218: tempRpt := JTF_DIAG_REPORT('','','','');
219: temp := JTF_DIAG_REPORTTBL(tempRpt);
220: temp.trim;
221: return temp;
222: EXCEPTION
223: WHEN others THEN