The CXWorks site contained lots of useful articles. They are referenced from Google's index and also from SAP knowledgebase tickets.
e.g. https://me.sap.com/notes/3328009/E
directs me to https://www.sap.com/cxworks/article/2589632821/strategies_f...
The downloads page at https://wiki.hybris.com/display/downloads is sending me to https://help.hybris.com/1808/hcd/9f99b61bd8f14414a60340ee5d77a51f.html
What is version 1808? Is it 6.8.0 ? Are SAP emulating Microsoft with their 3.1,95,ME,2000,XP,7 sty...
I want to be able to add a negative filter query. In my SearchQueryPopulator I can do
target.getSearchQuery().addFilterQuery("myfield", value);
to add
&fq=myfield_string_mv:value
to the Solr search, but what I want to add is
&fq=-myfield_string_...
We have recently upgrade from v4.8 to v5.5
Since making that upgrade we've noticed many more UPDATE queries being run against the database than previously.
It seems that calling modelservice.save(...) on a model even if it has no changes still causes...
I'm testing upgrading a Hybris installation from 4.5.15 -> 4.8.16
After system update I get these messages
WARN [hybrisHTTP3] [AbstractTypeInitializer]
****************************
You can not add a deployment to type ProductPromotionRelation ...
This seems an odd KBA. I would have thought that the article should specify that you shouldn't be editing advanced.properties as it isn't going to persist into Commerce Cloud. Instead you should be using one of the many mechanisms for overriding syst...
They're just telling you not to use that deprecated interface in your code. Use the one from the `com.hybris.cockpitng` package instead. The cockpitng implementation extends the deprecated backoffice one so the methods are available to you use.At som...
From what you've described it sounds like you're running the 2 CMSSites using a single storefront extension, i.e. one Tomcat web context. It will be setting the session cookie with a path of /e.g. if you look at your response headers you'll see somet...
If your prices are coming from an external source then do you really need them to be catalog version aware? In more recent versions of SAP Commerce prices are decoupled from products and linked by a 'soft' relationship on product code.https://help.sa...
If you have a look in hybris/bin/platform/project.properties you'll find commented properties about which ports are set. Generally the 3 you want to set to avoid collisions aretomcat.http.port
tomcat.ssl.port
tomcat.ajp.portSet them in each developer...