I_OIL_LocationProfitCenter

DDL: I_OIL_LOCATIONPROFITCENTER Type: view_entity BASIC

Business Location Profit Center

I_OIL_LocationProfitCenter is a Basic CDS View that provides data about "Business Location Profit Center" in SAP S/4HANA. It reads from 1 data source (oifocepc) and exposes 16 fields with key fields BusinessLocationIdentifier, ObjectSequence. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
oifocepc oifocepc from

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_OIL_BusinessLocation _BusinessLocation _BusinessLocation.BusinessLocationIdentifier = $projection.BusinessLocationIdentifier
[0..1] I_ControllingArea _ControllingArea _ControllingArea.ControllingArea = $projection.ControllingArea
[0..*] I_ProfitCenter _ProfitCenter _ProfitCenter.ProfitCenter = $projection.ProfitCenter and _ProfitCenter.ControllingArea = $projection.ControllingArea

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Business Location Profit Center view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #BASIC view

Fields (16)

KeyFieldSource TableSource FieldDescription
KEY BusinessLocationIdentifier pblnr Location ID
KEY ObjectSequence objpos Position in a repetition group
CreationDate erdat Entered On
CreationTime erzeit Time created
CreatedByUser ernam User Name
LastChangeDate aedat Obsolete
LastChangeTime aezeit Time changed
LastChangedByUser aenam User Name
EntityIsBlocked bloind Single-Character Flag
EntityIsMarkedForDeletion delind Will be Deleted
ControllingArea kokrs Org. Value
ProfitCenter prctr Profit Centers
ProfitCenterValidityEndDate datbi Validity period
_BusinessLocation _BusinessLocation
_ControllingArea _ControllingArea
_ProfitCenter _ProfitCenter

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_OIL_LocationProfitCenter.
-- 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 I_OIL_LocationProfitCenter AS
SELECT
  pblnr AS BusinessLocationIdentifier,
  objpos AS ObjectSequence,
  erdat AS CreationDate,
  erzeit AS CreationTime,
  ernam AS CreatedByUser,
  aedat AS LastChangeDate,
  aezeit AS LastChangeTime,
  aenam AS LastChangedByUser,
  bloind AS EntityIsBlocked,
  delind AS EntityIsMarkedForDeletion,
  kokrs AS ControllingArea,
  prctr AS ProfitCenter,
  datbi AS ProfitCenterValidityEndDate
FROM oifocepc
LEFT OUTER JOIN I_OIL_BusinessLocation AS _BusinessLocation ON _BusinessLocation.BusinessLocationIdentifier = BusinessLocationIdentifier  -- association [0..1]
LEFT OUTER JOIN I_ControllingArea AS _ControllingArea ON _ControllingArea.ControllingArea = ControllingArea  -- association [0..1]
LEFT OUTER JOIN I_ProfitCenter AS _ProfitCenter ON _ProfitCenter.ProfitCenter = ProfitCenter AND _ProfitCenter.ControllingArea = ControllingArea  -- association [0..*]
;