Defining Store UsageThe
<stores>
<case>
<condition>...</condition>
<store name="STORENAME"/>
</case>
.
.
.
<default>
<store name="DEFAULTSTORENAME"/>
</default>
</stores>
The definition of the
When you specify a type, you can define a condition for attributes of that type. For example: <condition>$type = “PLMRepresentationDS” and V_RepKind = “ABC”</condition> Unlike entities, the
app
does not search for a content type's parent type if it does not find a matching
Complex Condition ExpressionsYou can build complex values by including
$project in {"CollabSpace1","CollabSpace2"} and $org = "Design"
This condition indicates that if the creation context is either CollabSpace1 or CollabSpace2 AND the organization is Design, then use the specified policy. When using complex expressions, you can also use parentheses to avoid confusion when using combinations of operators. For example, these two condition expressions are the same, but the second one is easier to understand: $project = "CollabSpace1" or $project = "CollabSpace2" and $org = "Design" ($project = "CollabSpace1" or $project = "CollabSpace2") and $org = "Design" | |||||||||||||||||||||||||||