I_MaintNotifAssignOrderInput

DDL: I_MAINTNOTIFASSIGNORDERINPUT SQL: IMAINTNOTIFAORDI Type: view COMPOSITE

Maint Notification Assign Order Input

I_MaintNotifAssignOrderInput is a Composite CDS View that provides data about "Maint Notification Assign Order Input" in SAP S/4HANA. It reads from 1 data source (I_MaintenanceNotification) and exposes 4 fields with key field MaintenanceNotification.

Data Sources (1)

SourceAliasJoin Type
I_MaintenanceNotification I_MaintenanceNotification from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IMAINTNOTIFAORDI view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Maint Notification Assign Order Input view
VDM.viewType #COMPOSITE view
ObjectModel.representativeKey MaintenanceNotification view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled false view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XL view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY MaintenanceNotification MaintenanceNotification Notification
MaintenanceOrder MaintenanceOrder Maintenance Order
MaintenanceOrderDesc _MaintenanceOrder MaintenanceOrderDesc Description
_MaintenanceOrder _MaintenanceOrder

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_MaintNotifAssignOrderInput.
-- 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: IMAINTNOTIFAORDI

CREATE VIEW I_MaintNotifAssignOrderInput AS
SELECT
  MaintenanceNotification,
  MaintenanceOrder,
  _MaintenanceOrder.MaintenanceOrderDesc AS MaintenanceOrderDesc
FROM I_MaintenanceNotification
;