How Do I Display a List of Available Catalogs in Hybris Commerce?

This tutorial will provide step by step instructions to display a list of available catalogs in your Hybris Commerce implementation.

Step by Step Instructions

1. Goto to HAC in your Web browser. (If Hybris is running on your local machine, type https://localhost:9002/ in your Web browser URL)

2. Type your user name and password once HAC is displayed. (The following screenshot displays the HAC login page with username and password provided)

3. Once you've logged in successfully, click on Console -> Scripting Languages

4.  Copy and paste the following code into the Console window:

import de.hybris.platform.catalog.CatalogService;
import de.hybris.platform.core.Registry;
import de.hybris.platform.catalog.model.CatalogModel;

CatalogService catalogService = (CatalogService) Registry.getApplicationContext().getBean('catalogService');

println("Hybris Catalogs:");

for (CatalogModel catModel : catalogService.getAllCatalogs()) {
println(catModel.getId() + " " + catModel.getVersion());
}

Your Console should resemble the following:

5. Click on Execute

6. Next, Click on the Output tab, you should see the available catalogs in your Hybris Commerce implementation.

(My list of catalogs will be different than yours, but your catalogs will appear in this format)

7. Tutorial is complete, now you know how to display a list of available catalogs in Hybris Commerce.

Marc Raygoza

Marc is the Founder of HybrisArchitect.com.
He enjoys helping others learn more about SAP Commerce Cloud (Hybris). Marc is a SAP Commerce Certified Professional and has held the role of SAP Commerce Cloud Architect at Deloitte, PwC, Brillio (a Bain Company), and Nasty Gal. Marc holds an M.S. Software Engineering from Carnegie Mellon University and a B.S. in Accountancy from California State University, Fresno. He can be reached at: mraygoza@hybrisarchitect.com

You may also like...

Popular Posts