I_MaintOrderServicePackageItem

DDL: I_MAINTORDERSERVICEPACKAGEITEM SQL: IMNTORDSRVPCKITM Type: view BASIC

Service Package Items in Maint. Order

I_MaintOrderServicePackageItem is a Basic CDS View that provides data about "Service Package Items in Maint. Order" in SAP S/4HANA. It reads from 1 data source (esll) and exposes 3 fields with key fields MMServicePackage, MMServicePackageLine.

Data Sources (1)

SourceAliasJoin Type
esll esll from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IMNTORDSRVPCKITM view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
ClientHandling.type #CLIENT_DEPENDENT view
EndUserText.label Service Package Items in Maint. Order view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY MMServicePackage packno Package number
KEY MMServicePackageLine introw Service line
ServiceName ktext1 Short 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 I_MaintOrderServicePackageItem.
-- 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: IMNTORDSRVPCKITM

CREATE VIEW I_MaintOrderServicePackageItem AS
SELECT
  packno AS MMServicePackage,
  introw AS MMServicePackageLine,
  ktext1 AS ServiceName
FROM esll
;