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
2 answers

VBA to SAP // RFC function module with table as Input Parameter

I want to send data from Excel via a RFC-Connector to SAP software. For the RFC function module, I must fill a table as an input parameter. Comparable to the RFC function module STFC_DEEP_TABLE. My VBA code stops at the with statement with the…
user3213199
  • 21
  • 1
  • 2
2
votes
2 answers

RSAP package to connect to SAP through R (windows)

I'd need to be able to grab data straight from into R without going through using its GUI. I've found that the RSAP package seems to be exactly what I'm looking for. I followed the steps recommended by Piers and Alvaro Tejada Galindo (made it work…
homer3018
  • 309
  • 2
  • 15
2
votes
2 answers

OData: Unable to create working get_entity method (RFC nore ABAP)

I have created a simple table for testing purposes and want to implement the get_entity method in SEGW for this. I have an RFC that gets the two keys and returns the matching entry. SELECT SINGLE * FROM ZORDER INTO ORDERRETURN WHERE ORDERADVENCO…
stackmonkey
  • 115
  • 2
  • 11
2
votes
1 answer

SAP RFC server with Python, is it possible?

I have a service that can make SAP RFC requests to some server. Assume that I can not modify this service, but need to handle such requests and process their data. So I want to develop my own server that will process RFC requests, I prefer Python…
Aleksey
  • 147
  • 1
  • 8
2
votes
1 answer

Loading php-extension in Symfony2 - connecting to SAP

As a first question here, I'll start with something hard! I am working on a Symfony project that can link with SAP to extract data and do some reporting. I used the sapnwrfc extension from piersharding, as it is one of the only that can be compiled…
Lucas
  • 21
  • 1
2
votes
2 answers

Error when invoking IBM Mobilefirst 7.0-SAP JCo Adapter

When I invoke the SAP JCo Adapter, I'm getting an error message like this: Invocation of procedure 'invokeSAPFunction' caused java.lang.NoClassDefFoundError: com/sap/mw/jco/JCO$Exception [project DemoProject]. What can cause it? function…
2
votes
2 answers

sapnwrfc call always returns None/NULL

I know that the newest library to connect python and SAP is PyRFC, I am using Windows to develop a django app and when I try to install the pyrfc-1.9.3-py2.7-win32.egg that is what corresponds to my system, It gives me error while importing the…
Alex Lord Mordor
  • 2,890
  • 7
  • 27
  • 47
2
votes
4 answers

Bypass RFC_READ_TABLE limitations

For my C# application I need to access some data from SAP Tables based on use selections. In this context I made use of .net connector + RFC_READ_TABLE to read the data from single table and it works. After further review I found 3 issues with this…
Namit
  • 331
  • 3
  • 7
2
votes
0 answers

php SoapClient Parsing WSDL: Unknown required WSDL extension

Couple of years ago I have developed a PHP application that uses Web Services to communicate with a SAP system that my customer is using. I've already encountered this problem then, but there was a workaround - I have replaced the "ws_policy" in…
khartvin
  • 551
  • 1
  • 7
  • 20
2
votes
0 answers

Calling OLAP BAPI from C++

I am trying to use SAP OLAP BAPI for a very simple task. I want to connect to a SAP BW server, send an MDX query, get the result and disconnect. While I seem to have no problems connecting and disconnecting from the server, sending a query and…
Valeri Kim
  • 21
  • 1
2
votes
1 answer

How to get result of a RFC

I am totally new when it comes to fetching the data from a SAP RFC. I am following many links to make a connection to the SAP with the following set of codes.
user3004443
  • 133
  • 1
  • 1
  • 16
2
votes
1 answer

Exception "A condition specified dynamically has an unexpected format" with RFC_READ_TABLE

I'm using .Net Sap Connector 3 and function "RFC_READ_TABLE" to read PA0001 table data. Where condition I'm using seem stupid, but it's only to explain that my problem is the length of this expression. If I use: MANDT = '100' OR MANDT = '100' OR…
Daniele
  • 203
  • 6
  • 20
2
votes
1 answer

Read Security Audit Log static and dynamic filters using RFC

I am trying to read SAP Audit Log static and dynamic filters setting (sm19) using RFC connection. For static filters i figured out they are stored in table rsauprof: Field Key Data Element Type Offset Leng Decimals Check Table…
2
votes
0 answers

Example PHP code to read IDOC xml file from SAP outbound

I'm trying to read SAP iDoc xml file using SAPRFC Lib. The iDoc file is created on application server & its available in specific path. I have outbound Structure Name / Segment name for this iDOc. I dont know how can i read iDoc xml file? . Is…
Kalidasan
  • 277
  • 3
  • 16
2
votes
1 answer

RFC_READ_TABLE throws Rfcabapexception after querying a lot of columns

Where I work, we have two systems that use SAP, one using Delphi and another using c#. I'm implementing the c# and both have the same problem, when I query for a great amount of columns using RFC_READ_TABLE, depending on the table ( usually 60+ ),…
André Silva
  • 1,149
  • 9
  • 30