通过 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 次浏览

开启你的职业

完成课程后获取认证

开始
广告