AccumulationRegisterRecordSet.<Accumulation register name>.Load

Syntax:

Load(<ValuesTable>)

Parameters:

<ValuesTable> (required)

Type: ValueTable.
Value table containing data 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 accumulation register record properties available to the record whose names matched the names of value table columns.

Availability:

Server, thick client, external connection, Mobile application (server).

Example:

Reg = AccumulationRegisters.Sales;
RecordsSet = Reg.CreateRecordSet();
Tab = New ValueTable;
// generate the value table
// ...
RecordsSet.Load(Tab);


    

1C:Enterprise Developer's Community