Übung 05
Szenario
Teil 1: Die Rohdaten transformieren (Custom Function)
1
Workflow & Testdaten
[
{"order_id": 1, "status": "COMPLETED", "country": "DE", "total": 150.50, "items": [{"name": "Product A"}, {"name": "Product B"}]},
{"order_id": 2, "status": "PENDING", "country": "DE", "total": 75.00, "items": [{"name": "Product C"}]},
{"order_id": 3, "status": "COMPLETED", "country": "AT", "total": 200.00, "items": [{"name": "Product A"}, {"name": "Product D"}]},
{"order_id": 4, "status": "COMPLETED", "country": "DE", "total": 120.00, "items": [{"name": "Product B"}]}
]3
Teil 2: Umsatz pro Land aggregieren (Dataset)
Teil 3: Ergebnis als CSV formatieren (Text Template)
Was this helpful?
