ucReportPreDisplay

Purpose

This routine is called before the Detailed report prints the issue.

Applies To

Search & Reporting screens

Signature

public boolean ucReportPreDisplay (    
      SesameSession session, 	// the current Sesame session
      HttpServletRequest request,
      String prob_id,
      PrintWriter out)

Notes

Security could be checked at this point, and returning false will prevent the report from being displayed

Example

 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;
    }