diff --git a/java/cqn-services/remote-services.md b/java/cqn-services/remote-services.md index b3282fb8d..5c96c2c61 100644 --- a/java/cqn-services/remote-services.md +++ b/java/cqn-services/remote-services.md @@ -219,7 +219,7 @@ The parameter `` needs to be replaced by the concrete name ## Using Remote Services -_Remote Services_ can be used just like any other [service, that accepts CQN queries](consumption-api#cdsservices): +_Remote Services_ can be used just like any other [service, that accepts CQN queries](../cqn-services#cdsservices): ```java @Autowired @@ -233,15 +233,15 @@ ABusinessPartnerAddress address = bupa.run(select) .single(ABusinessPartnerAddress.class); ``` ::: tip -To learn more about how to build and run CQN queries, see sections [Building CQN Queries](query-api) and [Executing CQN Queries](query-execution). +To learn more about how to build and run CQN queries, see sections [Building CQN Queries](../working-with-cql/query-api) and [Executing CQN Queries](../working-with-cql/query-execution). ::: Keep in mind, that _Remote Services_ are simply clients to remote APIs. CAP doesn't automatically forward CQN queries to these services. Developers need to explicitly call and use these _Remote Services_ in their code. -However, as _Remote Services_ are based on the common CQN query APIs it's easy to use them in event handlers of your [Application Services](consumption-api#application-services). +However, as _Remote Services_ are based on the common CQN query APIs it's easy to use them in event handlers of your [Application Services](../cqn-services#application-services). ::: warning In case data from _Remote Services_ should be combined with data from the database custom coding is required. -Refer to the [Integrate and Extend guide](../guides/using-services#integrate-and-extend) for more details. +Refer to the [Integrate and Extend guide](/guides/using-services#integrate-and-extend) for more details. ::: ## Additional Cloud SDK Integration