Cds_Application_Component
CDS Application Component
Cds_Application_Component is a CDS View that provides data about "CDS Application Component" in SAP S/4HANA. It reads from 2 data sources (tadir, tdevc) and exposes 3 fields with key fields ObjectName, ApplicationComponent. It has 1 association to related views.
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | Application_Component | _ApplComp | $projection.ApplicationComponent = _ApplComp.ApplicationComponent |
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CDSAPPLCOMP | view | |
| EndUserText.label | CDS Application Component | view | |
| ObjectModel.usageType.serviceQuality | #P | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view |
@AbapCatalog.sqlViewName: 'CDSAPPLCOMP'
@EndUserText.label: 'CDS Application Component'
@ObjectModel.usageType.serviceQuality: #P
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
define view Cds_Application_Component as select from tadir
inner join tdevc on tadir.devclass = tdevc.devclass and tadir.object = 'DDLS'
association [1..1] to Application_Component as _ApplComp on $projection.ApplicationComponent = _ApplComp.ApplicationComponent {
key tadir.obj_name as ObjectName,
key tdevc.component as ApplicationComponent,
_ApplComp
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA