ChartOfAccountsSelection.<Chart of accounts name>.Next

Syntax:

Next()

Returned value:

Type: Boolean.
True indicates next item is selected; False indicates the end of selection has been reached.

Description:

Obtains the next element from the selection. After getting the selection, to tab through chart of accounts, first call the appropriate method to go to the first item and then continue calling it until a value of False is returned.

Availability:

Server, thick client, external connection.

Example:

Selection = ChartsOfAccounts.Main.Select();
While 
Selection.Next() Do
    // process selection records
EndDo;


    

1C:Enterprise Developer's Community