CAPM Flashcards
What is CAPM
The SAP Cloud Application Programming Model (CAP) is a framework of languages, libraries, and tools for building enterprise-grade services and applications. It guides developers along a ‘golden path’ of proven best practices and a great wealth of out-of-the-box solutions to recurring tasks.
CAP places primary focus on domain, by
capturing domain knowledge and intent instead of imperative coding — that means, What, not How — thereby promoting:
Close collaboration of developers and domain experts in domain modeling.
Out-of-the-box implementations for best practices and recurring tasks.
Platform-agnostic approach to avoid lock-ins, hence protecting investments.
What is the backbone of language of CAPM
CDS
What does Domain Models capture?
static aspects of problem domains as well-known entity-relationship models.
What are Associations
capture relationships.
What are Compositions
extend that to easily model document structures.
What are Annotations
allow enriching models with additional metadata, such as for UIs, Validations, Input Validation or Authorization.
What are Aspects
allow to flexibly extend models in same or separate modules, packages, or projects; at design time or dynamically at runtime.
What is an example of separation concerns
// Separation of Concerns
extend Books with @restrict: [
{ grant:’WRITE’, to:’admin’ }
];
What is an example of Verticalization
// Verticalization
extend Books with {
ISBN : String
};
/What is an example of Customization
// Customization
extend Orders with {
customer_specific : String
};
What is Core Query Language (CQL)
CQL is CDS’s advanced query language. It enhances standard SQL with elements to easily query deeply nested object graphs and document structures.
What is an example of CQN in JavaScript language
// In JavaScript code
orders = await SELECT.from (Orders, o=>{
o.ID, o.descr, o.Items (oi=>{
oi.book.title, oi.quantity
})
})
All behavioral aspects in CAP are based on ubiquitous notions of Services and Events, as expressed in this manifest:
- All active things are Services — local ones, remote ones, as well as databases
- Services are declared in CDS — reflected and used in generic service providers
- Services provide uniform APIs — consumed by other services or frontends
4.Services react on Events — covering synchronous and asynchronous APIs - Services consume other Services — in event handler implementations
- All data is passive — that is, without its own behavior, adhering to REST
Are Services in CAPM stateless
True
Where are services declare
in CDS models, used to serve requests automatically. They embody the behavioral aspects of a domain in terms of exposed entities, actions, and events.
Provide an example of service definition
// Service Definition in CDS
service OrdersService {
entity Orders as projection on my.Orders;
action cancelOrder (ID:Orders.ID);
event orderCanceled : { ID:Orders.ID }
}
Every active thing in CAP is a service, including local services or remote ones — even databases are represented as services. provide an example
// Consumption in JavaScript
let srv = cds.connect.to(‘OrdersService’)
let { Orders } = srv.entities
order = await SELECT.one.from (Orders)
.where({ ID:4711 })
srv.cancelOrder (order.ID)
What is domain modelling
Most projects start with capturing the essential objects of their domain in a respective domain model. Find here an introduction to the basics of domain modeling with CDS, complemented with recommended best practices.
What is providing servicdes
This guide introduces how to define and implement services, leveraging generic implementations provided by the CAP runtimes, complemented by domain-specific custom logic.
What is consuming services
Learn how to use uniform APIs to consume local or remote services.
What is the capture intent philosophy
Capture Intent — What, not How!
What is ERM
Entity Relationship Model
What are the uses of the domain models
They serve as the sources for persistence models, deployed to databases, as well as the underlying model for services acting as API facades to access data.
What is Node.Js
It is a JavaScript runtime, or an environment that allows us to execute JavaScript code outside of the browser. A “runtime” converts code written in a high-level, human-readable, programming language and compiles it down to code the computer can execute.