/**
   * 一些根据业务员规则产生的数据项目在initS_FrameWork_Query_Operation()赋值
   *
   * @return
   * @throws ProcessingException
   */
  public String initS_FrameWork_Query_Operation() throws ProcessingException {
    String sReturnValue = null;

    FrameworkDefaultLogger.debug(
        "Inside S_FrameWork_Query_OperationWorkerBean.initS_FrameWork_Query_Operation(...).");

    S_FrameWork_Query_OperationValueObject tempVO = new S_FrameWork_Query_OperationValueObject();

    // 存储过程初始化
    String objID1 = getServletRequestParameter("ID"); // 只针对主键
    if (objID1 != null && !objID1.trim().equalsIgnoreCase("")) {
      Vector vPara = new Vector(); // 存储过程参数
      Parameter para = null; // 存储过程传入传出参数
      Collection coll = null; // 返回集合	
      para = new Parameter(objID1, true);
      vPara.addElement(para);
      coll =
          S_FrameWork_Query_OperationProxy.executeStoredProcedure(
              "i_S_FrameWork_Query_Operation", vPara, true);
      if (coll != null) {
        if (coll.size() > 0) {
          Iterator it = coll.iterator();
          while (it.hasNext()) {
            tempVO = (S_FrameWork_Query_OperationValueObject) it.next();
          }
        }
      }
    }

    tempVO = setDefault(tempVO, "CreateEdit", "INIT_S_FrameWork_Query_Operation");

    if (tempVO != null) {
      ApplicationUSOM objectManager = (ApplicationUSOM) getUSOM();
      objectManager.setCurrentS_FrameWork_Query_Operation(tempVO);
    }

    return sReturnValue;
  }