discover-service-entities
Explore and list all available entities within a specific SAP service to understand data structures and operational capabilities for integration and analysis.
Instructions
List all entities and their capabilities within a specific SAP service. Use this after finding a service to understand what data you can work with.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
serviceId | Yes | The SAP service ID to explore | |
showCapabilities | No | Show CRUD capabilities for each entity |
Input Schema (JSON Schema)
{
"properties": {
"serviceId": {
"description": "The SAP service ID to explore",
"type": "string"
},
"showCapabilities": {
"default": true,
"description": "Show CRUD capabilities for each entity",
"type": "boolean"
}
},
"required": [
"serviceId"
],
"type": "object"
}