From 3bbb0b272cbb7e6e6a08c2983247efe915bdc55a Mon Sep 17 00:00:00 2001 From: Rene Jeglinsky Date: Wed, 17 Sep 2025 16:17:22 +0200 Subject: [PATCH] changes after testing --- guides/providing-services.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guides/providing-services.md b/guides/providing-services.md index b5a2a010f3..d093666434 100644 --- a/guides/providing-services.md +++ b/guides/providing-services.md @@ -457,7 +457,7 @@ To illustrate the above: Fuzzy search is a fault-tolerant search feature of SAP HANA Cloud, which returns records even if the search term contains additional characters, is missing characters, or has typographical errors. -You can configure the fuzziness in the range [0.0, 1.0]. The value 1.0 enforces exact search. +You can configure the fuzziness in the range [0.0, 1.0]. - Java: cds.sql.hana.search.fuzzinessThreshold = 0.8 - Node.js:cds.hana.fuzzy = 0.7(1) @@ -1145,7 +1145,7 @@ Event handlers for actions or functions are very similar to those for CRUD event **Method-style Implementations** in Node.js, you can alternatively implement actions and functions using conventional JavaScript methods with subclasses of `cds.Service`: ```js -module.exports = class Sue extends cds.Service { +module.exports = class Sue extends cds.ApplicationService { sum(x,y) { return x+y } add(x,to) { return stocks[to] += x } stock(id) { return stocks[id] }