Sometimes HMC/Backoffice is buggy when searching for Duplicate Identifiers. This is a handy flexible query to find duplicate CMSItems in Hybris:
SELECT {UID}, count(1) from {CMSItem} WHERE {CatalogVersion} = <catalogversionPK> GROUP BY {UID} HAVING COUNT(1) > 1
For the CatalogVersion, use the respective CatalogVersion PK
0 Comments