DBA Data[Home] [Help]

APPS.FND_AOLJ_UTIL dependencies on DBMS_JAVA

Line 134: dbms_java.set_output(20000);

130: /* Print out version information for a single class */
131: PROCEDURE getClassVersionFromDB(p_classname VARCHAR2) IS
132: BEGIN
133:
134: dbms_java.set_output(20000);
135:
136: /* get the full name for the class, and replace all slashes with periods */
137: displayClassVersion(replace(dbms_java.longname(p_classname), '/', '.'));
138:

Line 137: displayClassVersion(replace(dbms_java.longname(p_classname), '/', '.'));

133:
134: dbms_java.set_output(20000);
135:
136: /* get the full name for the class, and replace all slashes with periods */
137: displayClassVersion(replace(dbms_java.longname(p_classname), '/', '.'));
138:
139: END getClassVersionFromDB;
140:
141:

Line 149: ORDER BY dbms_java.longname(object_name);

145: cursor c_classes IS
146: SELECT object_name
147: from user_objects
148: WHERE object_type = 'JAVA CLASS'
149: ORDER BY dbms_java.longname(object_name);
150:
151: BEGIN
152:
153: FOR rec IN c_classes LOOP

Line 472: dbms_java.set_output(20000);

468: /* Print out version information for the AOL/J RUP */
469: PROCEDURE display_AOLJ_RUP IS
470: BEGIN
471:
472: dbms_java.set_output(20000);
473:
474: AOLJ_RUP('');
475:
476: END display_AOLJ_RUP;