Get_Type¶
Retrieves a record type.
FUNCTION Get_Type (
record_ IN type_record_,) RETURN type_typ_
Parameters¶
record_
Foundation1 record.
Return¶
Record type. See more about types in global constant variables, Type list.
Example¶
DECLARE
attribute_type_ Plsqlap_Record_API.type_typ_;
BEGIN
...
attribute_type_ := Plsqlap_Record_API.Get_Type(AM);
...
END;