InformationRegisterManager.<Information register name>.SelectByRecorder

Syntax:

SelectByRecorder(<Recorder>)

Parameters:

<Recorder> (required)

Type: DocumentRef.
Reference to the document that is a register records recorder.

Returned value:

Type: InformationRegisterSelection.

Description:

Makes a selection by the information register records recorder. Used for information registers with the "Subordinate to recorder" write mode set in the Designer.

Availability:

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

Example:

PriceSelection = 
InformationRegisters.PricesMarketing.SelectByRecorder(Selection);
While 
PriceSelection.Next() Do
    Message("Date " + PriceSelection.Recorder.DocumentDate  + 
             " Nomenclature "+TrimAll(PriceSelection.Nomenclature) +
             ", Rival "+  PriceSelection.Rival );
EndDo
;


    

1C:Enterprise Developer's Community