Cds_Views_Pkg_Appcomp
CDS Views Package and Application Component Info
Cds_Views_Pkg_Appcomp is a CDS View that provides data about "CDS Views Package and Application Component Info" in SAP S/4HANA. It reads from 2 data sources (tdevc, tadir) and exposes 6 fields with key field DDLSourceName. Part of development package S_DICT_VB.
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CDSPKGAPPCOMP | view | |
| EndUserText.label | CDS Views Package and Application Component Info | view | |
| ObjectModel.usageType.serviceQuality | #P | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DDLSourceName | tadir | obj_name | |
| CDSViewPackage | tadir | devclass | ||
| CDSViewSourceSystem | tadir | srcsystem | ||
| ApplicationComponent | ApplicationComp | ApplicationComponent | ||
| ApplicationComponentName | ApplicationComp | ApplicationComponentName | ||
| _CDSAppCompText | ApplicationComp | _Text |
@AbapCatalog.sqlViewName: 'CDSPKGAPPCOMP'
@EndUserText.label: 'CDS Views Package and Application Component Info'
@ObjectModel.usageType.serviceQuality: #P
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
define view Cds_Views_Pkg_Appcomp as select from tadir as CDSPackage
inner join tdevc as CDSAppComp
on CDSPackage.devclass = CDSAppComp.devclass and CDSPackage.object = 'DDLS'
left outer to one join Application_Component as ApplicationComp
on CDSAppComp.component = ApplicationComp.ApplicationComponent {
key CDSPackage.obj_name as DDLSourceName,
CDSPackage.devclass as CDSViewPackage,
CDSPackage.srcsystem as CDSViewSourceSystem,
ApplicationComp.ApplicationComponent,
ApplicationComp.ApplicationComponentName,
ApplicationComp._Text as _CDSAppCompText
} where CDSPackage.object = 'DDLS'
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