P_Procmttype
Value help for procurement type
P_Procmttype is a Basic CDS View that provides data about "Value help for procurement type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field ProcurementType. It has 1 association to related views. Part of development package VDM_MD_PRODUCT_OBSOLETE.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | P_Procmttypetext | _Text | $projection.ProcurementType = _Text.Value |
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | P_PROCMTYPE_VH | view | |
| VDM.viewType | #BASIC | view | |
| VDM.private | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | ProcurementType | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ProcurementType | |||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'P_PROCMTYPE_VH'
//@Analytics: { dataCategory: #DIMENSION, dataExtraction.enabled: true }
@VDM.viewType: #BASIC
@VDM.private: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey: 'ProcurementType'
//@EndUserText.label: 'Value help for procurement type'
define view P_Procmttype as select from dd07l
association [0..*] to P_Procmttypetext as _Text
on $projection.ProcurementType = _Text.Value
{
@ObjectModel.text.association: '_Text'
key cast(dd07l.domvalue_l as procurementtype) as ProcurementType,
_Text
}
where domname = 'BESKZ'
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