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

Usage of the "SAP Function OCX"

Does it make sense to use the "SAP Function Control" (wdtlog.ocx in connection with wdtlog.ocx and wdtaocx.ocx) to access (via the Interop-Assemblys SAPFunctionsOCX.dll, SAPLogonCtrl.dll and SAPTableFactoryCtrl.dll) to SAP with RFCs instead of the…
Elmex
  • 3,331
  • 7
  • 40
  • 64
3
votes
2 answers

Usage of Biztalk SAP Adapter without Biztalk Server to connect .NET and SAP

Is it possible to use the Biztalk adapter pack whithout a Biztalk installation (Biztalk license is available)? I want to use the Biztalk Adapter for SAP RFC calls within a .NET Application (as a replacement of the SAP Connector for .NET, which is…
Kottan
  • 4,944
  • 9
  • 41
  • 67
3
votes
1 answer

Starting new thread without using a Function Module call

I know that one can start a new thread by CALL FUNCTION 'ZTEST_RFC' STARTING NEW TASK 'ABC'. but as I am writing a web application in ABAP, it feels so wrong to have my OO handler parse an http call, get the request data, then call an Old Skool…
tomdemuyt
  • 4,572
  • 2
  • 31
  • 60
3
votes
2 answers

Is there an advantage of using direct RFC calls instead of the BAPI?

I'm not very familiar with working with SAP but my current task is to utilize RFC calls for creating purchase orders in SAP software via a C# project I'm working on. Is there any advantage to using direct RFC calls instead of the BAPI? I asked my…
Ento
  • 43
  • 1
  • 6
3
votes
0 answers

saprfc extension for php is not working

I am a SAP-ABAP begginer and I need to fetch the data from SAP through PHP for my company need. I have installe: WAMP Version 2.2 Apache Version : 2.2.22 PHP Version : 5.3.13 SAPRFC Version is 1.4.1 Added php_saprfc_530.dll to the php ext…
2
votes
1 answer

Is it possible to install pyRFC onto a Databricks Spark cluster?

There is a Py-pi for pyRFC, but like all other C-python libraries, it has a lot of dependencies, and requires the setting of environment variables, etc. Is it possible to install a c-python library like pyRFC onto a Databricks cluster? If so, how…
2
votes
3 answers

Universal function module to retrieve SAP table data

What is the best way to access table data from a SAP system? I tried it with it RFC_READ_TABLE, but this RFC returns the data in concatenated form within a single column and has a size restriction for row data. Is there a better way to access SAP…
Timo Westkämper
  • 21,824
  • 5
  • 78
  • 111
2
votes
0 answers

Wildcards/patterns with .Tables("PARA") when executing RFC INST_EXECUTE_REPORT

I'm using Excel and VBA to get SAP to download data from SAP through RFC using INST_EXECUTE_REPORT. It works like a charm when I have specific input parameters. I just build up .Tables("PARA") with the screen name of the parameter and the desired…
Tyro
  • 45
  • 1
  • 8
2
votes
2 answers

.Net SAP Transaction restart from client

I'm using .Net NCo 3.0 library and I tried one example of tRFC wherein I see the transaction ID is created and associated with the RFC function and then invoked, after a successful transaction, the transaction ID is deleted, here we maintain the…
Mysterious288
  • 365
  • 5
  • 24
2
votes
1 answer

Why are some RFCs restricted by max. number of GUI sessions?

Calling the function ME_INFORECORD_MAINTAIN_MULTI multiple times via RFC fails with the short dump "Maximum number of GUI sessions reached", but other functions don't seem to be subjected to the sessions limit when called in the same way. The number…
Cutter
  • 1,673
  • 7
  • 27
  • 43
2
votes
1 answer

How to configure SAP SNC using Docker

I need to containerize a service that talks to a SAP system. The service is written using Spring Boot. I have a document that performs steps manually on Linux Machine which will help to connect to the SAP system. The steps it follows are: Download…
Sweta Sharma
  • 2,404
  • 4
  • 21
  • 36
2
votes
2 answers

How to display a pdf from an SAP RFC in C#

In my C# application I am making a call to an SAP RFC, which returns the binary format of a pdf (the associated type in SAP is HRB2A_TAB_RAW255). However, when I read the returned data in C#, it is a string data type -…
Nick
  • 23
  • 3
2
votes
2 answers

Getting FAGLL03H report using pyrfc

This is a mixed question between SAP and the usage of the pyrfc module. I need to use the FAGLL03H transaction code (tcode) to replicate a G/L report into a database on a daily basis. Now, the thing is that FAGLL03H is not a table per se, but a G/L…
Juan David
  • 2,676
  • 4
  • 32
  • 42
2
votes
1 answer

SAPNWRFC can't convert string to RFCTYPE_NUM

I develop a PHP 7.0 program and use sapnwrfc extension to connect to a SAP system. The program executes the function ZCLSC_SEARCH_OBJECTS remotely on the SAP system, but the method invoke returns this error: ATINN of type RFCTYPE_NUM…
2
votes
1 answer

Accessing stack memory of RFC-called system

When a program is running in SAP ECC, the "system stack" stores all global variable irrespective of what modules/programs are called in that single session. When it's calling RFC-enabled Function Modules (FM), a new system stack is created in the…