protected void processFindModel(
      String actionCode, String actionObject, HttpServletRequest request) throws SQLException {

    OutMgr outMgr = (OutMgr) this.getManagerFromSession(request);
    setHttpRequestStockPlace(request, outMgr);
    if (actionObject.equals("OutsourcingStock")) {
      outMgr.populateOutsourcingStockDetail();
    } else if (actionObject.equals("Material")) {
      setHttpRequestViewMaterial(request, outMgr);
      outMgr.populateMaterial();
    }
  }