I_EntSrchCDSModelPckgCompDet
CDS View for Package and Application component details
I_EntSrchCDSModelPckgCompDet is a Basic CDS View that provides data about "CDS View for Package and Application component details" in SAP S/4HANA. It reads from 3 data sources (P_ApplicationComponent, tdevc, tadir) and exposes 5 fields with key field EntSrchModelName.
Data Sources (3)
| Source | Alias | Join Type |
|---|---|---|
| P_ApplicationComponent | ApplicationComp | left_outer |
| tdevc | CDSAppComp | inner |
| tadir | CDSPackage | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IENTSRCHPCKGCOMP | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | CDS View for Package and Application component details | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #META | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | EntSrchModelName | tadir | obj_name | |
| EntSrchModelPackageName | tadir | devclass | ||
| EntSrchModelCreatedByUser | tadir | author | ||
| EntSrchModelApplComponent | P_ApplicationComponent | ApplicationComponentName | ||
| EntSrchModelApplComponentText | P_ApplicationComponent | ApplicationComponentText |
@AbapCatalog.sqlViewName: 'IENTSRCHPCKGCOMP'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'CDS View for Package and Application component details'
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel: {
usageType.serviceQuality: #C,
usageType.sizeCategory: #L,
usageType.dataClass: #META
}
define view I_EntSrchCDSModelPckgCompDet 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 EntSrchModelName,
CDSPackage.devclass as EntSrchModelPackageName,
CDSPackage.author as EntSrchModelCreatedByUser,
ApplicationComp.ApplicationComponentName as EntSrchModelApplComponent,
ApplicationComp.ApplicationComponentText as EntSrchModelApplComponentText
}
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