SequenceManager.<Sequence name>.Validate
Syntax:
Parameters:
<PointInTime> (required)
A point in time up to which the sequence is checked.
<Filter> (optional)
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.
Returned value:
True - sequence remains intact; False - otherwise.
Description:
Availability:
Example:
Moment = New PointOfTime(Doc.Date, Doc.Ref); Filter = New Structure; Filter.Insert("Article", CurArticle); Continual = Sequences.ArticlesRegistration.Validate(Moment, Filter); |