DBA Data[Home] [Help]

APPS.JTF_AUTH_TRIGGERTEST dependencies on JTF_DIAG_REPORT

Line 34: report OUT NOCOPY JTF_DIAG_REPORT,

30: -- the inputs needed for the test are passed in and a report
31: -- object and CLOB are -- returned.
32: ------------------------------------------------------------
33: PROCEDURE runtest(inputs IN JTF_DIAG_INPUTTBL,
34: report OUT NOCOPY JTF_DIAG_REPORT,
35: reportClob OUT NOCOPY CLOB) IS
36: statusStr VARCHAR2(50); -- SUCCESS or FAILURE strings
37: errStr VARCHAR2(4000); -- upto a max of 4000 chars.
38: fixInfo VARCHAR2(4000); -- upto a max of 4000 chars.

Line 111: /* Assign the OUT JTF_DIAG_REPORT object with the various report fields */

107: fixInfo := 'Security Triggers are to be created.';
108: isFatal := 'FALSE';
109: END IF;
110:
111: /* Assign the OUT JTF_DIAG_REPORT object with the various report fields */
112: report := JTF_DIAGNOSTIC_ADAPTUTIL.constructReport(statusStr,errStr,fixInfo,isFatal);
113:
114: /* Retrieve and assign the OUT CLOB object with the current CLOB */
115: reportClob := JTF_DIAGNOSTIC_ADAPTUTIL.getReportClob;