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 can SAP tRFC server tell client through JCo that function has been carried out?

SAPs "Transactional RFC Technical Description" document (release 4.0, see http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/ee6bca90-0201-0010-5792-d9693e2eac83?QuickLink=index&overridelayout=true ) says in section Transactional RFC…
1
vote
1 answer

How to specify a table structure for BAPI call?

How can I define a Table structure to call a BAPI? I would like call "BAPI_PRODORD_GET_LIST" connection = Connection(user='user', passwd='password', ashost='IP', sysnr='00', client='100') function_name = "BAPI_PRODORD_GET_LIST" func_desc =…
ente
  • 31
  • 2
1
vote
2 answers

SAP .NET Connector 3.0: Sales Order changes

I'm using SAP .NET Connector 3.0 to build RFC client to let the users in easiest way to communicate with SAP ERP. Here I would like to provide short samples of what is stopping me to move forward with development. Currently my purpose is to change…
mbigun
  • 1,304
  • 4
  • 19
  • 46
1
vote
2 answers

Failed to configure SAPRFC + PHP5

Good day to all, as my title says "I have problems with congurar SAPRFC" use Linux Mint Petra + PHP5. Keep this manual, but when running "make" and "make install" me appears: /bin/bash /usr/src/saprfc-1.4.1/libtool --mode=compile cc -I.…
user3680708
  • 117
  • 2
  • 9
1
vote
1 answer

SAP Java Connector: Is it possible to cut field values of extracted table?

I am extracting some SAP tables using the SAP Java Connector (via RFC_READ_TABLE or similar). Is it possible to pass some kind of maxlength for some fields of a table, e.g. if we have a field with size 3750 (like PROFS in table USH04) but I only…
mfrerichs
  • 23
  • 1
  • 7
1
vote
1 answer

SAP BAPI get all Functional Locations

I am trying to pull a list of every Functional Location out of SAP ERP using BAPI. When I run this code it returns with an empty table. I don't have very much experience with BAPI and I am trying to teach myself. Can someone please help with what…
cbkrunch
  • 45
  • 8
1
vote
2 answers

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 However, is there something we are missing that would…
Esti
  • 3,677
  • 8
  • 35
  • 57
1
vote
2 answers

Tables using LIKE may only reference flat structures

I wanna have a table parameter in a RFC function module of type CGPL_TEXT1, which uses the domain type TEXT40, which is a char 40. I tried to create it: IT_PARTS_DESCRIPTION LIKE CGPL_TEXT1 But I keep getting this error tables using like may…
Niklas
  • 23,674
  • 33
  • 131
  • 170
1
vote
2 answers

Select inner join with RFC

Is there any chance to execute an inner join select over RFC on some(in this case 2) database tables? Basically, I wanna translate this command into something that works with RFC. SELECT DISTINCT t2~field FROM table1 AS t1 INNER JOIN table2…
Niklas
  • 23,674
  • 33
  • 131
  • 170
1
vote
2 answers

data type / data element for RFC destination

Is there any default created data type / element for destination? I know that I can use string, but string is very wide open. Is there any limit in destinations name? DATA: dest type ???. CALL FUNCTION 'NAME' DESTINATION dest.
Niklas
  • 23,674
  • 33
  • 131
  • 170
1
vote
5 answers

What minimum permissions/access rights does a SAP user need to be able to make RFC calls using JCo?

I'm trying to call a SAP function RFC_SYSTEM_INFO from Java application. I am using JCo 3.0 for that. I'm using the example code provided from JCo documentation. I get an exception Caused by: RfcException: [IA1|CZVBIIN101] message: No RFC…
Zhenya
  • 6,020
  • 6
  • 34
  • 42
1
vote
0 answers

Reading and changing fields in SAP with RFC via VB .NET

I'm currently trying to figure out the basics of remote function calls via vb .NET. I feel pretty helpless however, because their just isn't any useful documentation for the most simple of tasks. What I'm trying to do atm is starting the transaction…
user2696330
  • 143
  • 11
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
1
vote
1 answer

unresolved externals SAP NetWeaver RFC SDK 7.1 client example Visual Studio 2010

I'm trying to compile the companyClient.c in a visual studio 2010 project, but even if I link properly to the library sapnwrfc.lib I still get several unresolved externals: Error 1 error LNK2019: unresolved external symbol _RfcCloseConnection@8…
1
vote
1 answer

How to transfer IRfcTable details to SQL Server table?

I am using an IRfcFunction in order to get certain values from SAP to my .net application. These details are in a IRfcTable structure. I would like to know how to move these contents that are in the IRfcTable to SQL Server table. Thank you.
Kasanova
  • 593
  • 4
  • 12
  • 27