Cloning Catalogs in SAP Hybris. Export/import whole catalogs in/from IMPEX


This article explains how to create a copy of the product or content catalog. For example, you may want to create a second store taking the existing as a starting point, or you may want to have a new country version of the existing e-shop. You can use this solution for creating a custom data exporter as well. These recommendations are useful for the case when the website you want to use as a template was manually changed by administrators since it was launched. In this case, the set of IMPEX files with the initial setup are no longer relevant, and you need to create a new set of the live system. There is an out-of-the-box exporter, but unfortunately it is not flexible in terms of configurability and extensibility. For example, I can’t specify the catalog version for the objects to export. Some object properties are exported separately from the objects they belong to. For example, OOTB Product export doesn’t include product supercategories as part of Product. This information is exported as part of CategoryProductRelation type. I compared the impexes created by the out-of-the-box script generator and one explained in the article: Screen Shot 2018-03-18 at 11.32.10 PM.pngScreen Shot 2018-03-18 at 11.33.03 PM.png The right Impex includes the relations closer to the object it refers to. For particular use cases it is more convenient than the out of the box approach. However, it creates a complexity as well: we need to process N:N relations. In the current PoC, I blacklist some attributes of some types to avoid mutual referencing for N:N relations. It is not a nice workaround, but it is enough for PoC. Of course, in the PoC, for the sake of simplicity, there are other drawbacks too and points to improve in the next versions including this one. Once we discuss object cloning, there is a dedicated tool as well for this purpose.  Hybris 6.4.0 introduced a new CMS Cloning Strategy that enables us to clone CMS pages. It is well documented. However, today we are talking about the catalog aware objects in general, both product and content data. simplifed-process.pngThe approach below demonstrates how to address the problem for the out-of-the-box storefronts, both for product and content catalogs. In order to create a copy of the catalog, we need to clone all catalog items with all attributes. In the solution explained below, I export the items into IMPEX, and import them back in the new catalog. The same approach is used in out-of-the-box impex script generator. However, there is a complication: external links, relations. Some external links need to be rewritten: for the cloned copy the objects they link to are also cloned. For example, you may want not to clone media objects. It is useful if media is designed to be shared between the catalogs. The key point here is simple: we don’t know what cloning logic should be applied for the particular reference. For example, you have a product linked to a category. If you create a cloning copy of the product should you preserve the link to a category or use a new item of Category created as part of cloning process? It means so you need to configure per type and attribute whether you want the objects to be referenced (shallow copy) or to be cloned too (deep copy). The good point here is that these rules have already defined in the catalog synchronization configuration for the existing types and attributes. So my goal is to create an IMPEX file for all these types taking into account the synchronization configuration with some flavors of manual tuning. If it says that the object needs to be cloned, I am going to resolve the link into a set of external symbolic keys, such as UID or CODE. If the configuration says that the object needs to be referenced, I will use a PK instead. For example, the fields of this type are selected in the IMPEX below (BTW this IMPEX is generated by my script): For the selected fields, the values are also generated: Screen Shot 2018-03-18 at 6.23.20 PM.png Why IMPEXes? Because it will help me to split the process into two separated phases: exporting and importing. I will be able to change the data in the middle. I can extract the data from one environment and apply the impexes to another environment. At least, I can use this information as a backup of the catalog-aware objects. Some objects don’t need to be copied. It is very specific for the task, though. For example, PriceRow and Media are catalog-aware, but creating copies of all medias might not be part of your task because it is a resource-intensive process. So we need to mark such objects as “referenced”. Many types are subtypes of one or more supertypes. The object of the subtype belongs to the supertype as well, so we need to take it into account to avoid doing the work twice. For example, there are objects of the Product type, and objects of the ApparelSizeVariantProduct which is a subtype of Product. We need to split attributes into language-dependent (localizable) and language-independent. For the sake of clarity, each group can be additionally split into two categories: values and references.

Solution in detail

process2
  1. “Script 1”: Generate a list of types to export
    1. Apply additional (manual) rules to the list
  2. “Script 2” Generate a list of attributes of each type and resolve the references
    1. unique attributes
    2. language-independent
      1. values
      2. references
        1. catalog aware references
        2. catalog unaware references
    3. language-dependent
      1. values
      2. references
        1. catalog aware references
        2. catalog unaware references
  3. “Script 3” For each of the categories above, generate an Impex script for exporting.
    1. Export data from hybris via the generated impex script (OOTB)
    2. Create a cronjob with this impex file.
    3. Run the cronjob.
  4. “Script 4” Replace the catalogVersion with the target one.
    1. In order to get the copy of the existing data, we need to replace the catalog name with the target (new) catalog name.
    2. Import the dataset back to hybris (or apply it to a new instance)
The first task we need to address is identifying the catalog-aware hybris types. We need to clone items in them. For example, if you clone a content catalog, all pages, page slots, and components need to be cloned.

Script 1. Generate a list of types to export

