P_CdsViewPkgAppComp
CDS Views Package and Application Component Info
P_CdsViewPkgAppComp is a Basic CDS View that provides data about "CDS Views Package and Application Component Info" in SAP S/4HANA. It reads from 3 data sources (P_ApplicationComponent, tdevc, tadir) and exposes 6 fields with key field DDLName. Part of development package S_ESH_MSM.
Data Sources (3)
| Source | Alias | Join Type |
|---|---|---|
| P_ApplicationComponent | ApplicationComp | left_outer |
| tdevc | CDSAppComp | inner |
| tadir | CDSPackage | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PCDSPKGAPPCOMP | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.type | #CLIENT_INDEPENDENT | view | |
| ClientHandling.algorithm | #NONE | view | |
| VDM.viewType | #BASIC | view | |
| VDM.private | true | view | |
| ObjectModel.usageType.serviceQuality | #P | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DDLName | tadir | obj_name | |
| CDSPackage | tadir | devclass | ||
| CreatedBy | tadir | author | ||
| ApplicationComponent | P_ApplicationComponent | ApplicationComponent | ||
| ApplicationComponentName | P_ApplicationComponent | ApplicationComponentName | ||
| ApplicationComponentText | P_ApplicationComponent | ApplicationComponentText |
@AbapCatalog.sqlViewName: 'PCDSPKGAPPCOMP'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
//@EndUserText.label: 'CDS Package and Application Component'
@ClientHandling.type: #CLIENT_INDEPENDENT
@ClientHandling.algorithm: #NONE
@VDM.viewType: #BASIC
@VDM.private: true
@ObjectModel.usageType.serviceQuality: #P
define view P_CdsViewPkgAppComp as select from tadir as CDSPackage
inner join tdevc as CDSAppComp
on CDSPackage.devclass = CDSAppComp.devclass and CDSPackage.object = 'DDLS'
left outer join P_ApplicationComponent as ApplicationComp
on CDSAppComp.component = ApplicationComp.ApplicationComponent {
key CDSPackage.obj_name as DDLName,
CDSPackage.devclass as CDSPackage,
CDSPackage.author as CreatedBy,
ApplicationComp.ApplicationComponent,
ApplicationComp.ApplicationComponentName,
ApplicationComp.ApplicationComponentText
}
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