Get_Type

Retrieves a record attribute type.

FUNCTION Get_Type ( 
   record_    IN type_record_,
   attribute_ IN type_name_ ) RETURN type_typ_

Parameters

record_
   
Foundation1 record.

attribute_
    Attribute name.

Return

    Record attribute type. See more about Ada95 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, 'APPLICATION_MESSAGE_ID');
   ...
END;