-
Hello, Can anyone help me with how I should call a function module that takes both an import parameter and table parameters? By table parameters, I mean that in addition to the import parameter, the function module has a table entry that needs to have its fields filled out. I've tried passing two the import and table parameters separately as kwargs in the conn.call method, combining them into one dictionary, and making the import parameter as a dictionary and table parameter as a list of dictionaries but they all lead to RFC_INVALID_PARAMETER error because the program thinks the table parameters are a part of the import parameters. Here's how my call method is at the moment: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Table parameters are handled the same way like variable and structure parameters. You can try the |
Beta Was this translation helpful? Give feedback.
Table parameters are handled the same way like variable and structure parameters. You can try the
STFC_STRUCTURE
example from README first:https://github.com/SAP/PyRFC#call-abap-function-modules