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

Best practice instead of hard-coded RFC destinations?

is there a good way to use not hardcoded RFC destinations? Right now our solution is to check which system is used and then assign the destination to a variable IF cl_role EQ 'P'. p_dest = 'ESW300'. ELSE. p_dest = 'EAW300'. …
Jen Mer
  • 101
  • 1
  • 3
  • 10
4
votes
1 answer

integration between Python 3.6 and SAP

I am very new to python, I got a task to pull data into python from SAP system. I am following the below link for connections, but it's not working in my landscape. Also, my question is can I connect python 3.6 clients to SAP…
user9287179
4
votes
1 answer

Possible SOAP version mismatch while consuming SAP web-service

My requirement is connect C# to SAP through SAP Web service which created via SOAMANAGER. I have followed this blog, but when I executing the code NetworkCredential cred = new NetworkCredential(); cred.UserName = "XXXXX"; …
Archana Palani
  • 247
  • 1
  • 6
  • 23
4
votes
2 answers

Python 3.6 pyrfc ImportError

I have VM win7 x64, Python 3.6 and I'm trying to install pyrfc SAP connector. I have installed NWRFC library, set it in PATH variable, installed egg pyrfc-1.9.5-py3.5 with easy_install, and installed Visual c++ redistributable 2015 (x64) 14. But…
Yuliya
  • 163
  • 1
  • 2
  • 6
4
votes
2 answers

Why does SAP JCo raise an error "Field ... not a member of ..." even though the field exists?

I want to send data to SAP RFC table from my Servlet Application. I am trying to do this below way. JCO.Function function = null; Connection conn = new Connection(); JCO.Client mConnection = conn.open(); JCO.Repository…
Chirag Savsani
  • 6,020
  • 4
  • 38
  • 74
4
votes
4 answers

BizTalk WCF Timeout Issue

I have a orchestration in BizTalk which is collect to data via web services from SAP. My process is as below. We have a SOAP service on receive port and when we get an request from SOAP we transform it to SAP RFC File format and send it to SAP.…
ibrahimsen
  • 173
  • 2
  • 9
4
votes
3 answers

ERPConnect (Theobald Software): RFC authorization

I want to call a remote SAP function via ERPConnect (Theobald Software): R3Connection con = new R3Connection("host", 1, "user", "pw", "EN", "700"); con.Open(false); RFCFunction func = con.CreateFunction("FUNCTION_NAME"); Here I get the following…
Elmex
  • 3,331
  • 7
  • 40
  • 64
4
votes
1 answer

Retrieve texts from a sales order by using RFC_READ_TEXT

I'm using SAP .NET Connector 3.0 to read data from SAP(R/3). I need to get some header texts from sales orders: A lot of information I found regarding READ_TEXT function which can be used for this purpose. Here you can find some sample how to do it…
mbigun
  • 1,304
  • 4
  • 19
  • 46
3
votes
2 answers

Parameter is not type-compatible with formal parameter when method is called from FM

A static public class method, zcl_abc=>dosomething, has an importing parameter it_lines type TLINE_T optional And there is a FM called zfm_dosame. It has a parameter TABLES IT_LINES TYPE TLINE_T OPTIONAL zfm_dosame calls…
Dustin Sun
  • 5,292
  • 9
  • 49
  • 87
3
votes
1 answer

Read contents of structure via RFC in SAP

Is it possible to read contents of SAP structures via RFCs from the outside? I know that RFC_READ_TABLE can be used to read table data, but is there something similar for structures? Or are structures only type definitions and don't contain any…
Timo Westkämper
  • 21,824
  • 5
  • 78
  • 111
3
votes
1 answer

Call BAPI RFCs transactionally via JCo

First of all I'm not a SAP/BAPI developer. We have a java application that is calling some BAPIs over RFCs using JCo library. The question is whether there is any way to call several of those in a single transaction. I believe the correct way to do…
archie_by
  • 1,623
  • 2
  • 11
  • 10
3
votes
1 answer

SAP Connection CPIC hostname unknown

I'm creating a connection between SAP system and a web server, this connection is in PHP as well as the libraries for it are for PHP purposes. I followed every step of this page. After I got the libraries into my server (nwrfcskd and sapnwrfc) I get…
rupGo
  • 400
  • 4
  • 17
3
votes
1 answer

FAGL_ACCOUNT_ITEMS_GL_API doesn't return any data by I_POSTING_DATES range

In SE37, I am trying to execute FAGL_ACCOUNT_ITEMS_GL_API function module but in import parameters area I_POSTING_DATE is not working and output brings all records to BUDAT column although I insert 01.05.2020 - 30.05.2020. Complete input is: SIGN…
sinan
  • 31
  • 3
3
votes
1 answer

SAP JCo SAML authentication

I need to support SAML authentication in one of my applications connecting to SAP system using SAP JCo Library and couldn't find any related articles demonstrating the capability of JCo. Does anyone have any experience with that?
3
votes
1 answer

RFC error "Element BAPIRETURN1 of container metadata ... is unknown"

In my C# program which uses the SAP .NET connector, I want to call the RFC function "BAPI_GET_PAYROLL_RESULT_LIST" and read the result. I looked at the function with SE37. There I found out that the export parameter should be BAPIRETURN1, which is a…
JamesnxD
  • 153
  • 1
  • 14
1
2
3
26 27