BusinessProcessSelection.<Business process name>.Next

Syntax:

Next()

Returned value:

Type: Boolean.
True - the next business process was selected; False - reached the end of selection.

Description:

Receives the next business process from a selection. To look through the business process list, you must use this method to position the selection in the first and subsequent business processes, as long as the value False is not given.

Availability:

Server, thick client, external connection.

Example:

Selection = BusinessProcesses.ProcessingReceipt.Select();
While 
Selection.Next() Do
    // processing selection
EndDo;


    

1C:Enterprise Developer's Community