JCO事务管理

/*
* 标准对账单过账
* @account 标准对账单号
* @year 年度
*/
public List<String> doAccountStatmentPost(String account,String year) throws JCoException{
JCoDestination destination = JCOUtil.getDestination();
JCoFunction function = destination.getRepository().getFunction("BAPI_INCOMINGINVOICE_POST");
if (function == null) {
throw new RuntimeException("BAPI_INCOMINGINVOICE_POST not found in SAP.");
}
//设置参数-对账单号
function.getImportParameterList().setValue("INVOICEDOCNUMBER", account);
//设置参数-年度
function.getImportParameterList().setValue("FISCALYEAR", year);
//<开始SESSION>
JCoContext.begin(destination);
//调用函数
function.execute(destination);
JCoTable jcoTable1 = function.getTableParameterList().getTable("RETURN");
List<String> errorMessages = new ArrayList<String>();
for (int i = 0; i < jcoTable1.getNumRows(); i++) {
jcoTable1.setRow(i);
errorMessages.add("TYPE:"+jcoTable1.getString("TYPE")+" MESSAGE:"+jcoTable1.getString("MESSAGE"));
}
if(jcoTable1.getNumRows()==0){
JCoFunction function2 = destination.getRepository().getFunction("BAPI_TRANSACTION_COMMIT");
function2.getImportParameterList().setValue("WAIT", "X");
function2.execute(destination);
}
//<结束SESSION>
JCoContext.end(destination);
return errorMessages;
}
/*

转载于:https://www.cnblogs.com/zfswff/p/5671150.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值