The catalog-aware types are marked with the property “catalogItemType” in items.xml. The following Groovy script shows the type tree with the catalog aware status: https://github.com/raliev/hybrismart-cloningcatalogs/blob/master/script1-generate-a-list-of-types-to-export.groovy The fragment of the output: Screen Shot 2018-03-14 at 8.48.09 PM As you see, some types may be catalog-aware while their parent types are not and vice versa. To have a clone, we need to process the types marked with 
true
 in the output. For SAP hybris 6.6 OOTB, the final list of such objects has 177 objects. Possibly you need to reduce a number of types to export, because there are a lot of them that are not very important for the process or empty. However, you need to remember that excluding Media won’t create the clones of the images, and you need to configure the exporting or importing modules to process the external references to images correctly. For example, ProductX from CatalogA has an image Y from CatalogA. After creating a copy of ProductX in CatalogB, the system will expect that the ImageY is also copied. If you exclude Media from the list of the types, the image won’t be created and the IMPEX file will have an issue. Possibly, you will need to fix it manually or automatically by processing image types with some custom rules.

Script 2. Generate a list of attributes of each type and resolve the references

Let’s create a list of attributes for IMPEX for the types created at the previous step. The output of this script will be used as input for the IMPEX statements generator. The script is written in Groovy, so you can execute it in HAC, without installing any additional software. https://github.com/raliev/hybrismart-cloningcatalogs/blob/master/script2-types-and-attributes.groovy The script creates a list of attributes in the following form: Screen Shot 2018-03-17 at 6.44.37 PM.png For each type from the list, it finds the exportable attributes, and creates parameters for columns in the impex, such as (catalog(id), version). You can see the block with the 0s and 1s in the screenshot above: these digits are the attribute flags, such as unique attribute, mandatory attribute or relation type flag. In order to push the data to the next script, we need to include the data creates here as an input for the Impex generator groovy script. However, there is a limitation: hybris groovy script can’t pull data from CSV easily. The simplest solution is including the data as part of groovy script. There is no limitation on the size of the script, so it will work well: Screen Shot 2018-03-17 at 6.55.24 PM So I decided to slightly change the output format: this script creates the semicolon-delimited values enclosed in quotes followed by a comma to use this block as a constant array (“lines”).

Script 3. Generating an Impex script for use with the default hybris export module

This script is relatively simple. It transforms the data from the previous step into the instructions for hybris what types and attributes should be exported. The script converts these lines from the input (generated by the script from the previous step): Screen Shot 2018-03-17 at 7.10.14 PM.png To the following IMPEX script: Screen Shot 2018-03-17 at 7.07.21 PM.pngHaving executed, this script creates a zip file with the CSV data: Screen Shot 2018-03-17 at 7.12.33 PM CMSNavigationEntry.csv: Screen Shot 2018-03-17 at 7.16.08 PM In order to import it back, you need to change catalogVersion with a new value, a new catalog created for a data copy.  However, there are things you need to take into account as well:
  • This scripts above are designed to work only with one catalog at a time. That means you need to repeat the steps separately for Product and Content catalogs.
  • Classification catalog is also a catalog you may want to copy, but the attribute for it has a different name, systemCatalog. Currently, the scripts are not designed to process the classification catalogs. It is easy to add this feature though.
  • Some attributes are excluded because they have special purpose. They are listed in the scripts. Possibly, for you set of attributes you need to exclude more.
  • Some attributes are in conflict with each other. For example, Object A refers to ObjectB while ObjectB refers to ObjectsA as well. Hybris can handle it via lean imports, but in some cases it doesn’t work nicely. For example, the attribute contentSlots for the page objects was excluded because of the ContentSlots are defined via contentSlot objects.
The script can process multi-language attributes correctly. If you have more than one language, you may need to export data in all available languages.  In this case, you need to include a list of languages in the script as well:
languages = ['en', 'de'];
For each language you will have a separate attribute definition in the IMPEX header: Screen Shot 2018-03-18 at 6.42.38 PM.png The script #3 is available here: https://github.com/raliev/hybrismart-cloningcatalogs/blob/master/script3-create-impex.groovy The output of the script can be used in the out-of-the-box exporting module.

Results

After applying the impexes back to hybris, but in the new catalogs (Product and Content), and configuring a new website,
duplicateappareluk.local
, our website is available as a copy: Screen Shot 2018-03-18 at 8.15.40 PM.png Product information in the backoffice: Screen Shot 2018-03-18 at 8.23.16 PM.png As you see, the new Product catalog is available here, the product is linked to the right supercategories, from the same catalog (apparel 2). The scripts are available on github: https://github.com/raliev/hybrismart-cloningcatalogs Please take into account that these scripts are not designed as a complete and universal solution. It is just a proof of concept. Using these scripts as a starting point, I’ve developed the project-specific solutions for the needs of my project.

2 Responses

  1. Artem

    Artem

    Reply

    19 March 2018 at 01:28

    Thank you Rauf. How about y2ysync?

Leave a Reply to Artem Click here to cancel reply.