I_MaterialLedgerPriceTypeText
ML Price type - Text
I_MaterialLedgerPriceTypeText is a Basic CDS View that provides data about "ML Price type - Text" in SAP S/4HANA. It reads from 1 data source (fmlts_prctype_t) and exposes 5 fields with key fields MaterialPriceType, Language. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| fmlts_prctype_t | fmlts_prctype_t | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | ML Price type - Text | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #BASIC | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MaterialPriceType | price_type | ||
| KEY | Language | language | ||
| MaterialPriceTypeName | description | |||
| _MaterialLedgerPriceType | _MaterialLedgerPriceType | |||
| _Language | _Language |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'ML Price type - Text'
@ObjectModel.usageType:{
serviceQuality: #A,
sizeCategory: #S,
dataClass: #MASTER
}
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
define view entity I_MaterialLedgerPriceTypeText
as select from fmlts_prctype_t
association to parent I_MaterialLedgerPriceType as _MaterialLedgerPriceType on $projection.MaterialPriceType = _MaterialLedgerPriceType.MaterialPriceType
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_MaterialLedgerPriceType'
@ObjectModel.text.element: ['MaterialPriceTypeName']
key price_type as MaterialPriceType,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key language as Language,
@Semantics.text:true
description as MaterialPriceTypeName,
_MaterialLedgerPriceType,
_Language
}
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