Deprecated
This CDS view is deprecated in S/4HANA. Use I_MRPLotSizingProcedureText instead. View all deprecated CDS views →

I_Mrpltsizprctxttemp

DDL: I_MRPLTSIZPRCTXTTEMP SQL: IPPLOTSIZPRCTXT Type: view BASIC

MRP lot sizing proc text

I_Mrpltsizprctxttemp is a Basic CDS View that provides data about "MRP lot sizing proc text" in SAP S/4HANA. It reads from 1 data source (t439t) and exposes 4 fields with key fields MaterialLotSizingProcedure, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
t439t txt from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IPPLOTSIZPRCTXT view
ObjectModel.representativeKey MaterialLotSizingProcedure view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label MRP lot sizing proc text view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_MRPLotSizingProcedureText view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY MaterialLotSizingProcedure t439t disls Lot Sizing Procedure
KEY Language t439t spras Off. Language
MaterialLotSizingProcedureName t439t loslt Lot-Sizing Name
_Language _Language

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_Mrpltsizprctxttemp.
-- 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: IPPLOTSIZPRCTXT

CREATE VIEW I_Mrpltsizprctxttemp AS
SELECT
  txt.disls AS MaterialLotSizingProcedure,
  txt.spras AS Language,
  txt.loslt AS MaterialLotSizingProcedureName
FROM t439t AS txt
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;