This routine is called before the Detailed report prints the issue.
Search & Reporting screens
public boolean ucReportPreDisplay ( SesameSession session, // the current Sesame session HttpServletRequest request, String prob_id, PrintWriter out)
Security could be checked at this point, and returning false will prevent the report from being displayed
public boolean ucReportPreDisplay(SesameSession session, //the current Sesame session HttpServletRequest request, String itemId, PrintWriter out) { String area = (String) session.getAttribute ("VF_UC_AREA_FILTER"); if (A_DOC.equals(area) ) return dh.ucReportPreDisplay(session, request, itemId, out); return true; }