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
1 answer

How to limit the number of records returned by BAPI call using JCO3

When retrieving information from SAP system, in certain cases, we get results in hundreds or thousands. In such cases, if we want to implement a kind of pagination mechanism, what are the options available in JCO3. First of all, how to restrict the…
Gana
  • 482
  • 3
  • 11
  • 32
0
votes
1 answer

SUP : Connect Android app SAP-SUP through relay server

I am a mobile developer and now im working on an Android app that connects to SAP backend. i need to create MBOs from BAPIs and read data from those BAPIs I managed to create the MBOs from BAPI_FLIGHT_GETLIST BAPI i generated the code as Android…
Rana Osama
  • 1,313
  • 2
  • 17
  • 27
0
votes
1 answer

SAP COM VB6 VB.NET Difference in behavior

I am connecting to SAP via COM, using ActiveX controls dragged into the Form. In VB6 I write: Private Sub Form_Terminate() SAPBAPIControl.Connection.Logoff End Sub Private Sub SAPLogonControl_Click() Set SAPBAPIControl.Connection =…
Johannes Maria Frank
  • 2,747
  • 1
  • 29
  • 38
0
votes
2 answers

How to enable a SAP FM or BAPI for XML-RPC or SOAP access

I just created a Function Module, made it Remote-Enabled, and now I want to invoke it via XML-RPC over HTTP. I'm on SAP NetWeaver App Server ABAP v7. What other configuration is required in order to expose my FM over XML-RPC? How do I configure the…
DTs
  • 1,196
  • 1
  • 11
  • 28
-1
votes
1 answer

Using BAPI_OBJCL_DELETE sometimes delete equipment class, sometimes not

I am trying to delete an equipment class using BAPI_OBJCL_DELETE but when running in debug mode, the class gets deleted but it doesn't get deleted in normal mode. I am using below program to delete it. I have tried COMMIT WORK and…
-1
votes
1 answer

getNumRows() returns 0 when running SAP BAPI using JCo SAP

I am writing Java Code to get data from SAP BAPI using Java Connector (JCo). This is my first time to make a connection to SAP using JCo. I was able to get the Tables available in the Data Source and also get one particular Table and Number of…
-1
votes
1 answer

how to set PIKMG in delivery to 0?

In a return order flow I need to: post reverse goods issue ==> OK set PIKMG to 0 ==> ko modify LFIMG and post again the GI ==> OK I can't find a way to do the second bullet, I tried with BAPI_OUTB_DELIVERY_CHANGE but without success. Can someone…
rikymiami
  • 71
  • 2
  • 4
  • 14
-1
votes
1 answer

SAP integration patterns RFC BAPI + outbound IDOC

I am trying to understand all of the SAP integration patterns (and anti-patterns in that matter). What I am sure that are the patterns: sync BAPI async BAPI IDOCs (inbound + outbound; or just one direction) When doing actual integration with SAP,…
Trick
  • 3,779
  • 12
  • 49
  • 76
-1
votes
1 answer

SAP: Can´t create and activate a costcenter via BAPI_COSTCENTER_CREATEMULTIPLE

I am facing a problem to create a costcenter via BAPI. I hope someone has a solution for me. After filling the table COSTCENTERLIST with obligatory data and commit the test of the BAPI there is no new inactive costcenter db record in my Costcenters…
LStrike
  • 1,598
  • 4
  • 26
  • 58
-1
votes
1 answer

06215 sap error bapi_po_create1 net price as '0.14'?

In bapi_po_create1 I can not send net price as 0.14. when it is greater than 1(for instance 14.98) it returns sales order number back.
EkremG
  • 131
  • 1
  • 13
-2
votes
4 answers

BAPI_ACTTYPE_CHANGEMULTIPLE returns empty and doesn't change anything in the Database

I need some help to get my RFC call working. I've got my connection working properly and BAPI_ACTIVITYTYPE_GETLIST and BAPI_ACTIVITYTYPE_GETDETAIL are also working. But the following piece of code is giving me an empty RETURN table. There are also…
-3
votes
2 answers

How to reset a password via BAPI in a CUA environment?

I am currently developing a C# application with SAP NCo 3. I am wondering if I could invoke BAPI into CUA and this BAPI would pass details to child system. This field is available through Test Function Module (field "RFC target sys"), but it is…
scetu
  • 47
  • 9
-4
votes
1 answer

Inserts, updates and deletes to SAP tables

Would someone post me an example C# code to update a table record in SAP Subsystem using BAPIs? I was able to select record from a SAP table using the example explained in the below link Step by step tutorial to use SAP. net Connector with VS…
shams
  • 7
  • 1
1 2 3
13
14