Wednesday, 29 April 2015


Custom Store feature to Enable/Disable using flex flow


1) Update the EMSPORT and DMEMSPOTDEF tables by executing the following two SQL statements (ensure that EMSPOT_ID and DMEMSPOTDEF_ID do not already exist):
INSERT INTO EMSPOT 
   (EMSPOT_ID,STOREENT_ID,NAME,USAGETYPE)
VALUES 
   (-1000,storeId,'BloomReach','STOREFEATURE' );
INSERT INTO  DMEMSPOTDEF 
   (DMEMSPOTDEF_ID,EMSPOT_ID,STOREENT_ID,CONTENTTYPE,CONTENT,OPTCOUNTER) 
VALUES 
   (-1000,-1000,storeId,'FeatureEnabled','true',1);
2) Restart the WebSphere Commerce server.
3) This is an example of using the Bloomreach flex flow:
<flow:ifEnabled feature="BloomReach">         
     ......
  </flow:ifEnabled>
  <flow:ifDisabled feature="BloomReach">
     ......
 </flow:ifDisabled>


FlexFlow usable in CMC, for enabling/disabling the Bloomreach feature in the store front.

Make appropriate changes to - WC_eardir\LOBTools.war\config\commerce\store\propertiesViews\storedir\StoreFlexFlowPropertiesView.def

More details - Here is the link

http://www-01.ibm.com/support/knowledgecenter/SSZLC2_7.0.0/com.ibm.commerce.management-center_customization.doc/tutorial/ttf_tutorialcontacttooltip.htm?lang=en

No comments:

Post a Comment