Skip to content

Begin_constraints Command

Obsolete

Refer to the OnConstrain event in the DataDictionary class.

Purpose

To create a constraint or set of constraints for a dataset.

Syntax

Begin_constraints

What It Does

Begin_constraints identifies the beginning of a block of code containing a set of constraints. This command, together with the end_constraints command, can be used as a shortcut to defining constraints within a procedure. For example, the following two sets of code behave identically:

procedure constrain
    constrain vndr relates to region
    forward send constrain
end_procedure

begin_constraints
    constrain vndr relates to region
end_constraints

See Also

OnConstrain