CHILD

This variable allows to access attribute values of child record during relationship catalog rulebase execution.

Note: This context variable is only available in relationship catalog rulebase execution. The parent/child record is always determined in context of forward relationship.

Example

<constraint>
		<name>checkForRegion</name>
		<description>To Check if region is defined</description>
		<usefor>
			<var>REGION</var>
		</usefor>
		<condition>
			<defined>
				<var>CHILD/ZIPCODE</var>
			</defined>
		</condition>
		<action>
			<check>
				<explanation>REGION type should be defined.</explanation>
				<defined>
					<var>REGION</var>
				</defined>
			</check>
		</action>
	</constraint>