Get_Value

Retrieves a record attribute value.

FUNCTION Get_Value ( 
   record_    IN type_record_,
   attribute_ IN type_name_ ) RETURN type_value_

Parameters

record_
  
  Foundation1 record.

attribute_
    Record attribute name.

Return

   Record attribute value. The returned value is always of type VARCHAR2. 

Example

DECLARE
   value_   Plsqlap_Record_API.type_value_;
   created_ DATE;
BEGIN
   ...
   value_   := Plsqlap_Record_API.Get_Value(AM,'APPLICATION_MESSAGE_ID');
   created_ := TO_DATE(Plsqlap_Record_API.Get_Value(AM,'CREATED_DATE'),Plsqlap_Server_API.ti22_date_format_);
   ...
END;