I_MaintOrdOpAdditionalData

DDL: I_MAINTORDOPADDITIONALDATA SQL: IMAINTORDOPADD Type: view BASIC

Add Data of the Order Operation

I_MaintOrdOpAdditionalData is a Basic CDS View that provides data about "Add Data of the Order Operation" in SAP S/4HANA. It reads from 1 data source (afvu) and exposes 3 fields with key fields MaintOrderRoutingNumber, MaintenanceOrderRoutingNode.

Data Sources (1)

SourceAliasJoin Type
afvu afvu from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IMAINTORDOPADD view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Add Data of the Order Operation view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY MaintOrderRoutingNumber aufpl TaskList No.Ops
KEY MaintenanceOrderRoutingNode aplzl Plan No.f.Oper.
MaintenanceActivityType ilart_op MaintActivType

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_MaintOrdOpAdditionalData.
-- 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: IMAINTORDOPADD

CREATE VIEW I_MaintOrdOpAdditionalData AS
SELECT
  aufpl AS MaintOrderRoutingNumber,
  aplzl AS MaintenanceOrderRoutingNode,
  ilart_op AS MaintenanceActivityType
FROM afvu
;