Configuring the Representation List in Sub Assortment Tab

You can configure the way in which the representations are displayed in a sub assortment tab page of the store studio. The representations can be grouped based on one or several attributes. You can also configure how the elements are to be sorted in a group. You can select any of the grouping or the sorting configurations that are defined.


Before you begin: You must have the Administrator role (VPLMAdmin). For more information, see: Managing Persons, Roles, Organizations, and Collaborative Spaces in the People & Organizations and Content - Administration guide.
  1. Access the configuration files. For more information, see Access Configuration Files.
  2. In the Configuration Files page, download the ENOSHOStoreStudio_GroupingConfiguration.xml file.
  3. Modify the file to configure the way representations are grouped and sorted in the sub assortment tab page of the store studio.
    • Configure the attributes in the groupinglist tag.
      Attributes DescriptionValues
      title Defines the name of the group.Text value
      LocalizedTitleIDIndicates the title of the report. If this tag is in the Lang file, name of the group is translated by the corresponding tag value, else the tag is displayed. If this attribute is present it overwrites the default title and the title attribute.
      Important: It is mandatory to include any one of the above two attributes to give a title to the grouping. If both are missing, the group is ignored.
    • Configure the attributes in the attribute tag.
      Attributes DescriptionValues
      idDescribes the attribute that is to be displayed.

      TITLE

      select Describes the attribute that corresponds to the name of an attribute of a product.

      • name
      • description
      • attribute[Color]
      • attribute[Brand]
      • attribute[RecommendedPublicPrice]
      • attribute[PCB].

      You can retrieve and use custom attributes for the select attribute.

      For example, if you create a custom attribute named Custom Attribute for Merchandising Product, its database name will be XP_MerchandisingProduct_Ext.Custom_Attribute. You can use this attribute as follows: <attribute select="attribute[XP_MerchandisingProduct_Ext.Custom_Attribute]"/>

      You can use these extensions to retrieve custom attributes for various objects.

      XP_MerchandisingAssetDrawer_Ext

      XP_MerchandisingAssetGondolaSection_Ext

      XP_MerchandisingAssetHangingBar_Ext

      XP_MerchandisingAssetPallet_Ext

      XP_MerchandisingAssetPegSupport_Ext

      XP_MerchandisingAssetPeg_Ext

      XP_MerchandisingAssetShelf_Ext

      XP_MerchandisingAssetShortShelf_Ext

      XP_MerchandisingAssetWithRepresentation_Ext

      XP_MerchandisingAsset_Ext

      XP_MerchandisingAssortment_Ext

      XP_MerchandisingComposition_Ext

      XP_MerchandisingGondola_Ext

      XP_MerchandisingProduct_Ext

      XP_MerchandisingRepresentation3D_Ext

      XP_MerchandisingRetailCategory_Ext

      XP_MerchandisingRetailCluster_Ext

      XP_MerchandisingRetailStore_Ext

      XP_MerchandisingScene_Ext

      XP_MerchandisingStore_Ext

      XP_MerchandisingStoryboard_Ext

      XP_MerchandisingSubAssortment_Ext

      sortDefines a custom sorting order of the values of the attributes.
  4. Upload the modified file.
    For more information, see Update a Configuration File.

Example of a Grouping Configuration Template

<?xml version="1.0" encoding="UTF-8"?>
<groupingconfiguration xsi:noNamespaceSchemaLocation="ENOSHOStoreStudio_GroupingConfiguration.xsd"> 

	<groupingList LocalisedTitleID="GROUP_1_TITLE"> 
		<attribute id="TITLE"/>
		<attribute select="attribute[Color]"/>
           <attribute select="attribute[ShopperSize]" sort="XXS##XS##S##M##L##XL##XXL##XXXL##80A##85A##90A##95A##100A##80B##85B##90B##95B##100B##105B##80C##85C##90C##95C##100C##105C##85D##90D##95D##100D##105D##85E##90E##95E##100E##105E##90F##95F##100F##105F"/>
	</groupingList>
	
</groupingconfiguration>