I need to connect to an ABAP Functional module using python to extract data from a table and dump it into another HANA table .How to call the RFC using pyrfc module ? what is the syntax ? I dont find clear explanation in any forum .
Asked
Active
Viewed 2,144 times
0
-
It should be a simple python script which connects to ABAP function module and gets data directly into HANA system using looping logic – Sanjayan Santhanaganesan Oct 13 '17 at 12:43
-
The examples on the github page for pyrfc seem pretty complete, what is not working? – Gert Beukema Oct 17 '17 at 21:09
-
Thanks Gert i followed the pyrfc documentation , i had some problems with my requirements . The ABAP call accepts only dictionary as input , so i converted my input to dictionary and im passing it . Now it works. – Sanjayan Santhanaganesan Oct 23 '17 at 09:14