The Remote Function Call (RFC) used by the SAP NetWeaver ABAP runtime environment for both inbound and outbound communication.
6
votes
1answer
1k views
ERPConnect for SAP R/3 RFCs - is it any good?
We are considering whether we should propose using Theobald Software's ERPConnector tool to give our .NET code a way of talking to SAP RFC. Has anyone got any experience using these together?
3
votes
2answers
79 views
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 via a c# project I'm working on.
Is there any advantage to using direct Rfc ...
3
votes
3answers
1k views
RFC for remote call transaction in SAP
How do I call the SAP report (for example RSPARAM) with help JCo?
What RFC may be used to remotely call SA38 transaction with RSPARAM (e.t.c.) as parameter and then return results for later work ?
3
votes
2answers
672 views
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 = ...
3
votes
1answer
4k views
How can I connect to SAP from C# through the SAP NetWeaver RFC Library (sapnwrfc.dll)?
Our software is written in C# and needs to connect to SAP. As some of our customers use older versions of SAP, and others don't have SAP PI, we can't connect through webservices.
I tried to connect ...
3
votes
4answers
5k views
SAP .NET Connector: System exception thrown while marshaling .NET type
My app sends lots and lots of data to SAP. To di this, it builds up an SAP table object and sends it over. I get this error somewhat regularly, but not reliably:
System exception thrown while ...
2
votes
2answers
1k views
Future of the SAP RFC SDK
Is the SAP RFC SDK (wdtfuncs.ocx, wdtlog.ocx respectively Interop.SAPFunctionsOCX.dll, Interop.SAPLogonCtrl.dll) an acceptable / recommended way to connect (Microsoft) applications via RFCs with SAP ? ...
2
votes
1answer
3k views
Why I got DATA_BUFFER_EXCEED when calling RFC_READ_TABLE to CDPOS in java
The requirement in my java/groovy program is like this: Users are allowed to input table names and table fields as a query input parameters and expect to get some the query result from SAP.
From the ...
2
votes
2answers
2k views
How to Execute SAP RFC using SOAP?
I have a requirement where I need to run an RFC from an ETL (Datastage) job. It can be done by executing a unix command also, of course (the Datastage server is unix). I don't think they have the SAP ...
2
votes
2answers
764 views
SAP - rfc_read_table concatenates columns in row results
The following query concatenates the columns results for each row. I need to seperate columns with either some kind of delimiter or unique row[i] results.
Query
"exec rfc_read_table ...
1
vote
1answer
390 views
SAP Connection ERROR
im creating a connection between sap and a web server, this connection is in php aswell as the libraries for it are for php purposes.
i followed every step of this page
after i got the libraries ...
1
vote
2answers
435 views
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 based on input query in SAP. The customer requirement is to implement a java monitor system on SAP without ...
1
vote
2answers
4k views
How can I use sftp with SAP?
Currently we use FTP, but there is a requirement to use SFTP. According to our Basis guys SFTP will not work. We have a couple of alternatives:
Use PI
Use a Unix script to move the files
...
1
vote
1answer
265 views
RFC error message “The current application triggered a termination with a short dump”
SAP is backend and .Net is frontend of my application. I am getting an exception that says "the current application triggered a termination with a short dump" while executing a RFC call. I used ...
1
vote
2answers
305 views
SAP, how to checkIn document files?
I want to create a new document in SAP. Additional I have some files which belongs to this document, these files I want to upload to the SAP knwolegde base.
I'm using BAPI_DOCUMENT_CREATE2 to create ...