I_GHOProdnNtwkLabel

DDL: I_GHOPRODNNTWKLABEL SQL: IGHOPNLABEL Type: view BASIC

Production Network Alternate Label

I_GHOProdnNtwkLabel is a Basic CDS View that provides data about "Production Network Alternate Label" in SAP S/4HANA. It reads from 1 data source (iflos) and exposes 9 fields with key fields ProductionNetworkID, AlternateLabelingSystem, FunctionalLocationLabelVersion.

Data Sources (1)

SourceAliasJoin Type
iflos iflos from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IGHOPNLABEL view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Production Network Alternate Label view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #MASTER view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY ProductionNetworkID tplnr Functional loc.
KEY AlternateLabelingSystem alkey Labeling system
KEY FunctionalLocationLabelVersion versn Version
FunctionalLocLabelIsActive actvs Active version
FunctionalLocationLabelName strno Functional Loc.
FuncLocationStructure tplkz Unused Field Length 3
FuncnlLocLabelIsPrimaryLabel prkey Primary
LabelIsReusable reuse Reusable
LastChangeDateTime labelchangeddatetime Time Stamp

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_GHOProdnNtwkLabel.
-- 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: IGHOPNLABEL

CREATE VIEW I_GHOProdnNtwkLabel AS
SELECT
  tplnr AS ProductionNetworkID,
  alkey AS AlternateLabelingSystem,
  versn AS FunctionalLocationLabelVersion,
  actvs AS FunctionalLocLabelIsActive,
  strno AS FunctionalLocationLabelName,
  tplkz AS FuncLocationStructure,
  prkey AS FuncnlLocLabelIsPrimaryLabel,
  reuse AS LabelIsReusable,
  labelchangeddatetime AS LastChangeDateTime
FROM iflos
;