InformationRegisterManager.<Information register name>.CreateRecordKey
Syntax:
Parameters:
<KeyValues> (required)
Structure containing values for filling record key values.
Structure element names should match key field names.
Returned value:
Description:
Availability:
Example:
Filter = New Structure; Filter.Insert("Division", DivisionSelection); Filter.Insert("Post", SelPost); Reg = InformationRegisters.EstablishedPostsData; RecordKey = Reg.CreateRecordKey(Filter); // EstablishedPosts - table box to display the list of // the information register records Controls.EstablishedPosts.CurrentRow = RecordKey; |