
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Error While Calling XBP Function Module via SAP .NET Connector
Note that you need to execute function call in a single session so you have to wrap your logic into JCoContext. Try using below method:
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); }
Advertisements