Mehmet Karahan
3 min readMar 18, 2021

--

HOW WE CAN EXPORT DATA WITH IMPEX

In this article, I try to explain how we can export any table datas in hybris with using impex and import any hybris environment.For this example,I use “Category” table

Firstly, I create a flexible search query to show all categories in hybris system as shown below image:

Get All Category Data Flexible Search Query

The query result shows us there are 184 records in our hybris system.

So what if we add these records our local hybris, we must open backoffice,and search and click “Script Generator” tab menu as shown below image:

In this popup screen,we must click the “GENERATE” button and after that we will notice the “Script” input fill all impex script datas.

Copy the script texts any notepad program as you want,I copied that notepad++ editor and I search and copied the category section script as shown below image:

We back to hac menu (hybris administration console) to paste the selected category impex script to export datas as a zip file with clicking “Export content” button:

Shown exported zip file

When you extract the zip file you show 2 files,one of them .csv file and another that importscript.impex file.

If you want to import the exported file, you must go to the “Impex Import” menu and run the importscript.impex file.

As a result,these processes provide transfer data prod to local environment easily or for any environment.

--

--