diff --git a/java/cds-data.md b/java/cds-data.md index e24f4fa9e..11033d421 100644 --- a/java/cds-data.md +++ b/java/cds-data.md @@ -15,7 +15,7 @@ uacp: Used as link target from Help Portal at https://help.sap.com/products/BTP/ {{ $frontmatter.synopsis }} - +[Before you continue reading, make sure to read the database guide.](../guides/databases){.learn-more} ## Predefined Types diff --git a/java/reflection-api.md b/java/reflection-api.md index 12a5b263e..a9de4a7d4 100644 --- a/java/reflection-api.md +++ b/java/reflection-api.md @@ -15,6 +15,8 @@ uacp: Used as link target from Help Portal at https://help.sap.com/products/BTP/ {{ $frontmatter.synopsis }} +[Before you continue reading, make sure to know about models in CAP.](../guides/domain-modeling){.learn-more} + ## The CDS Model The interface `CdsModel` represents the complete CDS model of the CAP application and is the starting point for the introspection. diff --git a/java/services.md b/java/services.md index 228b1b700..bb714ea8c 100644 --- a/java/services.md +++ b/java/services.md @@ -13,6 +13,8 @@ uacp: Used as link target from Help Portal at https://help.sap.com/products/BTP/ [Services](../about/best-practices#services) are one of the core concepts of CAP. This section describes how services are represented in the CAP Java SDK and how their event-based APIs can be used. One of the key APIs provided by services is the uniform query API based on [CQN statements](working-with-cql/query-api). +[Before you continue reading, make sure to know about services in CAP.](../about/best-practices#services){.learn-more} + ## An Event-Based API Services dispatch events to [Event Handlers](event-handlers/), which implement the behaviour of the service. diff --git a/java/working-with-cql/index.md b/java/working-with-cql/index.md index 0c6222c7e..a412a5005 100644 --- a/java/working-with-cql/index.md +++ b/java/working-with-cql/index.md @@ -9,6 +9,8 @@ status: released {{ $frontmatter.synopsis }} +[Before you continue reading, make sure to know about CQL in CAP.](../../cds/cql){.learn-more} + diff --git a/java/working-with-cql/query-api.md b/java/working-with-cql/query-api.md index e7f61c100..aade781dd 100644 --- a/java/working-with-cql/query-api.md +++ b/java/working-with-cql/query-api.md @@ -12,11 +12,13 @@ uacp: Used as link target from Help Portal at https://help.sap.com/products/BTP/ } -API to fluently build [CQL](../../cds/cql) statements in Java. +API to fluently build CQL statements in Java. + +[Before you continue reading, make sure to know about CQL in CAP.](../../cds/cql){.learn-more} ## Introduction -The [CDS Query Language (CQL)](../../cds/cql) statement builders allow to fluently construct [CQL](../../cds/cql) statements, which can be [executed](query-execution) by [CDS Services](../cqn-services/#cdsservices). +The [CDS Query Language (CQL)](../../cds/cql) statement builders allow to fluently construct CQL statements, which can be [executed](query-execution) by [CDS Services](../cqn-services/#cdsservices). ## Concepts