CalculationRegisterRecordSet.<Calculation register name>.Load

Syntax:

Load(<ValuesTable>)

Parameters:

<ValuesTable> (required)

Type: ValueTable.
Source for record set filling.

Description:

Loads a recordset with values from the transmitted value table. All previous records in the set are deleted. It is populated with values of calculation register record properties available to the record whose names matched the names of value table columns.

Availability:

Server, thick client, external connection.

Example:

Reg = CalculationRegisters.FocalChargesEmployeesOrganization;
RecordsSet = Reg.CreateRecordSet();
Tab = New ValueTable;
// generate the table
// ...
RecordsSet.Load(Tab);


    

1C:Enterprise Developer's Community