Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
50 views

Here is my python script that tries to pull data from a SAP table into AWS Glue. from pyrfc import Connection import pandas as pd ## Variables sap_table = 'TABLENAME' # SAP Table Name fields = ["...
John's user avatar
  • 3
0 votes
1 answer
193 views

I have been following this guide to process SAP data via Python. https://community.sap.com/t5/technology-blogs-by-members/connecting-python-with-sap-step-by-step-guide/ba-p/13452893 However, I get ...
user29483556's user avatar
1 vote
0 answers
147 views

I'm experiencing an issue with the PyRFC library in my Django project running on Pythonanywhere server. Specifically, I am trying to use the Connection class from PyRFC to establish a connection to an ...
Moeez Bin Nadeem's user avatar
0 votes
2 answers
1k views

I have a requirement in an existing production development to log errors. It needs to be done in multiple applications. I created a table and called it in a method. I am calling a Function Module as ...
Arun Kamath's user avatar
2 votes
0 answers
273 views

I'm querying SAP using C# .NET Core, using SAPNWRFC for the first time, and I'm encountering issues with querying an RFC. Essentially, I'm calling an RFC with two parameters and retrieving the result ...
Gustavo Damasceno's user avatar
0 votes
1 answer
85 views

I can not manage the following error : System.InvalidOperationException: ‘’There is no TransportBindingElement in the CustomBinding on the ServiceEndpoint with the negotiation ‘ZQM_XPortType’. Each ...
iincitr's user avatar
  • 90
1 vote
0 answers
618 views

I have a SAP BW cube and I can access it using power query with the "SAP Business Warehouse Message Server" Power BI connector, The power M code is something like: let Source = ...
Gustavo A. Marín Acevedo's user avatar
0 votes
1 answer
423 views

I need to connect my VS code to the SAP system, because i need to develop a intern webshop. Unfortunately i can't find nothing for SAP ERP just fpr SAP HANA or S4/HANA i could find something. I find ...
ADI 23's user avatar
  • 1
-2 votes
1 answer
532 views

getting error while importing pyrfc module: DLL load failed while importing _cyrfc: The specified module could not be found. can someone help?
APARNA's user avatar
  • 29
0 votes
0 answers
332 views

I need to fetch table data from a SAP system with node-rfc library. Need help where I can pass table name or parameters so that I can get proper data to build Node.js API. Do you have any idea what is ...
Munna Kumar's user avatar
0 votes
0 answers
114 views

I have the following structure received from SAP software, what is the correct way to obtain the DATA field where the TBL_ACT field is equal to "TAR - ENTRY"? Code used in the API: public ...
user9618369's user avatar
0 votes
1 answer
805 views

I am trying to get data from an SAP BW infocube using Python with pyrfc. I am currently using the ABAP function RSDRI_INFOPROV_READ_RFC, but when I print the result I am unable to get something ...
dayidir's user avatar
  • 11
0 votes
0 answers
58 views

