This section presents the best practice approach to manage the Interaction module in Adobe Campaign Classic, including eligibility rules, pre-defined filters, workflow activities and database options.
Interaction in Adobe Campaign requires careful management to operate efficiently. You must find a balance between the number of contacts and the number of offer categories and offers. If those factors are not dealt carefully, your Adobe Campaign instance may encounter issues.
Below are listed important elements that should be kept in mind when implementing and configuring interactions.
Below are listed some best practices regarding eligibility rules.
Below are listed a few best practices regarding the proposition table.
This section contains more detailed advice on managing offers and using the Interaction module in Adobe Campaign Classic.
When including offers in deliveries, the offers are generally selected upstream in the Campaign workflow via an Enrichment activity (or another similar activity).
When selecting offers in an Enrichment activity, you can choose which offer space to use. However, regardless of the selected offer space, the delivery customization menu depends on the offer space set up in the delivery.
In the example below, the offer space selected in the delivery is Email (Environment - Recipient):
If the offer space you select in the delivery does not have an HTML rendering function set up, you will not see it in the delivery menu and it will not be available for selection. Again, this is independent of the offer space selected in the Enrichment activity.
In the example below, the HTML rendering function is available in the drop-down list because the offer space selected in the delivery has a rendering function:
This function inserts code such as: <%@ include proposition="targetData.proposition" view="rendering/html" %>
.
When you select the proposition, the value of the view attribute is as follows:
When you include multiple offer spaces in a single email delivery and if some of them have rendering functions and some do not have it, you must remember which offers use which offer spaces, and which offer spaces have rendering functions.
Consequently, to avoid any issue, it is recommended that all offer spaces have an HTML rendering function defined, even if your offer space only requires HTML content.
Offer spaces have the ability to store data in the proposition table when propositions are generated or accepted:
However, this only applies to inbound interactions.
It is also possible to store additional data in the proposition table when using outbound interactions, and also when using outbound offers without the Interaction module.
Any field from the workflow temp table whose name matches a field name in the proposition table is copied into the same field in the proposition table.
For example, when selecting an offer manually (without Interaction) in an Enrichment, the standard fields are defined as follows:
Additional fields can be added, such as a @rank field:
Because there is a field in the proposition table named @rank, the value in the workflow temp table will be copied.
For more on storing additional fields in the proposition table, see Integrating an offer via a workflow.
For outbound offers with Interaction, this is useful when several offers are selected and you want to record in which order they will be displayed in an email.
You can also store additional metadata directly in the proposition table, such as the current spend level, to keep historical records about the spend at the time offers were generated.
When using outbound Interaction, the @rank field can be added, as in the example above, but its value is automatically set based on the order returned by Interaction. For example, if you are using Interaction to select three offers, the @rank field will have values 1, 2, and 3 returned.
When using Interaction and manually selecting offers, the user can combine both approaches. For example, the user may manually set the @rank field to be 1 for the manually selected offer, and use an expression such as “1 + @rank” for the offers returned by Interaction. Assuming Interaction selects three offers, the offers returned by both approaches will be ranked 1-4:
When extending the nms:offer schema, make sure you follow the out-of-the-box structure already set-up:
Define any new field for content storage under <element name="view">
.
Each new field needs to be defined twice. Once as a regular XML field, and once as a CDATA XML field with “_jst” appended to the name. For example:
<element label="Price" name="price" type="long" xml="true"/>
<element advanced="true" label="Script price" name="price_jst" type="CDATA" xml="true"/>
Any fields that contain URLs to be tracked must be placed under <element name="trackedUrls">
which is found under <element name="view" >
.