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

SAP table structure to proceed passing by table by XML

I've created Logic App in Azure which has some json data inside. I'd like to connect to SAP system and pass parameters to an ABAP Function Module via RFC. RFC input parameters in XML:
TyRRRax
  • 55
  • 11
0
votes
1 answer

Parameter to be passed for Field to read in SAP connector: Read SAP table(preview)

I am not able to fetch multiple columns/fields from SAP table using Read SAP table(preview) action in Logic app. I tried passing it as array but it is throwing an error: unexpected token StartArray. Path queries.fieldname.'.' If we don't pass any…
0
votes
1 answer

Unable to Import pyrfc in Python in Windows

I am trying to connect python to SAP by calling the Function Module RFC_READ_TABLE. I followed every steps in this link, including setting up the environment variables. However, when I try to Import Pyrfc, I got an error: ImportError: DLL load…
felix12
  • 11
  • 4
0
votes
1 answer

Bad Index when calling SAP RFC_READ_TABLE

I keep getting bad index error for below code.. Sub GetDocumentedGoodsMovement() Dim funcs As SAPFunctions Dim ws As Worksheet Set ws = ThisWorkbook.Worksheets("Sheet3") Set sapConn = CreateSapFunctions() If…
Havard Kleven
  • 422
  • 6
  • 19
0
votes
0 answers

How to install and support SAP NW RFC SDK on Heroku for node.js project

my project need SAP NW RFC SDK so how to install this framework on Heroku so that my API can work and extract data from a SAP system?
0
votes
1 answer

installing nwrfcsdk library for PHP

I made some RFC functions on SAP, to be able to access to them via Web. I need to install the SAP nwrfcsdk library into my server. Does anyone knows a step by step guide?
rupGo
  • 400
  • 4
  • 17
0
votes
0 answers

SAP - Send values To RFC

I have the following RFC structure:
31173
  • 21
  • 3
0
votes
0 answers

SAP UnicodeDecodeError: 'utf-8' codec can't decode bytes in position 2-3: unexpected end of data while calling RFC_READ_TABLE

I have followed all process of (https://blogs.sap.com/2020/06/09/connecting-python-with-sap-step-by-step-guide/) and able to establish the successful connection to the SAP server but at line conn.call method I am getting this: Traceback (most…
0
votes
1 answer

SAP web service issue in C#

UPDATE: I have WSDL file from SAP web service which is Imported as Connected Services in Visual Studio code, as below: //------------------------------------------------------------------------------ // // This code was…
projo9494
  • 67
  • 6
0
votes
1 answer

ERR_NAME_NOT_RESOLVED when making ajax call to sap RFM in Cordova app on Android using SAPUI5

This is my first question and I'm quite new to sap development, so I hope I can make this clear enough. I'm trying to make a call to RFC from an Android app. I created the function module on my company's SAP system and then exposed it as SOAP web…
0
votes
1 answer

CS1929 C# 'RfcParameterClass' does not contain a definition for 'Cast'

CS1929 C# 'RfcParameterClass' does not contain a definition for 'Cast' and the best extension method overload 'ParallelEnumerable.Cast(ParallelQuery)' requires a receiver of type 'ParallelQuery' Hello everyone, I am making a method which works with…
Mazounn
  • 27
  • 4
0
votes
1 answer

Why can't I create a silent SAP RFC connection

I would like to create a silent SAP.FUNCTIONS connection to SAP using Excel VBA. Whenever I set the password, the connection object gets trashed. Is this even possible? Sub Connect_to_SAP() Dim myConnection As Object Set myConnection =…
0
votes
1 answer

SAP:PARSING error while calling SAP sRFC FM

SAP Flow:
naren
  • 105
  • 2
  • 13
0
votes
0 answers

Pyrfc connection return none

I've tried the code below to connect to the sap system. But it was throwing an error complaining that nonetype cannot be used to call. def main(): config = ConfigParser() config.read('sapnwrfc.cfg') params_connection =…
Dinesh
  • 1
  • 1
0
votes
2 answers

Unique ID for every RFC call

I call some RFC module externally which calls other modules and calculates some value inside the call stack and saves it to memory, then reads this value in the end and returns to external caller. The calculation can be different each time so we…
Suncatcher
  • 10,355
  • 10
  • 52
  • 90