I_ProductionLine

DDL: I_PRODUCTIONLINE SQL: IPPPRODNLINE Type: view_entity BASIC Package: VDM_PP_MD_WKC

Production Line

I_ProductionLine is a Basic CDS View (Dimension) that provides data about "Production Line" in SAP S/4HANA. It reads from 1 data source (I_WorkCenterBySemanticKey) and exposes 6 fields with key fields ProductionLine, Plant. Part of development package VDM_PP_MD_WKC.

Data Sources (1)

SourceAliasJoin Type
I_WorkCenterBySemanticKey I_WorkCenterBySemanticKey from

Annotations (13)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Metadata.allowExtensions true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey ProductionLine view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
EndUserText.label Production Line view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ProductionLine WorkCenter Work Center
KEY Plant Plant Valuation Area
ValidityStartDate ValidityStartDate Validity Start Date
ValidityEndDate ValidityEndDate ValidTo
_Plant _Plant
_WorkCenterTextBySemanticKey _WorkCenterTextBySemanticKey

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_ProductionLine.
-- 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: IPPPRODNLINE

CREATE VIEW I_ProductionLine AS
SELECT
  WorkCenter AS ProductionLine,
  Plant,
  ValidityStartDate,
  ValidityEndDate
FROM I_WorkCenterBySemanticKey
;