I_ServiceEntrySheetItemAPI01
Service Entry Sheet Item
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. Part of development package VDM_MM_PUR_SES_PUBLIC.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ServiceEntrySheetItemBasic | I_ServiceEntrySheetItemBasic | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [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)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ServiceEntrySheet | ServiceEntrySheet | ||
| KEY | ServiceEntrySheetItem | ServiceEntrySheetItem | ||
| PurchaseOrder | PurchaseOrder | |||
| PurchaseOrderItem | PurchaseOrderItem | |||
| IsDeleted | IsDeleted | |||
| Service | Service | |||
| ServiceEntrySheetItemDesc | ServiceEntrySheetItemDesc | |||
| ServicePerformer | ServicePerformer | |||
| AccountAssignmentCategory | AccountAssignmentCategory | |||
| MultipleAcctAssgmtDistribution | MultipleAcctAssgmtDistribution | |||
| WorkItem | WorkItem | |||
| ConfirmedQuantity | ConfirmedQuantity | |||
| QuantityUnit | QuantityUnit | |||
| ServicePerformanceDate | ServicePerformanceDate | |||
| OriginObject | OriginObject | |||
| NetAmount | NetAmount | |||
| NetPriceAmount | NetPriceAmount | |||
| Currency | _ServiceEntrySheet | Currency | ||
| PurgDocItemExternalReference | PurgDocItemExternalReference | |||
| PurchaseContract | PurchaseContract | |||
| PurchaseContractItem | PurchaseContractItem | |||
| PurchasingOrganization | PurchasingOrganization | |||
| PurchasingGroup | PurchasingGroup | |||
| Plant | Plant | |||
| IsEndOfPurposeBlocked | IsEndOfPurposeBlocked | |||
| CreationDateTime | CreationDateTime | |||
| CreatedByUser | CreatedByUser | |||
| LastChangeDateTime | LastChangeDateTime | |||
| LastChangedByUser | LastChangeUser | |||
| _ServiceEntrySheet | _ServiceEntrySheet |
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.sqlViewName: 'IMMSESITAPI01'
@AbapCatalog.compiler.compareFilter: true
@VDM.viewType: #BASIC
@EndUserText.label: 'Service Entry Sheet Item'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@AccessControl.authorizationCheck: #MANDATORY
@AccessControl.personalData.blocking: #REQUIRED
@Metadata.ignorePropagatedAnnotations:true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@ObjectModel.supportedCapabilities: [#SQL_DATA_SOURCE]
define view I_ServiceEntrySheetItemAPI01
as select from I_ServiceEntrySheetItemBasic
association [1..1] to I_ServiceEntrySheetAPI01 as _ServiceEntrySheet on $projection.ServiceEntrySheet = _ServiceEntrySheet.ServiceEntrySheet
association [0..1] to E_ServiceEntrySheetItem as _ServiceEntrySheetItmExtension on $projection.ServiceEntrySheet = _ServiceEntrySheetItmExtension.ServiceEntrySheet
and $projection.ServiceEntrySheetItem = _ServiceEntrySheetItmExtension.ServiceEntrySheetItem
{
key ServiceEntrySheet,
key ServiceEntrySheetItem,
PurchaseOrder,
PurchaseOrderItem,
IsDeleted,
Service,
ServiceEntrySheetItemDesc,
ServicePerformer,
AccountAssignmentCategory,
MultipleAcctAssgmtDistribution,
WorkItem,
@Semantics.quantity.unitOfMeasure: 'QuantityUnit'
ConfirmedQuantity,
@Semantics.unitOfMeasure: true
QuantityUnit,
ServicePerformanceDate,
OriginObject,
@Semantics.amount.currencyCode: 'Currency'
NetAmount,
@Semantics.amount.currencyCode: 'Currency'
NetPriceAmount,
@Semantics.currencyCode:true
_ServiceEntrySheet.Currency as Currency,
PurgDocItemExternalReference,
PurchaseContract,
PurchaseContractItem,
// Fields for Authorization Checks
PurchasingOrganization,
PurchasingGroup,
Plant,
IsEndOfPurposeBlocked,
// Admin Data
CreationDateTime,
CreatedByUser,
LastChangeDateTime,
LastChangeUser as LastChangedByUser,
// Associations
_ServiceEntrySheet
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA