Skip to main content

selectRecord()

Last updated 12/02/2025

Example

The following code selects the form action and the associated record and displays it to the user.

Selects the Customers form action and the associated record
    function SelectCustomerRecord(five: Five, context: any, result: FiveError) : FiveError {
five.selectRecord('Customers', five.field.Customer);
return five.success(result);
}