I_ServiceEntrySheetAPI01
Service Entry Sheet
I_ServiceEntrySheetAPI01 is a Basic CDS View that provides data about "Service Entry Sheet" in SAP S/4HANA. It reads from 1 data source (I_ServiceEntrySheetBasic) and exposes 23 fields with key field ServiceEntrySheet. It has 2 associations to related views. Part of development package VDM_MM_PUR_SES_PUBLIC.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ServiceEntrySheetBasic | I_ServiceEntrySheetBasic | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..*] | I_ServiceEntrySheetItemAPI01 | _ServiceEntrySheetItem | $projection.ServiceEntrySheet = _ServiceEntrySheetItem.ServiceEntrySheet |
| [0..1] | E_ServiceEntrySheet | _ServiceEntrySheetExtension | $projection.ServiceEntrySheet = _ServiceEntrySheetExtension.ServiceEntrySheet |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.sqlViewName | IMMSESAPI01 | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Service Entry Sheet | 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 (23)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ServiceEntrySheet | ServiceEntrySheet | ||
| ServiceEntrySheetName | ServiceEntrySheetName | |||
| Supplier | Supplier | |||
| PurchaseOrder | PurchaseOrder | |||
| IsDeleted | IsDeleted | |||
| ApprovalStatus | ApprovalStatus | |||
| ApprovalDateTime | ApprovalDateTime | |||
| ResponsiblePerson | ResponsiblePerson | |||
| OriginObjectType | OriginObjectType | |||
| Currency | Currency | |||
| MaterialDocument | MaterialDocument | |||
| MaterialDocumentYear | MaterialDocumentYear | |||
| PurgDocExternalSystem | PurgDocExternalSystem | |||
| PurgDocExternalReference | PurgDocExternalReference | |||
| PostingDate | PostingDate | |||
| PurchasingOrganization | PurchasingOrganization | |||
| PurchasingGroup | PurchasingGroup | |||
| IsEndOfPurposeBlocked | IsEndOfPurposeBlocked | |||
| CreationDateTime | CreationDateTime | |||
| CreatedByUser | CreatedByUser | |||
| LastChangeDateTime | LastChangeDateTime | |||
| LastChangedByUser | LastChangeUser | |||
| _ServiceEntrySheetItem | _ServiceEntrySheetItem |
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.sqlViewName: 'IMMSESAPI01'
@AbapCatalog.compiler.compareFilter: true
@VDM.viewType: #BASIC
@EndUserText.label: 'Service Entry Sheet'
@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_ServiceEntrySheetAPI01
as select from I_ServiceEntrySheetBasic
association [1..*] to I_ServiceEntrySheetItemAPI01 as _ServiceEntrySheetItem on $projection.ServiceEntrySheet = _ServiceEntrySheetItem.ServiceEntrySheet
association [0..1] to E_ServiceEntrySheet as _ServiceEntrySheetExtension on $projection.ServiceEntrySheet = _ServiceEntrySheetExtension.ServiceEntrySheet
{
key ServiceEntrySheet,
ServiceEntrySheetName,
Supplier,
PurchaseOrder,
IsDeleted,
ApprovalStatus,
ApprovalDateTime,
ResponsiblePerson,
OriginObjectType,
Currency,
MaterialDocument,
MaterialDocumentYear,
PurgDocExternalSystem,
PurgDocExternalReference,
PostingDate,
// Fields for Authorization Checks
PurchasingOrganization,
PurchasingGroup,
IsEndOfPurposeBlocked,
// Admin Data
CreationDateTime,
CreatedByUser,
LastChangeDateTime,
LastChangeUser as LastChangedByUser,
// Associations
_ServiceEntrySheetItem
}
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