I_MaterialLedgerPriceType
ML Price type
I_MaterialLedgerPriceType is a Basic CDS View that provides data about "ML Price type" in SAP S/4HANA. It reads from 1 data source (fmlts_pricetype) and exposes 6 fields with key field MaterialPriceType. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| fmlts_pricetype | fmlts_pricetype | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_MaterialLedgerPriceTypeText | _Text | |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | ML Price type | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.representativeKey | MaterialPriceType | view | |
| VDM.viewType | #BASIC | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MaterialPriceType | price_type | ||
| MaterialPriceProcedure | procedure_code | |||
| MaterialPriceValidityType | validity_range | |||
| MaterialPriceHasHistory | has_history | |||
| ManualChangeIsAllowed | allows_manual_changes | |||
| _Text | _Text |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'ML Price type'
@ObjectModel.usageType:{
serviceQuality: #A,
sizeCategory: #S,
dataClass: #MASTER
}
@ObjectModel.representativeKey: 'MaterialPriceType'
@VDM.viewType: #BASIC
define root view entity I_MaterialLedgerPriceType
as select from fmlts_pricetype
composition [0..*] of I_MaterialLedgerPriceTypeText as _Text
{
@ObjectModel.text.association: '_Text'
key price_type as MaterialPriceType,
procedure_code as MaterialPriceProcedure,
validity_range as MaterialPriceValidityType,
has_history as MaterialPriceHasHistory,
allows_manual_changes as ManualChangeIsAllowed,
_Text
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"FMLTS_PRICETYPE"
],
"ASSOCIATED":
[
"I_MATERIALLEDGERPRICETYPETEXT"
],
"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