Questions tagged [erpconnect]

ERPConnect is a library to connect to SAP.

Product information from the company (Theobald Software):

ERPConnect offers a .NET API for all kinds of SAP objects to enable easy interface implementation and design for developers (e.g. function modules, SAP queries, IDocs, RFC server, BW Cubes etc.).

6 questions
9
votes
1 answer

Run User Compare with ERPConnect (Theobald)

I would like to know if anyone knows if it is possible to run a SAP User Compare from c# using ERPConnect 4 from Theobald? If so, how? I can open a connection to SAP and run functions - just don't know how to do User Compare. EDIT: It seems like we…
Cameron Castillo
  • 2,712
  • 10
  • 47
  • 77
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
2
votes
1 answer

ERPTable columns being truncated

I've generated some proxy ERPTables to query SAP tables. The columns are generated as type string. Since ERPConnect Linq doesn't seem to support join, like or basically any query in the where clause more complex than equality comparisons, I had to…
lurscher
  • 25,930
  • 29
  • 122
  • 185
1
vote
2 answers

ERPConnect SAP Table Join and filter (Query) without creating a SAP Query

I know very little about SAP and I have been asked to extract some data from it using ERPConnect (and if required LINQ to SAP) I can see that it is possible to create BAPIs and Queries in SAP but these need to be pre-defined within SAP and then…
Pricey
  • 5,799
  • 12
  • 60
  • 84
0
votes
2 answers

Random error when connecting to SAP with ERPConnect

We use ERPConnect in our ASP.NET application but sometimes we get some error messages when users try to connect to SAP through our application. CPIC-CALL: 'CMRCV : rc=19 LOCATION SAP-Gateway on host SERVERNAME / sapgw10 ERROR Conversation 53230591…
thomasvdb
  • 739
  • 1
  • 11
  • 32
0
votes
1 answer

How to authenticate when receiving idocs with ERPConnect (Theobald)?

I'm a little lost. I followed the documentation of ERPConnect (Theobald) to setup an rfc server: static void Main(string[] args) { // define server object and start RFCServer s = new RFCServer(); s.Logging = true; s.GatewayHost =…
Sascha
  • 1,210
  • 1
  • 17
  • 33