Describe RFC Function Module
sap_rfc_describeRetrieve the parameter list (import, export, changing, table) for any RFC-enabled function module, showing direction, type, length, and optionality to understand required arguments.
Instructions
Get the parameter list (import, export, changing, table) of any RFC-enabled function module.
Args:
function_name (string): name of the function module.
response_format.
Returns (json): { name, parameters: [{ name, direction, type, length?, description?, optional? }] }. direction: I=import, E=export, C=changing, T=table.
Examples:
"What parameters does BAPI_SALESORDER_CREATEFROMDAT2 take?" -> function_name='BAPI_SALESORDER_CREATEFROMDAT2'.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| function_name | Yes | RFC-enabled function module name (e.g. 'BAPI_MATERIAL_GET_DETAIL'). | |
| response_format | No | Output format: 'markdown' (human-readable, default) or 'json' (structured). | markdown |