Configuring Business Information

You can configure business information (the list of attributes groups, the list of attributes' colors, and the indicators' display).


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.
See Also
Access Configuration Files
  1. Access the configuration files.
  2. In the Configuration Files page, download the ENOSHOStoreStudio_BusinessDataConfiguration.xml file to modify the business information attributes.
  3. Modify the business information attributes.
    • Configure the attributes in the indicator tag. This tag defines the way the indicator is displayed in 3D. Note that this section can be specified for each indicator. The indicator must be defined by a fieldid attribute.
      AttributesDescription
      TitleCorresponds to the default title of the indicator.
      LocalisedTitleIDCorresponds to the indicator's localization tag.
      ColorCorresponds to the indicator's background color. (Hexadecimal color value)
      TextcolorCorresponds to the indicator's text color. (Hexadecimal color value)
      NumberDecimalsCorresponds to the default number of decimals to display.
      GroupFormCorresponds to the formula used to group the data.

      The following values are available:

      • SUM: corresponds to the sum of indicators.
      • AVG or AVERAGE: corresponds to the average of indicators.
      • MIN: corresponds to the minimum value of a product in a group.
      • MAX: corresponds to the maximum value of a product in a group.
      • COUNT: corresponds to the number of products in a group.
      • MOST: corresponds to the product with the most occurrences in a group.

      GroupFormPonderationCorresponds to the weighting of indicators for groups.

      The following values are available:

      • None: no weighting is applied. All values of products are computed.
      • Product Quantity: each value of a product is multiplied by the products quantity available in the group.

      CurrencyCorresponds to the indicator's currency.
      CurrencyPositionCorresponds to the indicator's currency position.

      The following values are available:

      • 0: the currency is aligned to the left.
      • 1: the currency is centered.
        Note: The default value is 1.
      • 2: the currency is aligned to the right.

      FormatDataCorresponds to the indicator's format to display.

      The following values are available:

      • RAW: displays the raw value of an indicator.
      • PERCENT: displays the percentage value of an indicator.
      • RAW_ONLY: displays only the raw value of an indicator.

      AnalyseDataCorresponds to the analysis values to define (maximum, minimum and color).
    • Configure the attributes in the attributecolor tag. You can define the color for specific group values.

      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

  4. Upload the updated file.
    For more information, see Update a Configuration File.

Example of a Business Data Configuration File

