PARENT

This variable allows to access attribute values of a parent 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>checkForAssetType</name>
		<description>To Check if asset type is defined</description>
		<usefor>
			<var>ASSET_TYPE</var>
		</usefor>
		<condition>
			<defined>
				<var>PARENT/HAS_ASSETS</var>
			</defined>
		</condition>
		<action>
			<check>
				<explanation>Asset type should be defined.</explanation>
				<defined>
					<var>ASSET_TYPE</var>
				</defined>
			</check>
		</action>
	</constraint>