// it's an end process event, nothing more to do
}
IBIObjectDAO biObjectDAO = DAOFactory.getBIObjectDAO();
String biobjectIdStr = (String) eventParams.get("biobjectId");
Integer biObjectId = new Integer(biobjectIdStr);
BIObject biObject = biObjectDAO.loadBIObjectById(biObjectId);
response.setAttribute("biobject", biObject);
SubreportDAOHibImpl subreportDAOHibImpl = new SubreportDAOHibImpl();
List list = subreportDAOHibImpl.loadSubreportsByMasterRptId(biObject.getId());
List biObjectList = new ArrayList();