SubAssemblyLoadVerifications Enumeration |
An enumeration describing the verification checks that may be performed
when loading a sub-assembly into a parent assembly.
Namespace:
FactoryLogix.xTend.DataObjects
Assembly:
FactoryLogix.xTend.DataObjects (in FactoryLogix.xTend.DataObjects.dll) Version: 8.245.0.0 (8.245.0.0)
Syntax [FlagsAttribute]
public enum SubAssemblyLoadVerifications
<FlagsAttribute>
Public Enumeration SubAssemblyLoadVerifications
[FlagsAttribute]
public enum class SubAssemblyLoadVerifications
[<FlagsAttribute>]
type SubAssemblyLoadVerifications
Members
| Member name | Value | Description |
---|
| VerifyBOMCompatibility | 1 |
Verify that the sub-assembly conforms with the revision criteria specified
in the Bill of Materials (BOM) of the parent assembly. The BOM may specify
specific revisions that are permissible for this sub-assebly. If this check
is specified, and the part associated with the new sub-assembly is not found
on the BOM, it will be rejected.
|
| VerifyStatus | 2 |
Verify that the sub-assembly has a PASSED status.
|
| VerifyCompleted | 4 |
Verify that the active production process of the sub-assembly has been fully completed.
|
| VerifyNoDefects | 8 |
Verify that the sub-assembly has no unclosed defects.
|
| VerifyAll | 65535 |
All verification checks will be enforced.
|
See Also