P_FlocPrimaryLabel

DDL: P_FLOCPRIMARYLABEL Type: view COMPOSITE Package: ILOM

Functional Location Primary Label

P_FlocPrimaryLabel is a Composite CDS View that provides data about "Functional Location Primary Label" in SAP S/4HANA. It reads from 1 data source (I_FunclocationLabelInternal) and exposes 5 fields with key field FunctionalLocation. Part of development package ILOM.

Data Sources (1)

SourceAliasJoin Type
I_FunclocationLabelInternal I_FunclocationLabelInternal from

Annotations (5)

NameValueLevelField
VDM.private true view
VDM.viewType #COMPOSITE view
AbapCatalog.sqlViewName PFLOCPRLABEL view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY FunctionalLocation I_FunclocationLabelInternal FunctionalLocation Object ID
FunctionalLocLabelingSyst I_FunclocationLabelInternal FunctionalLocLabelingSyst Labeling system
FunctionalLocLabelIsActive I_FunclocationLabelInternal FunctionalLocLabelIsActive Active version
FunctionalLocationLabelName I_FunclocationLabelInternal FunctionalLocationLabelName Functional Loc.
FuncnlLocLabelIsPrimaryLabel I_FunclocationLabelInternal FuncnlLocLabelIsPrimaryLabel Primary

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 P_FlocPrimaryLabel.
-- 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.

CREATE VIEW P_FlocPrimaryLabel AS
SELECT
  I_FunclocationLabelInternal.FunctionalLocation AS FunctionalLocation,
  I_FunclocationLabelInternal.FunctionalLocLabelingSyst AS FunctionalLocLabelingSyst,
  I_FunclocationLabelInternal.FunctionalLocLabelIsActive AS FunctionalLocLabelIsActive,
  I_FunclocationLabelInternal.FunctionalLocationLabelName AS FunctionalLocationLabelName,
  I_FunclocationLabelInternal.FuncnlLocLabelIsPrimaryLabel AS FuncnlLocLabelIsPrimaryLabel
FROM I_FunclocationLabelInternal
;