Skip to content

Commit

Permalink
fix links
Browse files Browse the repository at this point in the history
  • Loading branch information
renejeglinsky committed Mar 11, 2024
1 parent 3b6efe1 commit 0fc110d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions java/cqn-services/remote-services.md
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ The parameter `<tag_biz_partner_svc>` 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
Expand All @@ -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
Expand Down

0 comments on commit 0fc110d

Please sign in to comment.