P_EntProjElmntDlvTypeTextCode
Description for Deliverable Type
P_EntProjElmntDlvTypeTextCode is a Basic CDS View that provides data about "Description for Deliverable Type" in SAP S/4HANA. It reads from 2 data sources (csla, cslt) and exposes 6 fields with key fields Lstar, Language. Part of development package ODATA_PPM_COMMON_API.
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| VDM.viewType | #BASIC | view | |
| VDM.private | true | view |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #A,
sizeCategory: #S,
dataClass: #CUSTOMIZING
}
@VDM.viewType: #BASIC
@VDM.private:true
define view entity P_EntProjElmntDlvTypeTextCode
as select from cslt
inner join csla as _md on cslt.lstar = _md.lstar and
cslt.kokrs = _md.kokrs and
cslt.datbi = _md.datbi
{
key cslt.lstar as Lstar,
@Semantics.language: true
key cslt.spras as Language,
@Semantics.businessDate.to: true
cslt.datbi as ValidityEndDate,
cslt.kokrs as Kokrs,
@Semantics.businessDate.from: true
_md.datab as ValidityStartDate,
@Semantics.text: true
cslt.ktext as Ktext
}
where _md.datab <= $session.system_date
and _md.datbi >= $session.system_date
and cslt.kokrs = 'A000'
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