HCL Commerce Version 9.1.13.0 or later

Enabling the Storefront Asset Store support

You can enable Storefront Asset Store (SAS) support for the Page Composer tool in Commerce+ version 9.1.13 for deployments that support the Catalog Asset Store Model for search indexing.

HCL Commerce Version 9.1.14.0 or later
HCL Commerce Version 9.1.14.0 or laterNote: From HCL Commerce version 9.1.14.0 onwards, the Storefront Asset Store support is enabled by default.
To enable SAS support, complete the following steps:
  1. Insert the required configuration entries into the STORECONF table. Replace <STORE_ID> with the ID of the store in your environment:
    INSERT INTO STORECONF (STOREENT_ID, NAME, VALUE) VALUES (<STORE_ID>, 'hcl.pageLayoutTool.sas.enabled', 'true');
    INSERT INTO STORECONF (STOREENT_ID, NAME, VALUE) VALUES (<STORE_ID>, 'wc.search.CASIndexModel', 'true');
  2. Enable SAS widgets through the PLSTOREWIDGET configuration:
    SAS Widgets
    MERGE INTO PLSTOREWIDGET AS T
    USING (VALUES
        (7001,10751,-8000,1,NULL,1),(7002,10751,-8001,1,NULL,1),(7003,10751,-8002,1,NULL,1),(7004,10751,-8003,1,NULL,1),
        (7005,10751,-8004,1,NULL,1),(7006,10751,-8500,1,NULL,1),(7007,10751,-8501,1,NULL,1),(7008,10751,-8502,1,NULL,1),
        (7009,10751,-8503,1,NULL,1),(7010,10751,-8504,1,NULL,1),(7011,10751,-8505,1,NULL,1),(7012,10751,-8506,1,NULL,1),
        (7013,10751,-8507,1,NULL,1),(7014,10751,-8508,1,NULL,1),(7015,10751,-8509,1,NULL,1),(7016,10751,-8510,1,NULL,1),
        (7017,10751,-8511,1,NULL,1),(7018,10751,-8512,1,NULL,1),(7019,10751,-8513,1,NULL,1),(7020,10751,-8005,1,NULL,1),
        (7021,10751,-8006,1,NULL,1),(7022,10751,-8007,1,NULL,1),(7023,10751,-8008,1,NULL,1),(7024,10751,-8514,1,NULL,1),
        (7025,10751,-8515,1,NULL,1)
    ) AS S(PLSTOREWIDGET_ID, STOREENT_ID, PLWIDGETDEF_ID, STATE, DEFINITIONXML, OPTCOUNTER)
    ON T.PLSTOREWIDGET_ID = S.PLSTOREWIDGET_ID
    WHEN NOT MATCHED THEN
        INSERT (PLSTOREWIDGET_ID, STOREENT_ID, PLWIDGETDEF_ID, STATE, DEFINITIONXML, OPTCOUNTER)
        VALUES (S.PLSTOREWIDGET_ID, S.STOREENT_ID, S.PLWIDGETDEF_ID, S.STATE, S.DEFINITIONXML, S.OPTCOUNTER);
  3. Verify that the SAS widgets appear correctly in the Page Composer.

Limitation

The catalog images for the sample storefront asset stores SapphireSAS and SapphirePlusSAS do not display correctly in the tool. However, users can work with categories and catalog entries in the Page Composer.