I_MaterialLedgerPriceType

DDL: I_MATERIALLEDGERPRICETYPE Type: view_entity BASIC

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)

SourceAliasJoin Type
fmlts_pricetype fmlts_pricetype from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_MaterialLedgerPriceTypeText _Text

Annotations (7)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
KEY MaterialPriceType price_type Price Type
MaterialPriceProcedure procedure_code Procedure Code
MaterialPriceValidityType validity_range Validity Range
MaterialPriceHasHistory has_history With History
ManualChangeIsAllowed allows_manual_changes Changes Allowed
_Text _Text

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_MaterialLedgerPriceType.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW I_MaterialLedgerPriceType AS
SELECT
  price_type AS MaterialPriceType,
  procedure_code AS MaterialPriceProcedure,
  validity_range AS MaterialPriceValidityType,
  has_history AS MaterialPriceHasHistory,
  allows_manual_changes AS ManualChangeIsAllowed
FROM fmlts_pricetype
LEFT OUTER JOIN I_MaterialLedgerPriceTypeText AS _Text ON /* condition not available in parsed metadata */  -- association [0..*]
;