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

How to automate SAP GUI using Excel VBA?

I am trying to log on to SAP. The Excel VBA code gives me a popup window confirming my information however when I submit the form it does not take me to a new SAP GUI window. Additionally is there a way to automate all the popup boxes asking for…
1
vote
2 answers

Can some records be skipped during parallel processing?

I am using parallel processing. CALL FUNCTION 'ZABC' STARTING NEW TASK taskname DESTINATION IN GROUP srv_grp PERFORMING come_back ON END OF TASK EXPORTING ... EXCEPTIONS ... . I am calling this FM inside a loop. sometimes, my records are…
user3757558
  • 55
  • 4
  • 12
1
vote
1 answer

How to debug an asynchronous RFC - Starting new task...Performing...on end of task?

I am a beginner in SAP ABAP. I am debugging an asynchronous RFC (parallel processing). I have put a break-point in the calling portion of the RFC, an external break-point inside the RFC and an external break point in the form which is called at the…
user3757558
  • 55
  • 4
  • 12
1
vote
2 answers

Perl module sapnwrfc to retrieve data from a huge SAP table with RFC_READ_TABLE

I'd like to use the Perl module sapnwrfc to retrieve data from a big SAP table (several million entries) to export it to a CSV file. The idea was to use the function module RFC_READ_TABLE as following: # Connect to SAP system # [...] my $rd =…
flotux
  • 53
  • 1
  • 4
1
vote
1 answer

How to log into SAP silently using win32com methods?

I have a question about SAP silent logon which I implemented using win32com this way from win32com.client import Dispatch R3 = Dispatch("SAP.Functions") R3.Conn.System = 'xxx' R3.Conn.Client = '100' # other values needed to pass to…
1
vote
0 answers

How to get number of rows in SAP table by powershell using RFC?

I'm trying to reach number of rows in SAP table MARA using Powershell. I call EM_GET_NUMBER_OF_ENTRIES function. I don't know powershell well and have problem with correctly pass TABNAME value. I think the line…
Paweł M.
  • 41
  • 6
1
vote
2 answers

Is there any RFC or BAPI implementing the transaction rsscd001 for displaying change documents in SAP?

I would like to know whether there is any RFC or BAPI functions to display change documents (transaction RSSCD001) based on input query in SAP. The customer requirement is to implement a java monitor system on SAP without adding any ABAP functions…
Yi.
  • 515
  • 1
  • 7
  • 19
1
vote
2 answers

Consuming function module with SAP Netweaver RFC SDK in Bash

I'm trying to make a request to a function in a SAP RFC server hosted at 10.123.231.123 with user myuser, password mypass, system number 00, client 076, language E. The name of the function is My_Function_Nm with parameters: string Alternative,…
L M Rojas
  • 11
  • 1
1
vote
1 answer

Calling to a SAP web service from android

I need to call to a SAP web service using android to get material no using material document no. I am using ksoap2 library. Problem is I don't what exactly the NAMESPACE, SOAP_ACTION mean. I cannot get any response. METHOD_NAME =…
D.Madu
  • 507
  • 2
  • 8
  • 28
1
vote
2 answers

How do I create an SAP interface to pull some data from our webapplication?

We have a Java web application built on a relational database and we would like to create a SAP module to pull some data in from this application into SAP. What would be involved? My understanding so far is that we would need a Java Web Dynpro…
G Sharman
  • 11
  • 1
  • 2
1
vote
1 answer

SAPRFC callFunction

I'm new to SAP - PHP programming and I use SAPRFC for calling my SAP FM. I use saprfc_import - saprfc_table_init - saprfc_table_read function before, but because my work, I need to pass a lot of import parameter value and because if I use this, I…
Sandy
  • 210
  • 3
  • 16
1
vote
3 answers

Unable to install PyRFC

I would like to install pyrfc but the package doesn't seem to exist anymore: C:\>easy_install pyrfc-1.9.3-py2.7-win32.egg Searching for pyrfc-1.9.3-py2.7-win32.egg Reading https://pypi.python.org/simple/pyrfc-1.9.3-py2.7-win32.egg/ Couldn't find…
kaidentity
  • 609
  • 4
  • 10
  • 26
1
vote
1 answer

Table parameters to SAP RFC are empty

Im trying to pass a table parameter to a RFC from .net with no success. I am folowing this example. pass type table parameter 1) C# CODE: int low = 2015; int high = 2016; string sign = "I"; string option= "BT"; …
funkeeiads
  • 327
  • 2
  • 6
  • 20
1
vote
1 answer

Searching for a .NET SAP RFC tutorial for remote capable SAP modules

Is there a tutorial which explains step by step how to connect to a remote capable SAP module? Thanks :)
grady
  • 12,281
  • 28
  • 71
  • 110
1
vote
0 answers

How to install RSAP package - SAP connector for R

My requirement is to use R to analyze data from my company SAP system. I use R v.3.2.4 on my local computer and am able to log in to SAP via SAPGUI. I have found that to connect R to SAP you need RSAP package, and to install it you need SAP…
Rafal Xxx
  • 65
  • 1
  • 7