Questions tagged [bapi]

BAPIs (Business Application Programming Interface) are specific methods for SAP business objects, which are stored in the Business Object Repository (BOR) of the SAP system and are used for carrying out particular business tasks.

BAPIs (Business Application Programming Interface) are specific methods for SAP business objects, which are stored in the Business Object Repository (BOR) of the SAP system and are used for carrying out particular business tasks.

In an SAP system, BAPIs are stored as RFC enabled function modules and can be accessed through the Function Module Builder. Standard BAPIs can be called in ABAP developments like a standard function module and as they have remote function call enabled, they can be used to integrate SAP with external systems.

Useful Links:

Related Tags:

209 questions
0
votes
0 answers

SAP data extraction through BAPI file in Automation Anywhere

I am working in automation anywhere enterprise client where i have to extract SAP data with the help of BAPI files and dump it to the .csv file, when there is no parameter or filters for selected BAPI then its works fine, but the problem is if we…
0
votes
1 answer

Generate Schema XML returning headers only

I'm facing some issues when generating a schema using a RFC connection to SAP system while calling the function BAPI_COMPANYCODE_GETLIST which then creates a schema in my integration account using the content generated previously. However, after the…
0
votes
2 answers

How to pass parameters to SAP BAPI from Excel VBA

There exist a lot of descriptions on parameters for BAPIs, but they are not understandable. I post the solution here, because I myself had many difficulties to achieve a parametrized BAPI call from Excel VBA. My task was to query data from SAP…
0
votes
2 answers

How to find the required tables of a BAPI function?

I'm new to SAP and studying calling some predefined BAPI function using JAVA. I have a question. I open the function BAPI_QUOTATION_CREATEFROMDATA2 in SE37. In it, I found import and tables. The import is the parameters I need when calling this…
kk luo
  • 549
  • 1
  • 9
  • 22
0
votes
0 answers

Add new emails Customer at XD02 from CALL METHOD cmd_ei_api=>maintain_bapi

I need to add a new email address on customers in XD02 from an xls. That's all ok, but, when I CALL METHOD cmd_ei_api=>maintain_bapi this really change the email but delete all the emails on XD02, and it's not what I want, I want to add a new email…
0
votes
0 answers

How can I connect to SAP BAPI from Java using JCo?

I wanted to read the SAP BAPI using Java Code with help of Java Connector(JCo). I have "Jco JAR" and other connector JAR files. I tried using the sample code provided in this link […
0
votes
2 answers

How to update Z fields with BAPI_OUTB_DELIVERY_CHANGE parameter EXTENSION2?

How to update Z fields with BAPI_OUTB_DELIVERY_CHANGE using EXTENSION2? I tried to update some Z fields in LIKP table using the BAPI to update deliveries but after call it any changes wasn't made. Any suggestions?
EdgarMorales
  • 29
  • 1
  • 4
0
votes
1 answer

Exception raised after posting gl account data to bapi_incominginvoice_create1

I get an exception raised after posting gl account data to bapi_incominginvoice_create1. This is my gl account data: DATA : it_glacnt TYPE STANDARD TABLE OF bapi_incinv_create_gl_account, wa_glacnt TYPE bapi_incinv_create_gl_account. …
0
votes
1 answer

Data creation via BAPI is intermittently inoperative despite committing updates

I have the following case: I'm creating transports documents in a LOOP (using BAPI_CREATE). After this loop, if everything is fine, I call BAPI_TRANSACTION_COMMIT (and wait = 'X'). After that, I do another loop for the created transports to change…
Saros Begh
  • 35
  • 2
  • 9
0
votes
2 answers

WSO2 SAP Adapter : Unable to send tables data in BAPI RFC call

I am trying to make a SAP BAPI RFC call using WSO2 6.2 EI (I also tried WSO2 ESB 5.0.0 with same results). The request xml contains data for input structures and some table data. The input structures data is sent successfully and received at the SAP…
Puneet Dev
  • 21
  • 4
0
votes
1 answer

VB6 code to create DLL to fetch data fom SAP BAPI, with parameter

I am asking somebody to give VB6 code support to create a .DLL to fetch data from SAP BAPI. I don't have any idea what ActiveX control to use or where to get started. I am new in this kind of programming. Your help is greatly appreciated.
0
votes
0 answers

BAPI_ALM_ORDER_MAINTAIN not working intermittently

We are facing one issue where the work order is not getting cancelled in production environment. This is happening intermittently. We have used BAPI_ALM_ORDER_MAINTAIN for cancelling the work orders. Also, the BAPI is not returning any error…
0
votes
1 answer

SD_SCDS_CREATE cannot create with FKART

I need to create a document cost with shipment type Z003 (requested by client). Whenever I give the FM the FKART = Z003 does not work. If I remove the parameter it works but creates it with Z001 type. Is there a way to make this work?
Arvio Bjedi
  • 19
  • 1
  • 8
0
votes
1 answer

How to assign notification to work order through BAPI?

I would like to assign a notification to a work order. The following does not work: * Fill method structure ls_methods-refnumber = 1. ls_methods-method = 'SAVE'. APPEND ls_methods TO lt_methods. ls_methods-refnumber = 1. …
paolo
  • 97
  • 3
  • 10
0
votes
1 answer

Can MyBatis be used with SAP Hybris database?

Is it possible to use MyBatis on top of an SAP Hybris database? Or does this require some customization to use SAP BAPIs/Interfaces, ...?