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

更新于:2019 年 12 月 10 日

80 次浏览

让您的职业生涯起步

完成课程以获得认证

开始学习
广告