I_FldLogsMaterialDetails

DDL: I_FLDLOGSMATERIALDETAILS SQL: IFLMARA Type: view BASIC

Material master data from MARA for Field Logistics

I_FldLogsMaterialDetails is a Basic CDS View that provides data about "Material master data from MARA for Field Logistics" in SAP S/4HANA. It reads from 1 data source (mara) and exposes 10 fields with key field Material. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
mara mara from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_MaterialText _Text $projection.Material = _Text.Material and _Text.Language = $session.system_language

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IFLMARA view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Material master data from MARA for Field Logistics view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY Material mara matnr Vehicle Model
IsBatchManagementRequired mara xchpf Batch Mgmt Rqt(Plnt)
ShelfLifeExpirationDatePeriod
TotalShelfLife mara mhdhb Tot. shelf life
ProductUUID mara scm_matid_guid16 Product
PackagingMaterialType mara vhart Packag.Mat.Type
MaterialType mara mtart Product Type
QuantityConversionMethod mara cmeth Method
MaterialName _Text MaterialName Material Description
_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_FldLogsMaterialDetails.
-- 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: IFLMARA

CREATE VIEW I_FldLogsMaterialDetails AS
SELECT
  mara.matnr AS Material,
  mara.xchpf AS IsBatchManagementRequired,
  cast(mara.iprkz as shelflifeexpirationdateperiod preserving type ) AS ShelfLifeExpirationDatePeriod,
  mara.mhdhb AS TotalShelfLife,
  mara.scm_matid_guid16 AS ProductUUID,
  mara.vhart AS PackagingMaterialType,
  mara.mtart AS MaterialType,
  mara.cmeth AS QuantityConversionMethod,
  _Text.MaterialName AS MaterialName
FROM mara
LEFT OUTER JOIN I_MaterialText AS _Text ON Material = _Text.Material AND _Text.Language = $session.system_language  -- association [0..1]
;