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

Filling BAPI import table parameter in EXCEL using VBA

I have a query for me which requires to clear. I am using Excel 2003. The sheet contains 12 columns. I need to do export data from Excel to SAP software. Before exporting I need to check if the record is exist or not, if exist then delete and…
user1049518
  • 291
  • 7
  • 13
  • 25
0
votes
2 answers

Creating Purchase Info Record in SAP

I am trying to create a Purchase Info Record (ME11) in SAP using the below JCo code: It executes without fail and throws no error, but i am not able to get the newly created info record in SAP. In ME13 it says info record not found. Can i know what…
Raj
  • 255
  • 2
  • 6
  • 17
0
votes
2 answers

FM BAPI_PO_CHANGE how to add item?

I try to add items to existing PO. And I use BAPI_PO_CHANGE. Maybe somebody have WORKING example how to ADD item to PO? I ALREADY CAN UPDATE EXISTING items in PO. I need to add some NEW. And yes, we talking about AFS system. :((( Thanks in…
Alexander_P
  • 88
  • 3
  • 6
0
votes
0 answers

Is there any alternative BAPI/FM for BAPI_SALESORDER_SIMULATE to get the pricing data when we provide materials for salesorder create?

Say we create sales order and provide a Material and it will give Pricing details.... Now requirement is we can use BAPI_SALESORDER_SIMULATE to provide inputs and it will return pricing data but thus takes lot of time when more materials are…
user3553227
  • 1
  • 1
  • 1
0
votes
1 answer

How to upload PM order confirmation : actual data using BAPI in SAP

How to upload PM order confirmation actual data and post goods movement using BAPI in SAP ? I tried to use a lot of BAPI but it didn't work like this: MAP2E_RIWOL_TO_ALM_ORDER_OLIST , BAPI_ALM_ORDER_MAINTAIN , BAPI_PRODORDCONF_GET_TT_PROP These are…
A-G
  • 1
  • 1
0
votes
0 answers

Some bapi's don't require bapi_transaction_commit

Some bapi's don't require bapi_transaction_commit Some bapi's don't require bapi_transaction_commit
Manoj
  • 1
  • 1
0
votes
0 answers

Unable to get a table data from SAP

This is a c# method that invokes SAP BAPI. public Message ReleaseBapi(string orderNumber) { Message msg = new Message(); DataTable dt = new DataTable(); _ecc = ERPRfcDestination.InitialiseDestination(); try …
0
votes
0 answers

Pyrfc: MDX Queries Returning Fewer Fields than expected

Describe the bug I am using PyRFC to pull data from SAP BW InfoCubes using BAPI_MDDATASET_CREATE_OBJECT, BAPI_MDDATASET_SELECT_DATA, and BAPI_MDDATASET_GET_FLAT_DATA. I pass in my MDX query, and the results are close to what I see in MDXTEST, but a…
C. Holt
  • 101
  • 1
0
votes
0 answers

How to get PO with each SIZE/EAN breakdown on ITEM level?

QUESTION I'm using VBA for retrieving data from SAP via BAPI. What RFC should I use, and how, to retrieve PO details at the "each SIZE for each ITEM" level. EXAMPLE In this screenshot you see that the PO includes 3 ITEMs. Each of these ITEMs…
DN8
  • 1
  • 2
0
votes
1 answer

Names of RFC parameters are unique?

I am working on an interface for communicating with SAP RFC functions. I have some questions regarding parameter hierarchy and uniqueness of parameter and table naming to which I can't seem to find an answer anywhere online. Are the deep…
0
votes
1 answer

How to get employee transport and accommodation allowance?

I am working on one of our HR system which have integration with SAP, I am using SAP Connector for Microsoft .NET 3.0 and it's working fine for getting basic employee data using BAPI_EMPLOYEE_GETDATA function module. I wants to know is there any…
0
votes
1 answer

Behaviour of RETURN parameter of BAPI_GOODSMVT_CREATE?

I am using bapi_goodsmvt_create to post in migo transaction code. The parameter return is not returning any value when the postings are successful. Is return supposed to return only error messages? Or both error and success messages?
Saronee Das
  • 1
  • 1
  • 3
0
votes
1 answer

BAPI or FM for Promise to pay creation?

I'm working with Promises to pay in UDM_SUPERVISOR transaction and I need to upload Promise to pay data using BAPI/FM from an excel file. There is a data migration template which will include all the required fields for the creation of a Customer…
Yash
  • 11
0
votes
1 answer

Any workflow assigned to 531 and 261 movement types?

Follow-up question of BAPI_GOODSMVT_CREATE in parallel mode causes "plant data of the material XXX is locked" error. As I wrote in above question - I'm currently improving program by using parallelism to split one job to multiple job, which are…
0
votes
1 answer

BAPI_GOODSMVT_CREATE in parallel mode causes "plant data of the material XXX is locked" error

Currently, We're developing mass GI posting by parallelism, to reduce work time dramatically, because we have to post GI item about 300k+ at one day. Problem I know there is a restraint about BAPI_GOODSMVT_CREATE - You can't post same material…