Usage Scenario
In CAP, extensibility and connectivity are fundamental concepts that enable developers to build flexible and connected applications that can adapt to changing business needs and integrate seamlessly with various data sources and services.
Extensibility in CAP
Extensibility in CAP refers to the ability to customize and extend the data models, business logic, and user interfaces of applications to accommodate specific business requirements. CAP offers several mechanisms for achieving extensibility:
- Data Model Extensibility
- Developers can define data models using Core Data Services (CDS). CAP allows you to add custom entities, fields, and relationships to the data model to meet specific business needs. You can extend existing data models without altering the core structure, making it easier to adapt to changing data requirements.
- Behavioral Extensibility
- CAP provides service handlers and event handlers that allow you to define custom business logic. You can implement custom code that executes during various application events, such as create, read, update, and delete (CRUD) operations, validations, and data transformations.
- UI Extensibility
- When building user interfaces (UIs) with CAP, you can customize and extend SAP Fiori applications. This includes adding new UI components, modifying existing views, or creating custom pages to tailor the user experience to your organization's needs.
- Service Extensibility
- CAP allows you to create custom OData services that expose additional functionality or data to external consumers. These services can integrate with other SAP applications or external systems, facilitating data exchange and interoperability.
- Localization
- CAP supports localization features that enables you to adapt your application to different languages and regions, which is crucial for global deployments.
Connectivity in CAP
Connectivity in CAP is the capability to seamlessly connect and integrate with various data sources, services, and SAP internal or external systems. CAP provides multiple mechanisms for achieving connectivity:
- Database Connectivity
- CAP abstracts database interactions, allowing you to work with data models using Core Data Services (CDS) without being concerned about the underlying database system. CAP supports various database systems, including SAP HANA, SQLite, H2 (Java only), PostgreSQL, providing flexibility in choosing the right database for your application.
- Service Connectivity
- CAP applications can interact with external services and APIs using HTTP-based calls, REST, GraphQL, or other protocols. This enables integration with third-party systems and the consumption of external data. In this unit, we are going to deep dive on the integration with an external service.
- Event-based Connectivity
- CAP supports event-driven architecture, allowing your application to emit and listen for events. This facilitates real-time data synchronization and communication between different parts of your application or with external systems.
- Message Queues and Event Brokers
- CAP can integrate with message queuing systems and event brokers like SAP Enterprise Messaging or third-party solutions. This enables asynchronous communication and event-driven processing, which is essential for scalable and responsive applications.
- SAP Integration
- CAP can easily integrate with other SAP solutions, such as SAP Integration Suite (Cloud Integration, API Management). This allows you to create end-to-end business processes that span multiple SAP applications and services.
- Security and OAuth Integration
- CAP provides built-in support for authentication and authorization, including OAuth 2.0. This makes it easier to secure your application and integrate it with identity providers or SAP's authentication services.