I_ServiceEntrySheetItemAPI01

DDL: I_SERVICEENTRYSHEETITEMAPI01 SQL: IMMSESITAPI01 Type: view BASIC

Service Entry Sheet Item

I_ServiceEntrySheetItemAPI01 (Basic)

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

Sourcing & Procurement

I_ServiceEntrySheetItemAPI01 is a Basic CDS View that provides data about "Service Entry Sheet Item" in SAP S/4HANA. It reads from 1 data source (I_ServiceEntrySheetItemBasic) and exposes 30 fields with key fields ServiceEntrySheet, ServiceEntrySheetItem. It has 2 associations to related views.

SAP API Hub

StateC1
Line of BusinessSourcing & Procurement
Application ComponentMM-PUR-SVC-SES
CapabilitiesData Source in SQL Select
PackageSourcing & Procurement for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view provides the prerequisites for answering questions about service entry sheets for lean services at item level, such as:</p> <ul> <li><p>What is the spend volume for services in a given period?</p></li> <li><p>Which services (product master data) have been recorded?</p></li> <li><p>Which service performer has provided the ordered services?</p></li> <li><p>Which amounts have been recorded for which account assignment categories?</p></li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
I_ServiceEntrySheetItemBasic I_ServiceEntrySheetItemBasic from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_ServiceEntrySheetAPI01 _ServiceEntrySheet $projection.ServiceEntrySheet = _ServiceEntrySheet.ServiceEntrySheet
[0..1] E_ServiceEntrySheetItem _ServiceEntrySheetItmExtension $projection.ServiceEntrySheet = _ServiceEntrySheetItmExtension.ServiceEntrySheet and $projection.ServiceEntrySheetItem = _ServiceEntrySheetItmExtension.ServiceEntrySheetItem

Annotations (12)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName IMMSESITAPI01 view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
EndUserText.label Service Entry Sheet Item view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #REQUIRED view
Metadata.ignorePropagatedAnnotations true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view

Fields (30)

KeyFieldSource TableSource FieldDescription
KEY ServiceEntrySheet ServiceEntrySheet Service Entry Sheet
KEY ServiceEntrySheetItem ServiceEntrySheetItem Item Number of Service Entry Sheet
PurchaseOrder PurchaseOrder Reference Purchase Order
PurchaseOrderItem PurchaseOrderItem Referenced Purchase Order Item
IsDeleted IsDeleted Deletion Indicator in Purchasing Document
Service Service Service Type
ServiceEntrySheetItemDesc ServiceEntrySheetItemDesc Item Description for Service Entry Sheet
ServicePerformer ServicePerformer Service Performer
AccountAssignmentCategory AccountAssignmentCategory Account Assignment Category
MultipleAcctAssgmtDistribution MultipleAcctAssgmtDistribution Distribution Indicator for Multiple Account Assignment
WorkItem WorkItem Work Item ID
ConfirmedQuantity ConfirmedQuantity Quantity in UnE
QuantityUnit QuantityUnit Unit of Measure for Service Entry Statement
ServicePerformanceDate ServicePerformanceDate Date of Service Performance
OriginObject OriginObject External Reference Document
NetAmount NetAmount Stated Amount
NetPriceAmount NetPriceAmount Price per Unit for an SES Item
Currency _ServiceEntrySheet Currency Valuation Crcy
PurgDocItemExternalReference PurgDocItemExternalReference External Reference ID
PurchaseContract PurchaseContract Purchase Contract for Enhanced Limit
PurchaseContractItem PurchaseContractItem Purchase Contract Item
PurchasingOrganization PurchasingOrganization Purchasing Organization
PurchasingGroup PurchasingGroup Purchasing Group
Plant Plant Valuation Area
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 LastChangeUser User Name
_ServiceEntrySheet _ServiceEntrySheet

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_ServiceEntrySheetItemAPI01.
-- 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: IMMSESITAPI01

CREATE VIEW I_ServiceEntrySheetItemAPI01 AS
SELECT
  ServiceEntrySheet,
  ServiceEntrySheetItem,
  PurchaseOrder,
  PurchaseOrderItem,
  IsDeleted,
  Service,
  ServiceEntrySheetItemDesc,
  ServicePerformer,
  AccountAssignmentCategory,
  MultipleAcctAssgmtDistribution,
  WorkItem,
  ConfirmedQuantity,
  QuantityUnit,
  ServicePerformanceDate,
  OriginObject,
  NetAmount,
  NetPriceAmount,
  _ServiceEntrySheet.Currency AS Currency,
  PurgDocItemExternalReference,
  PurchaseContract,
  PurchaseContractItem,
  PurchasingOrganization,
  PurchasingGroup,
  Plant,
  IsEndOfPurposeBlocked,
  CreationDateTime,
  CreatedByUser,
  LastChangeDateTime,
  LastChangeUser AS LastChangedByUser
FROM I_ServiceEntrySheetItemBasic
LEFT OUTER JOIN I_ServiceEntrySheetAPI01 AS _ServiceEntrySheet ON ServiceEntrySheet = _ServiceEntrySheet.ServiceEntrySheet  -- association [1..1]
LEFT OUTER JOIN E_ServiceEntrySheetItem AS _ServiceEntrySheetItmExtension ON ServiceEntrySheet = _ServiceEntrySheetItmExtension.ServiceEntrySheet AND ServiceEntrySheetItem = _ServiceEntrySheetItmExtension.ServiceEntrySheetItem  -- association [0..1]
;