InformationRegisterRecordSet.<Information register name>.Load

Syntax:

Load(<ValuesTable>)

Parameters:

<ValuesTable> (required)

Type: ValueTable.
Value table by which the record set is filled.

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 information 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 = InformationRegisters.ExchangeRates;
RatesSet = Reg.CreateRecordSet();
Tab = New ValueTable;
// generate the value table
// ...
RatesSet.Load(Tab);


    

1C:Enterprise Developer's Community