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
0 answers

Sybase SUP,(2.1.3) using SAP RFC/BAPI, how to know when call results are available?

Scenario: I am calling a SAP RFC from my MBO (as an OTHER). The call makes updates to the database that I need to get back onto my device. The call works correctly, eventually. What mechanism can I use to let me know when the results are…
Paul
  • 316
  • 2
  • 12
1
vote
2 answers

Easiest way to interface between a web app and SAP

I've spent some time researching how to communicate with SAP from a PHP web application, but the documentation is more than spare. The ways I found are: Creating IDoc files, some sort of proprietary plain-text format. But how do I stick them in SAP…
Steffen
  • 2,235
  • 13
  • 19
1
vote
1 answer

SAP RFC CALL FROM OLE Object

I am making a Sap interface I am using COM / OLE objects I do not know about SAP but the person who I am working with has a little experience. He says that import answer has a lot of information and I should get it from my code but when I check…
1
vote
1 answer

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 SAP.Net connector for building dll's. GetConnection…
Justinonday
  • 137
  • 3
  • 15
1
vote
1 answer

Sending a request to SOAP WSDL

I want to create a RFC with from a SAP's function. I generated a SAP data source from this function. When I go to this address : http://xxx.xxx.com:8000/sap/bc/soap/wsdl11?sap-client=200&services=ZTEST i have this page :
Dougui
  • 7,142
  • 7
  • 52
  • 87
1
vote
1 answer

SAP RFC call returns "Error 0" in RETURN parameter from vb

Hi everybody and thanks in advance. I'm trying to call a SAP BAPI using RFC from VB but I'm having some problem to get the result of the call. The BAPI BAPI_GL_ACC_EXISTENCECHECK (from General Ledger Account module) has COMPANYCODE, GLACCT and…
mrg1968
  • 11
  • 1
  • 5
1
vote
2 answers

Unable to call SAP BAPI function from VBA

I'm trying to call SAP functions from an Excel macro, VBA. I can do the connection, but whenever the code reaches the line that calls a function, I get the error message Run-time error '61704': Internal application error. My code is the…
caposaric
  • 11
  • 1
  • 2
1
vote
2 answers

SAP ERP, how to checkIn document files?

I want to create a new document in SAP ERP. Additional I have some files which belongs to this document, these files I want to upload to the SAP knowledge base. I'm using BAPI_DOCUMENT_CREATE2 to create or BAPI_DOCUMENT_CHECKIN2 to add files to a…
thomasW
  • 21
  • 2
  • 5
1
vote
1 answer

Connection Establishment between Android and SAP SOAP Webservices

I want connect SAP SOAP web-services from android Application i am using the following code But i got the exception.When i am debugging the code the call method id not executed.I am using the username and password Appending in URL. package…
0
votes
2 answers

BizTalk SAP Adapter Workaround for ITAB2 Error

Per MSDN, The BizTalk Adapter does not support has several limitations, including a lack of support for ITAB II table types (hierarchical tables): The SAP adapter does not support RFCs with complex parameter types, including ITAB II (hierarchical)…
Peder Rice
  • 1,764
  • 3
  • 28
  • 51
0
votes
0 answers

In ADF, can I filter a table using the SAP Table Connector (RFC Table Options) by subtracting days from the current date without dynamic content?

I want to filter a SAP table by today's date minus a number of days using the RFC Table Options of the SAP Table Connector in Azure Data Factory. Normally I would use dynamic content in ADF to generate the date text (something like…
0
votes
0 answers

How to to target_compile_definitions() in qmake?

In CMake I use: #target_compile_definitions(appsap_rtf PRIVATE SAPwithUNICODE UNICODE _UNICODE SAPwithTHREADS) target_compile_definitions(appsap_rtf PRIVATE SAPwithUNICODE) target_compile_definitions(appsap_rtf PRIVATE…
Jiri Zaloudek
  • 326
  • 3
  • 19
0
votes
0 answers

SAP Unicode Error calling Function Module in VBA

In VBA, I have created the function READ_TEXT to call the function module with the same name in SAP. To test the function, the sub tester_READ_TEXT is called with manual, hardcoded input. Sub 'tester_READ_TEXT' Sub tester_READ_TEXT() 'Logon to…
Havard Kleven
  • 422
  • 6
  • 19
0
votes
0 answers

SAPNWRFC connection refused with no error description

I have properly linked libs in my CMake: set(SAPNWRFC_INCLUDE_DIR "${PROJECT_SOURCE_DIR}/nwrfcsdk/include") set(SAPNWRFC_LIB_DIR "${PROJECT_SOURCE_DIR}/nwrfcsdk/lib") set(SAPNWRFC_LIB_FILES sapnwrfc.lib…
Jiri Zaloudek
  • 326
  • 3
  • 19
0
votes
0 answers

ADF - Copy Activity from SAP with RFC Table options

Currently trying to copy data from an SAP table based on 2 date columns in ADF. Documentation I've found regarding operators with RFC table options say that the 'OR' operator is not supported. Is there any way to do it? Currently we have this ADF…