SequenceManager.<Sequence name>.GetBound

Syntax:

GetBound(<Filter>)

Parameters:

<Filter> (optional)

Type: Structure.
A structure that defines filtering by sequence dimensions. The key of the structure defines the sequence dimension that will be used for filtering, and the structure value defines the dimension value.
If the dimension is not available in the structure, it will not be used for filtering.
If this parameter is not specified, the sequence boundary is obtained for all dimension values.

Returned value:

Type: PointInTime.
A point in time which corresponds to the minimum boundary of the sequence.

Description:

Obtains the minimum dimension boundary for the specified dimension values.

Availability:

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

Note:

Analyzes all boundaries, disregarding availability or unavailability of registered documents for these boundaries.

Example:

Filter = New Structure ("Article");
Filter.Insert("Article", CurArticle);
Boundary = Sequences.ArticlesRegistration.GetBound(Filter);


    

1C:Enterprise Developer's Community