I_ServiceEntrySheetNote
Service Entry Sheet Note
I_ServiceEntrySheetNote is a Composite CDS View that provides data about "Service Entry Sheet Note" in SAP S/4HANA. It reads from 2 data sources (I_NOTEBASIC, I_ServiceEntrySheet) and exposes 9 fields with key fields ServiceEntrySheet, NoteBasicUUID. Part of development package APPL_MM_PUR_SES_TR.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_NOTEBASIC | I_NOTEBASIC | inner |
| I_ServiceEntrySheet | ServiceEntrySheet | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Service Entry Sheet Note | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| AccessControl.authorizationCheck | #MANDATORY | view | |
| AccessControl.personalData.blocking | #REQUIRED | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MIXED | view |
Fields (9)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ServiceEntrySheet | I_ServiceEntrySheet | ServiceEntrySheet | |
| KEY | NoteBasicUUID | I_NOTEBASIC | NoteBasicUUID | |
| PurchasingOrganization | I_ServiceEntrySheet | PurchasingOrganization | ||
| PurchasingGroup | I_ServiceEntrySheet | PurchasingGroup | ||
| IsEndOfPurposeBlocked | I_ServiceEntrySheet | IsEndOfPurposeBlocked | ||
| NoteBasicObjectNodeType | I_NOTEBASIC | NoteBasicObjectNodeType | ||
| NoteBasicType | I_NOTEBASIC | NoteBasicType | ||
| NoteBasicLanguage | I_NOTEBASIC | NoteBasicLanguage | ||
| NoteBasicContent | I_NOTEBASIC | NoteBasicContent |
@EndUserText.label: 'Service Entry Sheet Note'
@Metadata.ignorePropagatedAnnotations: true
@AccessControl.authorizationCheck: #MANDATORY
@AccessControl.personalData.blocking: #REQUIRED
@VDM.viewType : #COMPOSITE
@ObjectModel.usageType:{
serviceQuality: #C,
sizeCategory: #L,
dataClass: #MIXED
}
define view entity I_ServiceEntrySheetNote
as select from I_ServiceEntrySheet as ServiceEntrySheet
inner join I_NOTEBASIC on ServiceEntrySheet.ServiceEntrySheet = I_NOTEBASIC.NoteBasicObject
{
key ServiceEntrySheet.ServiceEntrySheet,
key I_NOTEBASIC.NoteBasicUUID,
ServiceEntrySheet.PurchasingOrganization,
ServiceEntrySheet.PurchasingGroup,
@Semantics.booleanIndicator
ServiceEntrySheet.IsEndOfPurposeBlocked,
I_NOTEBASIC.NoteBasicObjectNodeType,
I_NOTEBASIC.NoteBasicType,
I_NOTEBASIC.NoteBasicLanguage,
I_NOTEBASIC.NoteBasicContent
}
where I_NOTEBASIC.NoteBasicObjectNodeType = '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