private ArrayList getCustomValues(ReportForm form, HttpServletRequest request) {

    String category = FormatString.blankNull(form.getCategory());
    String selectItemCategory = FormatString.blankNull(form.getCategory());
    ArrayList customValues = new ArrayList();

    if ("inventory".equalsIgnoreCase(category)) {
      if (selectItemCategory.length() > 0)
        customValues.add(new CrystalReportCustomColDTO("prodline", selectItemCategory));
    }

    return customValues;
  }