I_ProdnOrderOperationLongText

DDL: I_PRODNORDEROPERATIONLONGTEXT Type: view_entity COMPOSITE

Production Order Operation - Text

I_ProdnOrderOperationLongText is a Composite CDS View that provides data about "Production Order Operation - Text" in SAP S/4HANA. It reads from 2 data sources (I_MfgOrderOperationBasic, I_OrderOperationLongText) and exposes 11 fields with key fields OrderInternalID, OrderOperationInternalID, LongTextLanguage. It has 2 associations to related views.

Data Sources (2)

SourceAliasJoin Type
I_MfgOrderOperationBasic oper inner
I_OrderOperationLongText text from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_Language _LongTextLanguage $projection.LongTextLanguage = _LongTextLanguage.Language -- SOT relations
[1..1] I_ProductionOrder _ProductionOrderHeader $projection.ProductionOrder = _ProductionOrderHeader.ProductionOrder

Annotations (13)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #NOT_REQUIRED view
Analytics.technicalName IPRODNORDOPLTXT view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.representativeKey OrderOperationInternalID view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #COMPOSITE view
EndUserText.label Production Order Operation - Text view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY OrderInternalID I_MfgOrderOperationBasic OrderInternalBillOfOperations Order Internal Bill of Operations
KEY OrderOperationInternalID I_MfgOrderOperationBasic OrderIntBillOfOperationsItem Order Internal Bill of Operations Item
KEY LongTextLanguage
ProductionOrder
ProductionOrderOperation
OrderOperationText I_MfgOrderOperationBasic MfgOrderOperationText Description
OrderOperationLongText I_OrderOperationLongText OrderOperationLongText Long Text
_ProductionOrderOperation _ProductionOrderOperation
_ProductionOrderHeader _ProductionOrderHeader
_LongTextLanguage _LongTextLanguage
_OrderInternalID I_MfgOrderOperationBasic _OrderInternalID

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_ProdnOrderOperationLongText.
-- 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_ProdnOrderOperationLongText AS
SELECT
  oper.OrderInternalBillOfOperations AS OrderInternalID,
  oper.OrderIntBillOfOperationsItem AS OrderOperationInternalID,
  cast(oper.Language as pph_longtextlang preserving type) AS LongTextLanguage,
  cast(oper.ManufacturingOrder as vdm_manufacturingorder preserving type) AS ProductionOrder,
  cast(oper.ManufacturingOrderOperation_2 as vdm_prodnorderoperation preserving type) AS ProductionOrderOperation,
  oper.MfgOrderOperationText AS OrderOperationText,
  text.OrderOperationLongText AS OrderOperationLongText,
  oper._OrderInternalID AS _OrderInternalID
FROM I_OrderOperationLongText AS text
INNER JOIN I_MfgOrderOperationBasic AS oper ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_Language AS _LongTextLanguage ON LongTextLanguage = _LongTextLanguage.Language  -- association [1..1]
LEFT OUTER JOIN I_ProductionOrder AS _ProductionOrderHeader ON ProductionOrder = _ProductionOrderHeader.ProductionOrder  -- association [1..1]
;