R_ServiceEntrySheetNoteTP

DDL: R_SERVICEENTRYSHEETNOTETP Type: view_entity TRANSACTIONAL Package: RAP_MM_PUR_SES

Service Entry Sheet Note

R_ServiceEntrySheetNoteTP is a Transactional CDS View that provides data about "Service Entry Sheet Note" in SAP S/4HANA. It reads from 1 data source (I_ServiceEntrySheetNote) and exposes 10 fields with key fields ServiceEntrySheet, NoteBasicUUID. Part of development package RAP_MM_PUR_SES.

Data Sources (1)

SourceAliasJoin Type
I_ServiceEntrySheetNote I_ServiceEntrySheetNote from

Annotations (9)

NameValueLevelField
EndUserText.label Service Entry Sheet Note view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY ServiceEntrySheet ServiceEntrySheet
KEY NoteBasicUUID NoteBasicUUID
PurchasingOrganization PurchasingOrganization
PurchasingGroup PurchasingGroup
IsEndOfPurposeBlocked IsEndOfPurposeBlocked
NoteBasicObjectNodeType NoteBasicObjectNodeType
NoteBasicType NoteBasicType
NoteBasicLanguage NoteBasicLanguage
NoteBasicContent NoteBasicContent
_ServiceEntrySheet _ServiceEntrySheet
@AbapCatalog.viewEnhancementCategory: [#NONE]
@EndUserText.label: 'Service Entry Sheet Note'
@VDM.viewType: #TRANSACTIONAL
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@AccessControl.authorizationCheck: #MANDATORY
@AccessControl.personalData.blocking: #REQUIRED

@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #C,
  sizeCategory: #L,
  dataClass: #MIXED
}
define view entity R_ServiceEntrySheetNoteTP as select from I_ServiceEntrySheetNote

  association to parent R_ServiceEntrySheetTP     as _ServiceEntrySheet     on $projection.ServiceEntrySheet = _ServiceEntrySheet.ServiceEntrySheet
    
{
  key ServiceEntrySheet,
  key NoteBasicUUID,
      PurchasingOrganization,
      PurchasingGroup,
      @Semantics.booleanIndicator
      IsEndOfPurposeBlocked,
      NoteBasicObjectNodeType,
      NoteBasicType,
      NoteBasicLanguage,
      NoteBasicContent,
      
      _ServiceEntrySheet
}