12

How to implement Bound functions and Unbound functions in SAP CAPM

 2 years ago
source link: https://blogs.sap.com/2021/06/16/how-to-implement-bound-functions-and-unbound-functions-in-sap-capm/
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
Technical Articles
Posted on June 16, 2021 2 minute read

How to implement Bound functions and Unbound functions in SAP CAPM

1 Like 26 Views 1 Comment

Introduction

  • In this blog, we will look at how to implement functions in Cloud Application Programming Model and invoke the functions in local host.

Custom Functions

  • Within service definitions, you can additionally specify actions and functions.
  • In SAP CAP, We have two types of functions (Bound Functions and Unbound Functions)

Bound Functions

Actions and functions can also be bound to individual entities of a service, enclosed in an additional actions block.

Unbound Functions

The notion of actions and functions in CDS adopt actions and functions on service-level.

Let’s implement Bound functions in our application.

Providing Service Implementations

In Node.js, the easiest way to provide implementations of functions for services is thru equally named .js files placed next to a service definition’s .cds file.

Bound%20Function%20in%20cds%20file

Bound Function in .cds file

In the above example, we have defined the Bound function in .cds file which is bounded to individual entity employeeMaster.

The next most important step is function definition in .js file.

Function%20definition%20in%20.js%20file

Function definition in .js file

In the above example, we will not cover the complex scenario however, Let’s implement the basic logic now.

req.query is a basic Query with where clause.

{ SELECT: {
  from: {
    ref: [
      {
        id: 'CatalogService.employeeMaster',
        where: [ {ref:['ID']}, '=', {val:1} ]
      }
    ]
  }
}}

If server listening is stopped, Execute cds watch again from the Terminal to see the output in new tab. Otherwise, refresh the browser and check the output.

Output%20of%20Bound%20function

Output of Bound function

How to invoke Bound Functions

/employeeMaster/1/CatalogService.boundedRead() // employeeMaster is Entity and CatalogService.boundedRead() is the function invoking.

Let’s implement Unbound functions in our application.

Unbound%20Function%20in%20.cds%20file

Unbound Function in .cds file

In the above example, we have defined the Unbound function in .cds file which is defined on service-level.

Function Definition for Unbound function.

Definition%20of%20Unbound%20Function

Unbound Function Definition in .js file

Let’s check the output of Unbound function.
Output%20of%20Unbound%20function

Output of Unbound function

How to invoke Unbound Functions

/unboundedRead() // You can directly invoke Unbound functions

I hope everyone enjoyed this blog, Please don’t forget to put comment and stay safe at home.

Regards

Nikhil Puri


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK