New_Record

Create a Foundation1 record. The interface has no access to meta data and it is the responsibility of the calling application to set a correct name on the record.

FUNCTION New_Record ( 
   name_   IN type_name_,
   status_ IN type_status_ DEFAULT New_Record_ ) RETURN type_record_

Parameters

name_
   
Foundation1 record name.

status_
    Defaults to record state New_Record_. 

Return value

    Record.

Example

DECLARE
   AM    Plsqlap_Record_API.type_record_;
BEGIN
   AM := Plsqlap_Record_API.New_Record('APPLICATION_MESSAGE');
   ...
END;