Configuring Catalog boundaries to prevent unbound exceptions
The catalog subsystem defines business object values for product search results. The default values are defined in the xml/config/com.ibm.commerce.catalog/wc-admin-component.xml file. Limit controls are disabled by default. You can enable it by changing the values to meet your business needs.
Procedure
What to do next
If you are using customized JSP files from WebSphere Commerce Version 6 in your WebSphere Commerce Version 7 store, you must modify your JSP files to refer to the pageSize set by the beans.
That
is, you must change references of pageSize
to references
of catEntSearchListBean.pageSize
in your JSP files.
For
example, change:
<c:set var="prevPageIndex" value="${catEntSearchListBean.beginIndex - pageSize}"/>
to:
<c:set var="prevPageIndex" value="${catEntSearchListBean.beginIndex - catEntSearchListBean.pageSize}"/>