deliverDimensions

Use the deliverDimensions variable to determine the size of a specified dimension table.

Use deliverDimensions with the following syntax.

deliverDimensions.<dimension table>?size

When the script runs, deliverDimensions returns the number of rows in the dimension table that contain data that is applicable to the email recipient.

The following example illustrates how to use deliverDimensions to determine if a customer has orders waiting to be shipped.

<p>
<@if (deliverDimensions.CustomerBackorder?size <1)>
     You have no backorders.
</@if>
</p>