Advanced Customization > Business Logic Customization > Report Generation > Reporting Input Page Customization > Customization Points > Procedure – Specifying Parameters To Omit
  
Procedure – Specifying Parameters To Omit
By default, only the Data Source parameters are included in the Cognos request from Windchill. However, parameters can be explicitly excluded using the "parametersToOmit" request attribute. Note, this is a servlet request object attribute list. Assume you want to omit the parameter with name, “param1” that is in the list of parameters for the report’s Data Source. The following is an example for specifying this.
<%
request.setAttribute("parametersToOmit",
Arrays.asList("param1"));
%>