ui-report-builder
Generate drill-down reports from SAP data with analytical capabilities, allowing users to create summary, detailed, or custom reports based on specified dimensions and measures.
Instructions
Creates comprehensive drill-down reports with analytical capabilities
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dimensions | Yes | Report dimension fields | |
entityType | Yes | SAP entity type for the report | |
measures | Yes | Report measure fields | |
reportType | Yes | Type of report to generate |
Input Schema (JSON Schema)
{
"properties": {
"dimensions": {
"description": "Report dimension fields",
"items": {
"type": "string"
},
"type": "array"
},
"entityType": {
"description": "SAP entity type for the report",
"type": "string"
},
"measures": {
"description": "Report measure fields",
"items": {
"type": "string"
},
"type": "array"
},
"reportType": {
"description": "Type of report to generate",
"enum": [
"summary",
"detailed",
"analytical",
"custom"
],
"type": "string"
}
},
"required": [
"entityType",
"reportType",
"dimensions",
"measures"
],
"type": "object"
}