I have created a package in oracle database with type and subtype. When I am trying to see the types and subtype in "ALL_TYPES" or "ALL_PLSQL_TYPES" i am able to see only type details but not subtype details. Where can i find subtype details in oracle system tables?
Create or replace package TEST_PKG_NEW is
subtype V_TYP is TEST01.st_spatial_references.sr_name%Type;
type R_TYP is record(c1 pls_integer, c2 varchar2(100));
procedure VARR_PROC(p1 in V_TYP, p2 OUT V_TYP);
procedure REC_PROC(p1 in R_TYP, p2 OUT R_TYP);
end TEST_PKG_NEW;
I have already created the "st_spatial_references" table with "sr_name" as column under "TEST01" user.