%_METHOD_PARAMS: Describes the method parameters of types owned by or accessible to the user.
 %_METHOD_RESULTS: Describes the method results of types owned by or accessible to the user.
 %_TYPE_METHODS: Describes the methods of types owned by or accessible to the user.
 
   SQL> SELECT type_name, method_name FROM user_type_methods; TYPE_NAME METHOD_NAME ------------------------------ ------------------------------ BOOK_TYP GET_DISCOUNT SQL> SELECT method_name, result_type_name FROM user_method_results; METHOD_NAME RESULT_TYPE_NAME ------------------------------ ------------------------------ GET_DISCOUNT NUMBER  |