Questions tagged [saprfc]

The Remote Function Call (RFC) used by the SAP NetWeaver ABAP runtime environment for both inbound and outbound communication.

The Remote Function Call (RFC) used by the SAP NetWeaver ABAP runtime environment for both inbound and outbound communication.


Useful Links

Related tags

396 questions
2
votes
3 answers

Connect a third-party application (MS Excel) with SAP R/3

I'm working out a solution for communicate MS Excel (a VBA macro) with SAP. Sometimes is too hard to reach SAP support people at any company you are working for, so it is better to figure out your own solution. About that reason, I started with the…
BrOSs
  • 909
  • 4
  • 10
  • 27
2
votes
1 answer

Read-access to SAP's DB directly?

We're an SME with SAP implemented. We're trying to use the transactional data in SAP to build another system in PHP for our trucking division for graphical reports, etc. This is because we don't have in-house expertise ABAP development and any SAP…
kouton
  • 1,941
  • 2
  • 19
  • 34
1
vote
1 answer

Generate XML feeds or auto export files in SAP?

Is there any way to generate automatically the result of an SAP transaction? Let's say I want to see the production orders for one MRP controller (I have the COOIS transaction for this). Is there any way to generate an XML feed with the result of…
Andrei Ion
  • 1,777
  • 15
  • 34
  • 54
1
vote
4 answers

how to connect to SAP in Ruby on Rails

I want to retrieve information from SAP to Ruby on Rails. I found this one, but I'm confused how to install and use it, can someone explain about? It would be appreciated. Thank you very much.
piam
  • 653
  • 6
  • 13
1
vote
2 answers

XmlPullParserException when using SAP WSDL WebService

I'm desperately searching for the cause of this XmlPullParserException in KSOAP2-Android. Here is the code: String NAMESPACE = "urn:sap-com:document:sap:soap:functions:mc-style"; String METHOD_NAME = "ZFanTestWs"; …
user1152221
  • 21
  • 1
  • 6
1
vote
1 answer

How to pass RFC destination to BAPI from noderfc module?

Below is ABAP program which uses lv_destination which is RFC Target system for functional module BAPI_COMPANYCODE_GETDETAIL. DATA lv_destination TYPE char10. CASE sy-sysid+2(1). WHEN 'P'. lv_destination = 'K0P_040'. WHEN OTHERS. …
1
vote
1 answer

SAP RFC libraries not working with IIS server

I am using SAP Connector Core Library to fetch SAP data using RFC, though my changes are working perfectly with the Kestrel server, but it is not working with IIS. I am using the following libraries which I have downloaded from SAP website. and I…
Sumit Chourasia
  • 2,394
  • 7
  • 30
  • 57
1
vote
1 answer

Can I use NW SDK client 7.5 for accessing NW 7.4 SAP server?

I have SAP NETWEAVER 7.4 installed on my SAP. Can I use 7.5 client libraries to connect to the server? I have tried to connect to the server using SapNwRfc library, but got an exception "RFC_LOGON_FAILURE with message: 00024error during logon". Any…
kidbabic
  • 109
  • 2
  • 11
1
vote
0 answers

Python 3.11.1. Getting error Failed to establish a new connection: [Errno -5] No address associated with hostname

I am using zeep 4.2.1 library to consume web services (RFC) from SAP. The API's are working in local server and getting the necessary response. However the API is not working in development environment (docker container). Getting error message…
SidJadhav
  • 11
  • 1
1
vote
1 answer

Working example for RFC_CALL_TRANSACTION_USING to print to spool using VBA

I'm trying to use RFC_CALL_TRANSACTION_USING to get the SAP ERP software run the transaction code FTE_BSM and print the result of the report to spool. The transaction I am trying to use is FTE_BSM, but in the end I want to be able to use it with any…
Tyro
  • 45
  • 1
  • 8
1
vote
3 answers

Delphi SAP SAPFunctions DELIMITER suddenly ignored?

I have an old Delphi application that uses the SAP ActiveX SAPFunctions var TmpSAPFunctions:…
Tom
  • 3,587
  • 9
  • 69
  • 124
1
vote
1 answer

Is it possible to return qRFC (SMQ2 transaction) errors to the caller?

In my landscape, the ERP system is creating deliveries in EWM via qRFC. The setup is standard and works via a distribution model in the ERP BD64 transaction. A BAPI is called that creates a delivery replica in EWM. Sometimes the ERP deliveries are…
RaTiO
  • 979
  • 2
  • 17
  • 33
1
vote
1 answer

Passing multiple values to ABAP TEXT FILTER with VBA

I've created a macro to read data from SAP Table using the BAPI BBP_RFC_READ_TABLE. It successfully compiles and runs for a single parameter if I use the FILTER VIEW: objOptTab(objOptTab.RowCount, "TEXT") = "EBELN EQ '12345'" However, the goal of…
Havard Kleven
  • 422
  • 6
  • 19
1
vote
1 answer

SAP integration with Azure Logic Apps - Cache / Metadata problem?

I'm trying to automatize process using Logic Apps -> On-premises data gateway -> SAP system. I think I have a problem with metadata or cache. Scenario: I stopped developing solution on Wednesday about 23 (it didn't work), I didn't change anything…
TyRRRax
  • 55
  • 11
1
vote
1 answer

How to check NOT NULL when calling RFC_READ_TABLE?

I am trying to get data by using python connect SAP system. Here I have question about how to filter one specific field IS NOT EMPTY? For example below, how to filter the field QNAME is not empty. In SAP, we can easily set. Thanks a lot! table =…
felix12
  • 11
  • 4