獲取當前修改的行記錄資料
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()
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/24627116/viewspace-2651460/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Linux C獲取當前工作目錄Linux
- Java如何獲取當前執行緒Java執行緒
- JavaScript 獲取當前月份JavaScript
- 獲取當前時間
- JVM 如何獲取當前容器的資源限制?JVM
- php 獲取當前域名和當前協議PHP協議
- Java:如何輕鬆獲取當前執行的方法名Java
- 簡單實現Laravel獲取當前執行的SQLLaravelSQL
- mybatis獲取當前時間MyBatis
- 獲取當前頁面的topViewControllerViewController
- Java獲取當前星期幾Java
- Flutter 小知識,Key的使用(獲取當前點選Widget位置/獲取當前Widget大小)Flutter
- Spark獲取當前分割槽的partitionIdSpark
- 獲取當前Tomcat例項的埠Tomcat
- 獲取當前時間往前的日期
- Oracle database 19c中獲取當前資料庫版本的方法OracleDatabase資料庫
- Python如何獲取當前執行檔案路徑?Python
- Yii2 獲取當前請求的路由資訊路由
- python 如何獲取當前時間Python
- js獲取當前的具體時間JS
- 用js獲取當前月份的天數JS
- [系列] Go - 基於 GORM 獲取當前請求所執行的 SQL 資訊GoORMSQL
- git獲取當前所在的目錄Git
- ABL獲取XBL資訊記錄
- 小程式雲開發獲取不到資料庫的記錄資料庫
- Flutter獲取當前網路型別Flutter型別
- 微信小程式獲取當前位置微信小程式
- VS2015控制檯中獲取和修改當前字型大小(2-2)
- js根據IP地址獲取當前的省市JS
- 如何用js獲取當前時間和ip地址以及當前城市JS
- 直播app原始碼,uniapp獲取當前位置APP原始碼
- C# 獲取當前伺服器域名C#伺服器
- 如何用Java獲取當前時間戳?Java時間戳
- python怎麼獲取當前是幾點?Python
- react獲取當前頁面的url引數React
- 獲取當前js檔案被引用的路徑JS
- iOS獲取當前控制器的正確方式iOS
- Spring Security - 獲取當前登入使用者的詳細資訊Spring