In CMake I use: #target_compile_definitions(appsap_rtf PRIVATE SAPwithUNICODE UNICODE _UNICODE SAPwithTHREADS) target_compile_definitions(appsap_rtf PRIVATE SAPwithUNICODE) target_compile_definitions(...
Jiri Zaloudek's user avatar
0 votes
0 answers
436 views

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 '...
Havard Kleven's user avatar
0 votes
2 answers
237 views

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(...
Jiri Zaloudek's user avatar
1 vote
1 answer
2k views

I am trying to extract a SAP table in Python using RFC_READ_TABLE: result = conn.call('RFC_READ_TABLE', QUERY_TABLE=table_name, DELIMITER='|', FIELDS=fields, OPTIONS=Options, ROWCOUNT=MaxRows, ...
Camila Lopez's user avatar
0 votes
0 answers
521 views

I am trying to extract a table (BSIS) in Python via SAP RFC_READ_TABLE with the following code: class Main: def __init__(self): self.conn = Connection(ashost=ASHOST, sysnr=SYSNR, client=...
Camila Lopez's user avatar
0 votes
1 answer
351 views

I want to print details of all Transport requests, I am trying to read data in table E070 from SAP ECC using SAP JCo and RFC_READ_TABLE, I am running the following code but I am getting no output. ...
aman kumar chagti's user avatar
0 votes
1 answer
28 views

I want to connect with SOAP to SAP and have received a WSDL file. After import of the file as a Service Reference SOAPService I've now these classes available: SOAPService.IMPORT1 Namespace ...
user1673665's user avatar
1 vote
1 answer
1k views

I managed to connect to SAP ABAP via Python, using PyRFC and RFC_READ_TABLE. I am trying to figure how to querying a table by a Date column using the parameter OPTIONS. I know the query should be the ...
Mark's user avatar
  • 81
1 vote
1 answer
346 views

Below is ABAP program which uses lv_destination which is RFC Target system for functional module BAPI_COMPANYCODE_GETDETAIL. DATA lv_destination TYPE char10. CASE sy-sysid+2(1). WHEN 'P'. ...
santosh kumar's user avatar
1 vote
1 answer
458 views

I am using SAP Connector Core Library to fetch SAP data using RFC, though my changes are working perfectly with the Kestrel server, but it is not working with IIS. I am using the following libraries ...
Sumit Chourasia's user avatar
2 votes
1 answer
465 views

There is a Py-pi for pyRFC, but like all other C-python libraries, it has a lot of dependencies, and requires the setting of environment variables, etc. Is it possible to install a c-python library ...
Wonseok Choi's user avatar
1 vote
1 answer
543 views

I have SAP NETWEAVER 7.4 installed on my SAP. Can I use 7.5 client libraries to connect to the server? I have tried to connect to the server using SapNwRfc library, but got an exception "...
kidbabic's user avatar
  • 109
0 votes
1 answer
618 views

I want to access an RFC function on sap from my java program. When I call getDestination("connect") I can connect and run my function without problems. But I will have more than one config ...
Yiğit Tunç's user avatar
1 vote
0 answers
259 views

I am using zeep 4.2.1 library to consume web services (RFC) from SAP. The API's are working in local server and getting the necessary response. However the API is not working in development ...
SidJadhav's user avatar
0 votes
1 answer
178 views

I'm using this repo to connect to SAP software: https://github.com/gkralik/php7-sapnwrfc but I don't know why my script connect and return data successfully from my zfunctions on SAP server only under ...
Luis's user avatar
  • 1,090
1 vote
2 answers
2k views

We are using SAP Table Connector on Azure Synapse to extract SAP tables. However, we would like to filter the data in the copy activity. I tried using the RFC table options using the COLUMN EQ 'SOME ...
MrKoos's user avatar
  • 11
0 votes
2 answers
5k views

I'm trying to build interactive Excel templates that extract data from SAP’s spool job using BAPI_XBP_JOB_SPOOLLIST_READ. The way I’m approaching the problem is: Run a Transaction Code by means of ...
Tyro's user avatar
  • 35
1 vote
1 answer
2k views

I'm trying to use RFC_CALL_TRANSACTION_USING to get the SAP ERP software to run the transaction code FTE_BSM and print the result of the report to spool. The transaction I am trying to use is FTE_BSM, ...
Tyro's user avatar
  • 35
0 votes
0 answers
1k views

I am not a SAP expert, but need to get a project up and running as quickly as possible and need some advise. We have a .Net project (C#) that uses VS 2019 Professional and we need to pull data from a ...
Tobie van der Merwe's user avatar
-2 votes
1 answer
363 views

I have this RFC How do I set the internal value of the I_VALUE_DATA key? <z_atcws_t_test> <I_W_INFORMATION>str</I_W_INFORMATION> <I_VALUE_DATA> <E_DATA1>...
Gustavo's user avatar
1 vote
0 answers
112 views

I'm using Excel and VBA to get SAP to download data from SAP through RFC using INST_EXECUTE_REPORT. It works like a charm when I have specific input parameters. I just build up .Tables("PARA"...
Tyro's user avatar
  • 35
0 votes
1 answer
635 views

I call a number of BAPI's and FM's using RFC calls to SAP using c#. I would now like to convert these calls to connect and call then via SAP Web Dispatcher. Does anyone know how the API calls will ...
Cameron Castillo's user avatar
0 votes
1 answer
696 views

I am working on an interface for communicating with SAP RFC functions. I have some questions regarding parameter hierarchy and uniqueness of parameter and table naming to which I can't seem to find an ...
SwissEngineer's user avatar
0 votes
0 answers
251 views

I got this code in https://blogs.sap.com/2014/08/29/how-to-use-actual-sap-netweaver-rfc-library-with-python-read-table/ I did all the procedures to run it and it works on windows, but when I put it on ...
Nathan Nunes's user avatar
0 votes
1 answer
144 views

I'm using the PYRFC library and so far I've managed to connect to SAP. conn = Connection(ashost='xxxxxxxxx', sysnr='02', client='100', user='xxxxx', passwd='xxxxxxxx.') result = conn.call('...
Danilo Marquiori's user avatar
0 votes
0 answers
565 views

I cannot connect to SAP using PHP sapnwrfc, this is my code : use SAPNWRFC\Connection as SapConnection; use SAPNWRFC\Exception as SapException; $config = [ 'GROUP' => '*****', // Group/...
Dewa Aditya's user avatar
0 votes
0 answers
2k views

i am looking to decode the CLUSTD column of SAP, which is in encoded form as binary. I want to decode it outside SAP, I know READ_TEXT helps decode it but it is in SAP environment. My CLUSTD is in ...
Tanmoy banerjee's user avatar
0 votes
1 answer
334 views

I'm trying to integrate my blazor wasm app to sap. But when i call below code the IIS pool is stopping. But when i run project on my visual studio it's working successfully. I think IIS can't inject ...
Enes Kartal's user avatar
0 votes
0 answers
218 views

I am trying to update the date and quantity for a Purchase Order in SAP ERP (ME22N). The first line in the excel sheet gets updated, however, it does not work for the lines after that. I get the error ...
Mathew Jose's user avatar
1 vote
1 answer
3k views

In my landscape, the ERP system is creating deliveries in EWM via qRFC. The setup is standard and works via a distribution model in the ERP BD64 transaction. A BAPI is called that creates a delivery ...
RaTiO's user avatar
  • 1,059
2 votes
3 answers
441 views

I'm using .Net NCo 3.0 library and I tried one example of tRFC wherein I see the transaction ID is created and associated with the RFC function and then invoked, after a successful transaction, the ...
Mysterious288's user avatar
0 votes
1 answer
2k views

I've downloaded SAP GUI for Windows 7.70 (latest version with 64bits connectors) and created an RFC function called Z_GF_STOCK with a material string import parameter (ARTICULO) and labst export ...
marcss's user avatar
  • 253
0 votes
1 answer
357 views

I have VBA in Excel 32 bits that can upload Sales Orders into SAP ERP software. In order to get the code to run on 64 bits Excel, I uninstalled current SAP GUI and installed SAP GUI 7.70. I now get ...
Tim's user avatar
  • 1
1 vote
1 answer
1k views

I've created a macro to read data from SAP Table using the BAPI BBP_RFC_READ_TABLE. It successfully compiles and runs for a single parameter if I use the FILTER VIEW: objOptTab(objOptTab.RowCount, &...
Havard Kleven's user avatar
0 votes
0 answers
147 views

I am working with SapNwRfc (https://github.com/huysentruitw/SapNwRfc) I was able to use the .net framework and to connect with my sap production server. However I have some issues on get everything ...
Piero Giacomelli's user avatar
3 votes
1 answer
814 views

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 ...
archie_by's user avatar
  • 1,643
0 votes
1 answer
1k views

I've created Logic App in Azure which has some json data inside. I'd like to connect to SAP system and pass parameters to an ABAP Function Module via RFC. RFC input parameters in XML: <?xml version=...
TyRRRax's user avatar
  • 65
1 vote
1 answer
807 views

I'm trying to automatize process using Logic Apps -> On-premises data gateway -> SAP system. I think I have a problem with metadata or cache. Scenario: I stopped developing solution on Wednesday ...
TyRRRax's user avatar
  • 65

1
2 3 4 5
8