From b057d33f5799fc7747530dca28b1f8235a373bc5 Mon Sep 17 00:00:00 2001 From: Matthias Schur <107557548+MattSchur@users.noreply.github.com> Date: Fri, 24 Jan 2025 16:47:01 +0100 Subject: [PATCH] Java Runtime views: Filtered Associations --- java/working-with-cql/query-execution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/working-with-cql/query-execution.md b/java/working-with-cql/query-execution.md index 37142d96d..63b04f7df 100644 --- a/java/working-with-cql/query-execution.md +++ b/java/working-with-cql/query-execution.md @@ -434,7 +434,7 @@ WHERE B.STOCK < 10 AND A.NAME = ? ``` ::: warning Limitations -Runtime views are supported for simple [CDS projections](../../cds/cdl#as-projection-on). Constant values, expressions such as *case when* and [association filters](../../cds/cdl#publish-associations-with-filter) are currently ignored. +Runtime views are supported for simple [CDS projections](../../cds/cdl#as-projection-on). Constant values and expressions such as *case when* are currently ignored. Expands of [filtered associations](../../cds/cdl#publish-associations-with-filter) are only supported since `3.7.0`. Complex views using aggregations or union/join/subqueries in `FROM` are not supported. :::