business-intelligence-insights
Generate actionable insights from SAP data by analyzing trends, anomalies, correlations, and optimization opportunities to support data-driven business decisions.
Instructions
Generate business insights from SAP data
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | ||
analysisType | No | Type of analysis to perform | comprehensive |
entityTypes | No | SAP entity types to analyze | |
exportFormat | No | Export format (for export action) | json |
includeRecommendations | No | Include actionable recommendations | |
insightId | No | Specific insight ID (for get action) | |
minConfidence | No | Minimum confidence threshold for insights | |
serviceIds | No | SAP service IDs to include | |
timeWindow | No | Time window for analysis |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"enum": [
"generate",
"list",
"get",
"configure",
"export"
],
"type": "string"
},
"analysisType": {
"default": "comprehensive",
"description": "Type of analysis to perform",
"enum": [
"trend",
"anomaly",
"correlation",
"optimization",
"comprehensive"
],
"type": "string"
},
"entityTypes": {
"description": "SAP entity types to analyze",
"items": {
"type": "string"
},
"type": "array"
},
"exportFormat": {
"default": "json",
"description": "Export format (for export action)",
"enum": [
"json",
"csv",
"pdf"
],
"type": "string"
},
"includeRecommendations": {
"default": true,
"description": "Include actionable recommendations",
"type": "boolean"
},
"insightId": {
"description": "Specific insight ID (for get action)",
"type": "string"
},
"minConfidence": {
"default": 0.7,
"description": "Minimum confidence threshold for insights",
"maximum": 1,
"minimum": 0,
"type": "number"
},
"serviceIds": {
"description": "SAP service IDs to include",
"items": {
"type": "string"
},
"type": "array"
},
"timeWindow": {
"additionalProperties": false,
"default": {
"period": "days",
"size": 7
},
"description": "Time window for analysis",
"properties": {
"period": {
"enum": [
"hours",
"days",
"weeks",
"months"
],
"type": "string"
},
"size": {
"exclusiveMinimum": 0,
"type": "number"
}
},
"required": [
"period",
"size"
],
"type": "object"
}
},
"required": [
"action"
],
"type": "object"
}