P_MatlLdgrPriceByValuation
Material Ledger Price by Valuation
P_MatlLdgrPriceByValuation is a Composite CDS View that provides data about "Material Ledger Price by Valuation" in SAP S/4HANA. It reads from 1 data source (I_MaterialLedgerPrice) and exposes 10 fields with key fields CostEstimate, Ledger, CurrencyRole, MaterialPriceType, MaterialPriceSubtype.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_MaterialLedgerPrice | I_MaterialLedgerPrice | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.private | true | view | |
| EndUserText.label | Material Ledger Price by Valuation | view |
Fields (10)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CostEstimate | CostEstimate | ||
| KEY | Ledger | Ledger | ||
| KEY | CurrencyRole | CurrencyRole | ||
| KEY | MaterialPriceType | MaterialPriceType | ||
| KEY | MaterialPriceSubtype | MaterialPriceSubtype | ||
| KEY | MaterialPriceValidityStartDate | MaterialPriceValidityStartDate | ||
| KEY | MaterialPriceValidityEndDate | MaterialPriceValidityEndDate | ||
| KEY | CompanyCode | CompanyCode | ||
| MaterialPrice | MaterialPrice | |||
| Currency | Currency |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType:{ serviceQuality: #B,
sizeCategory: #XXL,
dataClass: #MIXED }
@VDM: {
viewType: #COMPOSITE,
private:true
}
@EndUserText.label: 'Material Ledger Price by Valuation'
define root view entity P_MatlLdgrPriceByValuation
as select from I_MaterialLedgerPrice
{
key cast( concat( CurrencyRole,
concat( '/', coalesce(Ledger, ' ') ) ) as fml_valncrcyrolesemkey ) as MatlLdgrPrValnCrcyRoleSemKey,
key CostEstimate,
key Ledger,
key CurrencyRole,
key MaterialPriceType,
key MaterialPriceSubtype,
key MaterialPriceValidityStartDate,
key MaterialPriceValidityEndDate,
key CompanyCode,
MaterialPrice,
Currency
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_MATERIALLEDGERPRICE"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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