MatchRequirementResult
This business rule is attached to a requirement in order to associate a requirement result with the requirement.
Element/Tag | Definition | Attribute | Element/Attribute Value and Description |
---|---|---|---|
<MatchRequirementResult> |
Required element: The opening and closing tags for the business rule. |
||
<Process> |
Required element: This element defines the condition that dictates whether the rule will execute. This element should not be given a value, as the execution condition is set in the value of the IF attribute. |
||
IF | Required attribute:
This attribute should contain an expression that resolves to a Boolean value, which will dictate whether the rule executes. This attribute can also be left empty, in which case the rule will always execute. |
||
<UnmatchedRequirementResultGUID> |
Optional element: This element identifies a RequirementResultGUID in the AsUnmatchedRequirementResult database table. Note: This element and <RequirementResultGUID> are mutually exclusive. |
||
<RequirementResultGUID> |
Optional element: This element identifies an actual result requirement. Note: This element and <UnmatchedRequirementResultGUID> are mutually exclusive. |
A RequirementResultGUID from AsRequirementResult. |
XML Example
<MatchRequirementResult>
<Process IF="UnmatchedCount > 0"></Process>
<UnmatchedRequirementResultGUID>RequirementResultGUID</UnmatchedRequirementResultGUID>
</MatchRequirementResult>