Is there an RPL string I could use that says "Is not in a table"?
I have a table populated with a certain segment of our customers. Pet table Product_Recommendations.
I am building a merge for those customers. However for customers not in this table at all, I want to display nothing. I thought I could get around this by saying this....
<#if 'Product_Recommendations.CROSS_SELL_1.PRODUCT_ID' != "">
If you're in this table, you will have something in cross sell 1 product ID and the people would get this message.
</#if>
However, it seems Responsys doesn't work this way because it's not that they're null. It's that they don't exists in the table. So that leads me to my question.
0