I get a "function created with compilation errors" message but don't get the errors displayed - how can I see what the errors were?
SQL> CREATE OR REPLACE FUNCTION "MERUSER"."BB_GET_SUPPLIER_NAME" (I_SUPPLIER_NO IN CHAR) RETURN CHAR AS V_SUPPLIER_NAME meruser.MSV200.SUPPLIER_NAME%TYPE;SELECT SUPPLIER_NAME INTO V_SUPPLIER_NAME FROM meruser.MSV200 WHERE SUPPLIER_NO = I_SUPPLIER_NO; RETURN V_SUPPLIER_NAME; END;
2 /
Warning: Function created with compilation errors.
SQL> show errors
No errors.
SQL> CREATE OR REPLACE FUNCTION "MERUSER"."BB_GET_SUPPLIER_NAME" (I_SUPPLIER_NO IN CHAR) RETURN CHAR AS V_SUPPLIER_NAME meruser.MSV200.SUPPLIER_NAME%TYPE;SELECT SUPPLIER_NAME INTO V_SUPPLIER_NAME FROM meruser.MSV200 WHERE SUPPLIER_NO = I_SUPPLIER_NO; RETURN V_SUPPLIER_NAME; END;
2 /
Warning: Function created with compilation errors.
SQL> show errors
No errors.