connector-wizard-rfc-create
Create RFC connector calls for SAP system functions. Select function names to generate connector calls that enable integration with remote SAP systems.
Instructions
Create one or more calls for an RFC connector using the wizard
The RFC connector requires calls to refer to existing functions on the remote SAP system. To find available functions,
use the resource template simplifier://connector-wizard/{connectorName}/search/{term}/{page}. Select the desired
function names and pass them to this tool.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| connectorName | Yes | Name of the RFC Connector to add calls to | |
| rfcFunctionNames | Yes | Names of the SAP system's functions for which to create connector calls |
Input Schema (JSON Schema)
{
"properties": {
"connectorName": {
"description": "Name of the RFC Connector to add calls to",
"type": "string"
},
"rfcFunctionNames": {
"description": "Names of the SAP system's functions for which to create connector calls",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"connectorName",
"rfcFunctionNames"
],
"type": "object"
}