<?xml version="1.0" encoding="UTF-8"?>
<Configuration  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="ENOSHOStoreStudio_BusinessDataConfiguration.xsd"> 

	<!--  Indicators parameters 
		LocalisedTitleID :		ID of the indicator localised title
		Title :				 	Title of the indicator : not treated if localised ID is defined
		Color : 				BackGround Color
		TextColor : 			Text Color
		NumberDecimals : 		Decimals
		Currency : 				Currency string
		Currency : 				Currency position : from 0 to 2 (left to right)
		GroupForm : 			Group Formula : SUM for sum, AVG/AVERAGE for average, MIN for minimum, MAX for maximum, COUNT for the element count onf the group
								If no groupForm is defined : the indicator is not available for groups
		GroupFormPonderation :	Group Formula is ponderated either by ;
									- Or the total number of elements (UNIT), 
									- Or not ponderated (PRODUCT or other) 
									- If not defined, no ponderation are applied
		DataFormat : 			How to display the data : 
									- RAW for raw value
									- PERCENT for percentage value
									- RAW_ONLY for disabled percentage displaying availability : only raw value will be available
		AnalyseData : 			Color and data for analysing
	 -->
	 
	<!-- Indicators parameters -->	
	<!-- STOCK Color default BLUE -->	
	<indicator id="stock">
		<attribute data="LocalisedTitleID" value="BUS_STOCK"/>
		<attribute data="Color" value="003AFF"/>
		<attribute data="TextColor" value="FFFFFF"/>
		<attribute data="NumberDecimals" value="0"/>
		<attribute data="GroupForm" value="SUM"/>
	</indicator>
	<indicator fieldid="daysOfStock">
		<attribute data="LocalisedTitleID" value="BUS_STOCK_DAY"/>
		<attribute data="Color" value="0776FF"/>
		<attribute data="TextColor" value="FFFFFF"/>
		<attribute data="NumberDecimals" value="0"/>
		<attribute data="GroupForm" value="AVG"/>
	</indicator>
	<indicator fieldid="targetedStock">
		<attribute data="LocalisedTitleID" value="BUS_STOCK_TARGET"/>
		<attribute data="Color" value="358CF8"/>
		<attribute data="TextColor" value="FFFFFF"/>
		<attribute data="NumberDecimals" value="1"/>
		<attribute data="GroupForm" value="AVG"/>
	</indicator>	
	<indicator fieldid="maximalcapacity">
		<attribute data="LocalisedTitleID" value="BUS_MAXIMAL_CAPACITY"/>
		<attribute data="Color" value="0776FF"/>
		<attribute data="TextColor" value="FFFFFF"/>
		<attribute data="NumberDecimals" value="0"/>
		<attribute data="GroupForm" value="SUM"/>
	</indicator>
	<indicator fieldid="capacity">
		<attribute data="LocalisedTitleID" value="BUS_CAPACITY"/>
		<attribute data="Color" value="0699FF"/>
		<attribute data="TextColor" value="FFFFFF"/>
		<attribute data="NumberDecimals" value="0"/>
		<attribute data="GroupForm" value="SUM"/>
	</indicator>
	<indicator fieldid="fillingratio">
		<attribute data="LocalisedTitleID" value="BUS_FILLINGRATIO"/>
		<attribute data="Color" value="03253C"/>
		<attribute data="TextColor" value="FFFFFF"/>
		<attribute data="NumberDecimals" value="0"/>
		<attribute data="GroupForm" value="SUM"/>
		<attribute data="Currency" value="%" />
		<attribute data="DataFormat" value="RAW_ONLY" />	
	</indicator>
	
	<!-- Number of facings Horizontal/vertical/depth : classic color RGB -->
	<indicator fieldid="vcount">
		<attribute data="Color" value="278700"/>
		<attribute data="TextColor" value="FFFFFF"/>
		<attribute data="NumberDecimals" value="0"/>
	</indicator>
	<indicator fieldid="hcount">
		<attribute data="Color" value="ED1D1D"/>
		<attribute data="TextColor" value="FFFFFF"/>
		<attribute data="NumberDecimals" value="0"/>
	</indicator>
	<indicator fieldid="dcount">
		<attribute data="Color" value="0976D7"/>
		<attribute data="TextColor" value="FFFFFF"/>
		<attribute data="NumberDecimals" value="0"/>
	</indicator>
	<indicator fieldid="dmaxcount">
		<attribute data="Color" value="055DAB"/>
		<attribute data="TextColor" value="FFFFFF"/>
		<attribute data="NumberDecimals" value="0"/>
	</indicator>

	<!-- Linear Meters YELLOW -->
	<indicator id="linearMeters">
		<attribute data="LocalisedTitleID" value="BUS_LINEAR_METER"/>
		<attribute data="Color" value="F1F804"/>
		<attribute data="TextColor" value="000000"/>
		<attribute data="NumberDecimals" value="2"/>
		<attribute data="GroupForm" value="SUM"/>
	</indicator>

	
	<!-- Business Data  -->		
	
	<!-- SALES : Color default RED -->		
	<indicator id="sales_number">
		<attribute data="LocalisedTitleID" value="BUS_SALES_NUM"/>
		<attribute data="Color" value="FF0707"/>
		<attribute data="NumberDecimals" value="0"/>
	</indicator>
	<indicator id="average_sales_number">
		<attribute data="LocalisedTitleID" value="BUS_AV_SALES_NUM"/>
		<attribute data="Color" value="EF293B"/>
		<attribute data="GroupForm" value="AVG"/>
	</indicator>
	<indicator fieldid="average_sales_by_Linear">
		<attribute data="LocalisedTitleID" value="BUS_AV_SALES_NUM_BY_LINEAR"/>
		<attribute data="Color" value="8C252E"/>
		<attribute data="GroupForm" value="AVG"/>
	</indicator>
	
		<!-- MARGIN : Color default Orange -->
	<indicator id="gross_margin_sale">
		<attribute data="LocalisedTitleID" value="BUS_MARGIN"/>
		<attribute data="Color" value="FFAA00"/>
		<attribute data="GroupForm" value="AVG"/>
		<attribute data="Currency" value="euro" />
	</indicator>
	<indicator fieldid="margin_by_Linear">
		<attribute data="LocalisedTitleID" value="BUS_MARGIN_BY_LINEAR"/>
		<attribute data="Color" value="BC7F07"/>
		<attribute data="GroupForm" value="AVG"/>
		<attribute data="Currency" value="euro" />		
	</indicator>
		
	<!-- PRICES : Color default Green -->		
	<indicator fieldid="price">
		<attribute data="LocalisedTitleID" value="BUS_PRICE"/>
		<attribute data="Color" value="03AB26"/>
		<attribute data="TextColor" value="000000"/>
		<attribute data="GroupForm" value="SUM"/>
	</indicator>	
	<indicator id="average_price_vat">
		<attribute data="LocalisedTitleID" value="BUS_AV_PRICE_VAT"/>
		<attribute data="Color" value="015613"/>
		<attribute data="TextColor" value="FFFFFF"/>
		<attribute data="GroupForm" value="AVG"/>
		<attribute data="Currency" value="euro" />	
	</indicator>
	<indicator id="average_price">
		<attribute data="LocalisedTitleID" value="BUS_AV_PRICE"/>
		<attribute data="Color" value="027A1B"/>
		<attribute data="TextColor" value="FFFFFF"/>
		<attribute data="GroupForm" value="AVG"/>
		<attribute data="Currency" value="euro" />
	</indicator>		
	<indicator id="average_purchase_price">
		<attribute data="LocalisedTitleID" value="BUS_AV_PURCHASE_PRICE_VAT"/>
		<attribute data="Color" value="00A923"/>
		<attribute data="TextColor" value="000000"/>
		<attribute data="GroupForm" value="AVG"/>
		<attribute data="Currency" value="euro" />
	</indicator>	
	<indicator id="average_purchase_price_vat">
		<attribute data="LocalisedTitleID" value="BUS_AV_PURCHASE_PRICE"/>
		<attribute data="Color" value="03AB26"/>
		<attribute data="TextColor" value="000000"/>
		<attribute data="GroupForm" value="AVG"/>
		<attribute data="Currency" value="euro" />
	</indicator>	

	<!-- Others -->	
	<indicator id="tree">
		<attribute data="LocalisedTitleID" value="CDT"/>
		<attribute data="Color" value="95BADF"/>
		<attribute data="TextColor" value="000000"/>
	</indicator>	
	
	
	<!--  Specific color parameters 
		id/select : 			ID of the field
		attribute : data : 		Specific value on which we want to apply a color
		attribute : color : 	Specific background color given to the value
		attribute : textcolor : Specific text color given to the value
	 -->
	<!-- Configuration of specific colors for attribute values. -->
	<attributeColor select="attribute[ShopperSupplier]"> 
		<attribute data="NA" color="FF00000"/>
	</attributeColor>
	<attributeColor select="attribute[SHOAtt_Brand]"> 
		<attribute data="Carrefour" color="0000FF" textcolor="FFFFFF"/>
		<attribute data="FARAWAY" color="000000" textcolor="FF0000"/>
	</attributeColor>
</Configuration>