Follow the steps to mentioned below to show the Best Seller and Top Browsed espot.
- Enable the persistent sessions feature and personalization ID feature. These features are required to support behavioral marketing.
-
<PersonalizationId enable="false"/>
- Ensure that the enable attribute is set to true. Depending on your site, this attribute might already be enabled, and require no change.
-
<PersistentSession cookieExpiry="30" display="false" enable="true"/>
- Ensure that:
- The enable attribute is set to true.
- The cookieExpiry value is a positive number. This number represents the number of days sessions are persisted for a customer.To enable persistent sessions, change set the cookieExpiry value to a positive number.
-
- Enable the following marketing listeners: the SensorEventListener and ExperimentEvaluationECEventListener. These listeners must be enabled to support some behavioral marketing features and to gather marketing statistics for marketing experiments:
- Find the following string:compClassName="com.ibm.commerce.marketing.dialog.trigger.SensorEventListener"
- Below the string, ensure that the enable attribute is set to true, as shown in the following example:
- <component
- compClassName="com.ibm.commerce.marketing.dialog.trigger.SensorEventListener"
- enable="true" name="SensorEventListener">
- <property display="false">
- <start enabled="true"/>
- </property></component>
- Find the following string:compClassName="com.ibm.commerce.marketingcenter.events.runtime.ExperimentEvaluationECEventListenerImpl"
- Below the string, ensure that the enable attribute is set to true, as shown in the following example:
- <component
- compClassName="com.ibm.commerce.marketingcenter.events.runtime.ExperimentEvaluationECEventListenerImpl"
- enable="true" name="Experiment Evaluation Event Listener">
- <property display="false">
- <start enabled="true"/>
- </property></component>
- Create an Emarketing spot to show the best selling/ top browsed items based on the info center link http://www.ibm.com/support/knowledgecenter/SSZLC2_7.0.0/com.ibm.commerce.management-center.doc/concepts/csbactdisbestsell.htm?lang=en
- Run the RaiseECEvent scheduled job(This might not be required in case top browsed items list) using Admin Console. When a customer places an order, the RaiseECEvent job asynchronously check whether the categories associated with the purchased products match against any of the defined Display Best Sellers Web activities.
- Once a day, when the SendMarketingTriggers scheduled job runs (at the time set in dailyScheduledJobTimeForTriggers parameter), the DMRANKINGSTAT entries are summarized and entries are created in the DMRANKINGITEM table.
- For developer version, Run the SQL query to make sure that SendMarketingTrigger job will take all the DMACTIVITY_IDs those are there in the DMARKETINSTAT table.
DELETE FROM DMACTATTR WHERE DMACTIVITY_ID = 0 OR DMACTIVITY_ID =
(SELECT DMACTIVITY_ID FROM DMACTIVITY WHERE NAME = '')
No comments:
Post a Comment