Record.LoadFields(Any,...) Method

Version: Available or changed with runtime version 6.0.

Accesses the table's corresponding data source and loads the values of the specified fields on the record.

Syntax

[Ok := ]  Record.LoadFields(Fields: Any,...)

Parameters

Record
 Type: Record
An instance of the Record data type.

Fields
 Type: Any
The FieldNo's of the fields to be loaded.

Return Value

[Optional] Ok
 Type: Boolean
true if all values were loaded on the record; otherwise, false. If you omit this optional return value and the operation does not execute successfully, a runtime error will occur.

Remarks

This method will trigger a JIT load of the specified fields. The method allows for triggering the JIT load on multiple fields. If the fields are already loaded, another load will not be triggered. Using this method instead of relying on implicit JIT loads lets you develop for more explicit error handling when a load fails.

This method is part of the partial records capability for improving performance. For more information, see Using Partial Records.

See Also

Using Partial Records
Record Data Type
Get Started with AL
Developing Extensions