P_MaterialLedgerHeaderData
Material Ledger Header Data
P_MaterialLedgerHeaderData is a Basic CDS View that provides data about "Material Ledger Header Data" in SAP S/4HANA. It reads from 1 data source (ckmlhd) and exposes 13 fields with key field CostEstimate. It has 2 associations to related views. Part of development package FCML4H_DISPLAY.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ckmlhd | ckmlhd | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_WBSElementBasicData | _WBSElementBasicData | $projection.WBSElementInternalID = _WBSElementBasicData.WBSElementInternalID |
| [0..1] | I_InventorySpecialStockType | _InventorySpecialStockType | $projection.InventorySpecialStockType = _InventorySpecialStockType.InventorySpecialStockType |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| VDM.viewType | #BASIC | view | |
| VDM.private | true | view |
Fields (13)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CostEstimate | kalnr | ||
| Material | ||||
| ValuationArea | ||||
| PriceDeterminationControl | mlast | |||
| InventoryValuationType | ||||
| InventorySpecialStockValnType | ||||
| SalesOrder | ||||
| SalesOrderItem | posnr | |||
| InventorySpecialStockType | sobkz | |||
| InventorySpecialStockTypeName | ||||
| WBSElementInternalID | ||||
| Supplier | ckmlhd | lifnr | ||
| _WBSElementBasicData | _WBSElementBasicData |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType:{
serviceQuality: #A,
sizeCategory: #L,
dataClass: #MASTER
}
@VDM: {
viewType: #BASIC,
private: true
}
define view entity P_MaterialLedgerHeaderData
as select from ckmlhd
association [0..1] to I_WBSElementBasicData as _WBSElementBasicData on $projection.WBSElementInternalID = _WBSElementBasicData.WBSElementInternalID
association [0..1] to I_InventorySpecialStockType as _InventorySpecialStockType on $projection.InventorySpecialStockType = _InventorySpecialStockType.InventorySpecialStockType
{
key kalnr as CostEstimate,
cast( matnr as matnr preserving type ) as Material,
cast( bwkey as bwkey preserving type ) as ValuationArea,
mlast as PriceDeterminationControl,
cast( bwtar as bwtar_d preserving type ) as InventoryValuationType,
cast( kzbws as kzbws preserving type ) as InventorySpecialStockValnType,
cast( vbeln as vbeln preserving type ) as SalesOrder,
posnr as SalesOrderItem,
sobkz as InventorySpecialStockType,
_InventorySpecialStockType._Text[1: Language = $session.system_language].InventorySpecialStockTypeName as InventorySpecialStockTypeName,
cast( ckmlhd.pspnr as ps_s4_pspnr preserving type ) as WBSElementInternalID,
ckmlhd.lifnr as Supplier,
_WBSElementBasicData
}
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