BCC performance issues
BCC Navigation slowness while browsing unsited catalog
Symptoms:
After creating merchandising project and browsing unsited catalog assets, if you see slowness then that could be the problem with large catalog data.
Solution:
1. To resolve this issue, update the below configurations in DCS-UI module.
2. Go to build server/ATG installed server location <ATG-ROOT>/DCS-UI/config/atg/remote/content/browse/ContentBrowseHierarchy.xml
3. Open the file ContentBrowseHierarchy.xml and find <browse-item id="unsited" section.
4. Update the value from show-count="true" to show-count="false"
5. After the change the lines will look as below (highlighted in bold)...
<!-- The unsited catalog items node -->
<browse-item id="unsited"
label-resource="node.unsitedItems.label"
show-count="false"
icon-resource="node.unsitedItems.iconSmall"
bin="true"
xml-combine="replace">
6. Also disabling show-count for "node.uncategorizedItems.label" will also help to resolve the slowness issue.
<!-- The uncategorized catalog items node -->
<browse-item id="uncategorized"
label-resource="node.uncategorizedItems.label"
show-count="false"
icon-resource="node.uncategorizedItems.iconSmall"
bin="true">
7. After updating the file, re-build the EAR and deploy into App server to verify the change.
Comments
Post a Comment