A_ProdnRtgOpCtrlPrfl_2

DDL: A_PRODNRTGOPCTRLPRFL_2 Type: view_entity BASIC

Operation Control Profile

A_ProdnRtgOpCtrlPrfl_2 is a Basic CDS View that provides data about "Operation Control Profile" in SAP S/4HANA. It reads from 1 data source (I_OperationControlProfile) and exposes 3 fields with key field OperationControlProfile. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_OperationControlProfile I_OperationControlProfile from

Associations (1)

CardinalityTargetAliasCondition
[0..*] A_ProdnRtgOpCtrlPrflTxt_2 _Text $projection.OperationControlProfile = _Text.OperationControlProfile

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Operation Control Profile view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
Metadata.ignorePropagatedAnnotations true view
OData.entityType.name ProductionRoutingOpCtrlPrfl_Type view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY OperationControlProfile OperationControlProfile Control Key
OperationControlProfileName
_Text _Text

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 A_ProdnRtgOpCtrlPrfl_2.
-- 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 A_ProdnRtgOpCtrlPrfl_2 AS
SELECT
  OperationControlProfile,
  _Text[1:Language=$session.system_language].OperationControlProfileName AS OperationControlProfileName
FROM I_OperationControlProfile
LEFT OUTER JOIN A_ProdnRtgOpCtrlPrflTxt_2 AS _Text ON OperationControlProfile = _Text.OperationControlProfile  -- association [0..*]
;