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

BAPI_PO_CREATE1 Account 475000 requires an assignment to a CO object

I've found two functions, BAPI_PO_CREATE and BAPI_PO_CREATE1. Since the CREATE1 has a more recent modification date, I assumed this would be the best one to use. As an example, I'm creating a rather simple purchase without a material. call function…
user3704258
  • 1
  • 1
  • 2
0
votes
1 answer

how to call bapi in se37 and give output of bapi to another bapi

I have 3 bapi named BAPI_SALESORDER_GETLIST,BAPI_SALESORDER_GETSTATUS and BAPI_SALESORDER_GETDETAILBOS. Here in the first bapi I have to input Customer Number and Sales Organization as input and retrieve Sales Document Number (SD_DOC) and…
Sumit Ghewade
  • 473
  • 4
  • 16
0
votes
3 answers

Access SAP R/3 data directly from VB.NET

We have an assignment to create some XML outputs from data in SAP R/3. We are using SAP .NET Connector, for doing this. The problem we are facing is that there are some fields which are not exposed by any standard BAPI. Unfortunately we cannot…
Rahul Jain
  • 195
  • 1
  • 5
  • 20
0
votes
1 answer

BAPI Function Get list of customer sort by date DESC

How to sort by any fields (date example) I want to retrieve a list of customers sorted by a specific fields, using BAPI Functions and JCo. I am able to retrieve the list of customers perhaps they are not sorted.
Jimmy Bway
  • 37
  • 7
0
votes
2 answers

BAPI_MDDATASET_CREATE_OBJECT MDX Query

I would like to make a BAPI call from Java to the BAPI BAPI_MDDATASET_CREATE_OBJECT. Therefore I want to use the following MDX Query: SELECT [0DISTR_CHAN].Members ON COLUMNS, [0MATERIAL].Members ON ROWS FROM [$/PKG/AB_C01] Because the Parameter…
LStrike
  • 1,598
  • 4
  • 26
  • 58
0
votes
3 answers

How can I get a list of SQVI queries by User ID?

Just as some background, I intend to write an Excel add-in with .NET that can execute queries from an SAP system. Thus, I'm looking for a list of function modules for SAP's SQVI transaction. I can't seem to find much information about them; the few…
Peder Rice
  • 1,764
  • 3
  • 28
  • 51
0
votes
2 answers

Get SAP BAPI Table (not Exporting) after processing - Using SAP .NET Connector 3.0

Friends. I'm currently consuming BAPI_CUSTOMER_GETCONTACTLIST. I've used any Z* one created by abappers or by me. I code in C# vb. 2010. My question about that BAPI is that I currently see 2 tables, one with the parameters and another with the…
0
votes
1 answer

How do I send the needed parameters to REFDOCRANGE using NSAPConnector?

I need to use the BAPI_BILLINGDOC_GETLIST API from SAP to get some invoices. After looking at the documentation, I only saw one parameter. But after consulting with the SAP guys, that parameter is like a collection of parameters. So using SAP .NET…
ernest
  • 1,633
  • 2
  • 30
  • 48
0
votes
1 answer

BAPI or FM equal to transaction KE24

I'm looking for BAPI or Function Module which allows me to get actual invoiced sales volumes (same as transaction KE24) from SAP ERP database.
Kuzya987
  • 13
  • 1
  • 4
0
votes
1 answer

COMMUNICATION_FAILURE during a Webdynpro BAPI call?

I have created a simple WebDynpro application that calls a BAPI. However, i am getting an error as RFC is not setup. How do i setup the RFC call? Error: The URL call http://crmehp.sat.com:8024/sap/bc/webdynpro/sap/zwd_bapi_call was terminated…
gram77
  • 361
  • 1
  • 12
  • 30
0
votes
1 answer

Unable to create Sales Order from JCO

I am using the below code to call BAPI_SALESORDER_CREATEFROMDAT2 to create the Sales Order. SAP ERP software is generating a SO number and sending as a response but when I check with va03 for the SO number which I have received, sales order is not…
Naveen Rayappa
  • 119
  • 3
  • 17
0
votes
1 answer

Error while creating sales order using JCO with BAPI_SALESORDER_CREATEFROMDAT2

I am trying to create a sales order using BAPI_SALESORDER_CREATEFROMDAT2 but I am getting error No customer master record exists for customer 99 when I tried to create a sales order for customer 99 (example) with the partner Role AG, WE, where…
Naveen Rayappa
  • 119
  • 3
  • 17
0
votes
1 answer

SAP BAPI for vendor creation and editing

Has anyone ever created a BAPI to create or edit a vendor in SAP R/3 4.6c in the background? I found two BAPIs: BAPI_VENDOR_CREATE and BAPI_VENDOR_EDIT, but both only work online (they call transactions XK01 and XK02). Basically I need a way to call…
Silvano Bini
  • 23
  • 1
  • 5
0
votes
1 answer

SAP get Sales Orders BAPISDORDER_GETDETAILEDLIST

I'm trying to call BAPISDORDER_GETDETAILEDLIST to get the sales orders form SAP into my C# application, but for some reason headerTable doesn't return any information. Any clues? This is how I do it: public DataTable getVariantConfiguratioin(String…
Tommehh
  • 872
  • 1
  • 17
  • 44
0
votes
1 answer

Is there a way to mock Mule SAP outbound endpoint?

How to mock Mule SAP outbound endpoint calling a BAPI function and expecting synchronous response back? Is there a library? I am using Mule 3.4.2
Charu Khurana
  • 4,511
  • 8
  • 47
  • 81