Skip to content

Get_Name

Retrieves a record name. This function is primarily for internal use by procedures with no knowledge of the record passed to it.

FUNCTION Get_Name (   
   record_ IN type_record_ ) RETURN type_name_

Parameters

record_
Foundation1 record.

Return

Record name.

Example

DECLARE  
   name_  Plsqlap_Record_API.type_name_;  
BEGIN  
   ...  
   name_ := Plsqlap_Record_API.Get_Name(AM);  
END;