Introduction
You can find detailed documentation about SAP Remote Function Call (RFC) functions on SAP’s official website. This documentation provides comprehensive information on the various types of RFCs, such as Synchronous RFC (sRFC), Asynchronous RFC (aRFC), Transactional RFC (tRFC), Queued RFC (qRFC), Background RFC (bgRFC), and Local Data Queue (LDQ), along with their specific characteristics and uses. It also covers aspects of data transfer and security relevant to RFC communication.
All ERPL functions loaded into DuckDB can be retrievied by the following SQL statement:
SELECT * FROM duckdb_functions() WHERE function_name LIKE '%sap%';
ERPL SQL
📄️ sap_rfc_invoke
Executes a specified function module in the SAP system.
📄️ sap_rfc_search_group
Searches for function groups within the SAP system.
📄️ sap_rfc_search_function
Searches for function modules based on specific criteria.
📄️ sap_rfc_describe_function
Provides detailed information about a specific function module.
📄️ sap_show_tables
Lists all or specific tables available in the SAP system.
📄️ sap_describe_fields
Provides detailed information about fields in a specified table.
📄️ sap_read_table
Reads data from a specified SAP table.