RELATEED CONSULTING
相关咨询
选择下列产品马上在线沟通
服务时间:8:30-17:00
你可能遇到了下面的问题
关闭右侧工具栏

新闻中心

这里有您想知道的互联网营销解决方案
获取当前修改的行记录数据-创新互联

CO代码:

成都创新互联秉承实现全网价值营销的理念,以专业定制企业官网,成都做网站、网站设计、外贸营销网站建设成都微信小程序,网页设计制作,移动网站建设营销型网站建设帮助传统企业实现“互联网+”转型升级专业定制企业官网,公司注重人才、技术和管理,汇聚了一批优秀的互联网技术人才,对客户都以感恩的心态奉献自己的专业和所长。

                //获取当前修改的行

                String rowReference = pageContext.getParameter(OAWebBeanConstants.EVENT_SOURCE_ROW_REFERENCE);

                Serializable[] param ={ rowReference};

                am.invokeMethod("checkItemCategoryExists",param);

AM代码:

    public void checkItemCategoryExists(String rowReference) {

        OARow row = (OARow)findRowByRef(rowReference);

        if (row != null) {

            OADBTransaction txn = getOADBTransaction();

            CallableStatement cstmt = null;

            String result;

            String sq1 = 

                "BEGIN  ?:=cux_srm_category_pkg.check_item_cat_exists(?,?,?,?); END;";

            try {

                cstmt = txn.createCallableStatement(sq1, 1);

                cstmt.registerOutParameter(1, OracleTypes.VARCHAR);

                cstmt.setString(2, 

                                row.getAttribute("CategorySetId").toString());

                cstmt.setString(3, 

                                row.getAttribute("OrganizationId").toString());

                cstmt.setString(4, 

                                row.getAttribute("InventoryItemId").toString());

                cstmt.setString(5, 

                                row.getAttribute("ItemCategoryId").toString());

                cstmt.execute();

                result = cstmt.getString(1);

                if (result.equals("Y"))

                    throw new OAException("该物料已存在,请重新输入", OAException.ERROR);

            } catch (Exception e) {

                throw OAException.wrapperException(e);

            } finally {

                if (cstmt != null) {

                    try {

                        cstmt.close();

                    } catch (Exception e) {

                        e.printStackTrace();

                    }

                }

            }

        }

    } //end checkItemCategoryExists()


新闻标题:获取当前修改的行记录数据-创新互联
本文地址:http://sczitong.cn/article/gojpi.html