C_ServiceEntrySheetDEX

DDL: C_SERVICEENTRYSHEETDEX SQL: CMMSERVENTSHEET Type: view CONSUMPTION Package: ODATA_MM_ANALYTICS

Data Extraction for ServiceEntrySheet

C_ServiceEntrySheetDEX (Consumption)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Public Edition with built-in and side-by-side extension capabilities.

Service Entry Sheet · Sourcing & Procurement

C_ServiceEntrySheetDEX is a Consumption CDS View (Fact) that provides data about "Data Extraction for ServiceEntrySheet" in SAP S/4HANA. It reads from 1 data source (I_ServiceEntrySheetAPI01) and exposes 28 fields with key field ServiceEntrySheet. It has 6 associations to related views. Part of development package ODATA_MM_ANALYTICS.

SAP API Hub

CategoryConsumption
StateC1
Line of BusinessSourcing & Procurement
Application ComponentMM-PUR-ANA-2CL
CapabilitiesData Source for Data Extraction
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageSourcing and Procurement for SAP S/4HANA Cloud Public Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
I_ServiceEntrySheetAPI01 I_ServiceEntrySheetAPI01 from

Associations (6)

CardinalityTargetAliasCondition
[1..*] C_ServiceEntrySheetItemDEX _ServiceEntrySheetItemDEX $projection.ServiceEntrySheet = _ServiceEntrySheetItemDEX.ServiceEntrySheet
[1..1] I_Supplier _Supplier $projection.Supplier = _Supplier.Supplier
[1..1] C_PurchaseOrderDEX _PurchaseOrder $projection.PurchaseOrder = _PurchaseOrder.PurchaseOrder
[1..1] I_Currency _DocumentCurrency $projection.Currency = _DocumentCurrency.Currency
[1..1] I_PurchasingOrganization _PurchasingOrganization $projection.PurchasingOrganization = _PurchasingOrganization.PurchasingOrganization
[1..1] I_PurchasingGroup _PurchasingGroup $projection.PurchasingGroup = _PurchasingGroup.PurchasingGroup

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName CMMSERVENTSHEET view
EndUserText.label Data Extraction for ServiceEntrySheet view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #D view
VDM.viewType #CONSUMPTION view
Metadata.ignorePropagatedAnnotations true view
Analytics.dataCategory #FACT view
Analytics.dataExtraction.enabled true view
ObjectModel.sapObjectNodeType.name ServiceEntrySheet view
ObjectModel.modelingPattern #ANALYTICAL_FACT view

Fields (28)

KeyFieldSource TableSource FieldDescription
KEY ServiceEntrySheet ServiceEntrySheet Service Entry Sheet
ServiceEntrySheetName ServiceEntrySheetName Name of Service Entry Sheet
Supplier Supplier Account Number of Supplier
PurchaseOrder PurchaseOrder Reference Purchase Order
IsDeleted IsDeleted Deletion Indicator in Purchasing Document
ApprovalStatus ApprovalStatus Document Status for Service Entry Sheet
ApprovalDateTime ApprovalDateTime Date and Time of SES Approval (UTC)
ResponsiblePerson ResponsiblePerson Personnel Number
Currency Currency Valuation Crcy
MaterialDocument MaterialDocument Number of Material Document
MaterialDocumentYear MaterialDocumentYear Material Document Year
PurgDocExternalSystem PurgDocExternalSystem ID of External Reference System
PurgDocExternalReference PurgDocExternalReference External Reference ID
PostingDate PostingDate Posting Date for GR
PurchasingOrganization PurchasingOrganization Purchasing Organization
PurchasingGroup PurchasingGroup Purchasing Group
IsEndOfPurposeBlocked IsEndOfPurposeBlocked Business Purpose Completed
CreationDateTime CreationDateTime UTC Time Stamp in Long Form (YYYYMMDDhhmmssmmmuuun)
CreatedByUser CreatedByUser User Name
LastChangeDateTime LastChangeDateTime UTC Time Stamp in Long Form (YYYYMMDDhhmmssmmmuuun)
LastChangedByUser LastChangedByUser User Name
_Supplier _Supplier
_PurchaseOrder _PurchaseOrder
_DocumentCurrency _DocumentCurrency
_PurchasingOrganization _PurchasingOrganization
_PurchasingGroup _PurchasingGroup
_ServiceEntrySheetItemDEX _ServiceEntrySheetItemDEX
_ServiceEntrySheetItem _ServiceEntrySheetItem

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 C_ServiceEntrySheetDEX.
-- 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: CMMSERVENTSHEET

CREATE VIEW C_ServiceEntrySheetDEX AS
SELECT
  ServiceEntrySheet,
  ServiceEntrySheetName,
  Supplier,
  PurchaseOrder,
  IsDeleted,
  ApprovalStatus,
  ApprovalDateTime,
  ResponsiblePerson,
  Currency,
  MaterialDocument,
  MaterialDocumentYear,
  PurgDocExternalSystem,
  PurgDocExternalReference,
  PostingDate,
  PurchasingOrganization,
  PurchasingGroup,
  IsEndOfPurposeBlocked,
  CreationDateTime,
  CreatedByUser,
  LastChangeDateTime,
  LastChangedByUser
FROM I_ServiceEntrySheetAPI01
LEFT OUTER JOIN C_ServiceEntrySheetItemDEX AS _ServiceEntrySheetItemDEX ON ServiceEntrySheet = _ServiceEntrySheetItemDEX.ServiceEntrySheet  -- association [1..*]
LEFT OUTER JOIN I_Supplier AS _Supplier ON Supplier = _Supplier.Supplier  -- association [1..1]
LEFT OUTER JOIN C_PurchaseOrderDEX AS _PurchaseOrder ON PurchaseOrder = _PurchaseOrder.PurchaseOrder  -- association [1..1]
LEFT OUTER JOIN I_Currency AS _DocumentCurrency ON Currency = _DocumentCurrency.Currency  -- association [1..1]
LEFT OUTER JOIN I_PurchasingOrganization AS _PurchasingOrganization ON PurchasingOrganization = _PurchasingOrganization.PurchasingOrganization  -- association [1..1]
LEFT OUTER JOIN I_PurchasingGroup AS _PurchasingGroup ON PurchasingGroup = _PurchasingGroup.PurchasingGroup  -- association [1..1]
;