I_PT_MaterialHistory

DDL: I_PT_MATERIALHISTORY SQL: IPTMATHST Type: view BASIC Package: GLO_FIN_IS_PT

PT Material Data History

I_PT_MaterialHistory is a Basic CDS View that provides data about "PT Material Data History" in SAP S/4HANA. It reads from 1 data source (sipt_hist_matnr) and exposes 5 fields with key fields Material, PortugueseMaterialVersion, Language. It has 1 association to related views. Part of development package GLO_FIN_IS_PT.

Data Sources (1)

SourceAliasJoin Type
sipt_hist_matnr History from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_Product _Product $projection.Material = _Product.Product

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IPTMATHST view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey Material view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #A view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label PT Material Data History view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Material matnr Vehicle Model
KEY PortugueseMaterialVersion maktx_ver Version
KEY Language spras Off. Language
MaterialName maktx Product Description
_Product _Product

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_PT_MaterialHistory.
-- 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.
-- SQL view name: IPTMATHST

CREATE VIEW I_PT_MaterialHistory AS
SELECT
  matnr AS Material,
  maktx_ver AS PortugueseMaterialVersion,
  spras AS Language,
  maktx AS MaterialName
FROM sipt_hist_matnr AS History
LEFT OUTER JOIN I_Product AS _Product ON Material = _Product.Product  -- association [1..1]
;