通过 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); }
广告