SAP Table Connector cannot find FM in SAP ECC 6

Viewed 322

Our version of SAP (ECC6 EHP 0) does not have the FM ZRFC_READ_TABLE2. We created a copy and called it ZFM_INTERNAL_ZRFC_READ_TABLE2; however, when trying to use it from ADF with the SAP connector (version 3.0.23 64bit) we get an error.

Type: SAP.Middleware.Connector.RfcInvalidParameterException

Message: Element QUERY_TABLE of container metadata XXXXX/ZFM_INTERNAL_ZRFC_READ_TABLE2 unknown.

I posted this question in the GitHub feedback page (link) and was told this is a better forum to answer this type of questions.

The FM has the QUERY_TABLE parameter and it has been tested to be working (using Python scripts). Screenshots of the configuration and tests performed.

FM Config

Test Configuration

Test Results

Any ideas where the problem could be? Thanks in advance for your help!

2 Answers

As discussed in Microsoft Q&A Platform the above issue can be resolved if we are specifying function module alone without the function group.

Under Attribute tab, make sure you select "Remote-Enabled Module". enter image description here

Related