通过 SAP.net 连接器调用 XBP 函数模块时出错
请注意,你需要在单一会话中执行函数调用,因此你必须将逻辑包装进 JCoContext 中。尝试使用以下方法
try { JCoContext.begin(destination); try { // your function calls here // probably bapiTransactionCommit.execute(destination); } catch(AbapException ex) { // probably bapiTransactionRollback.execute(destination); } } catch(JCoException ex) { [...] } finally { JCoContext.end(destination); }
广告