A_SuplrInvcSeldInbDeliveryNote

DDL: A_SUPLRINVCSELDINBDELIVERYNOTE SQL: ASISELDELNOT Type: view CONSUMPTION Package: ODATA_MM_IV_SI_API

SI Entered Delivery Notes

A_SuplrInvcSeldInbDeliveryNote is a Consumption CDS View that provides data about "SI Entered Delivery Notes" in SAP S/4HANA. It reads from 1 data source (I_SuplrInvcSeldInbDeliveryNote) and exposes 4 fields with key fields SupplierInvoice, FiscalYear, InboundDeliveryNote. It has 1 association to related views. Part of development package ODATA_MM_IV_SI_API.

Data Sources (1)

SourceAliasJoin Type
I_SuplrInvcSeldInbDeliveryNote I_SuplrInvcSeldInbDeliveryNote from

Associations (1)

CardinalityTargetAliasCondition
[1..1] A_SupplierInvoice _SupplierInvoice $projection.SupplierInvoice = _SupplierInvoice.SupplierInvoice and $projection.FiscalYear = _SupplierInvoice.FiscalYear

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName ASISELDELNOT view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label SI Entered Delivery Notes view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.createEnabled false view
ObjectModel.updateEnabled false view
ObjectModel.deleteEnabled false view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY SupplierInvoice SupplierInvoice
KEY FiscalYear FiscalYear
KEY InboundDeliveryNote InboundDeliveryNote
_SupplierInvoice _SupplierInvoice
@AbapCatalog.sqlViewName: 'ASISELDELNOT'
@VDM.viewType : #CONSUMPTION
@VDM.lifecycle.contract.type:#PUBLIC_REMOTE_API
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@AccessControl.authorizationCheck:#MANDATORY 
@AccessControl.personalData.blocking: #REQUIRED
@EndUserText.label: 'SI Entered Delivery Notes'
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: {
  createEnabled: false,
  updateEnabled: false,
  deleteEnabled: false
}

define view A_SuplrInvcSeldInbDeliveryNote
  as select from I_SuplrInvcSeldInbDeliveryNote  
  association [1..1] to A_SupplierInvoice       as _SupplierInvoice  on  $projection.SupplierInvoice = _SupplierInvoice.SupplierInvoice
                                                                     and $projection.FiscalYear      = _SupplierInvoice.FiscalYear
{
      @ObjectModel: { readOnly: true }
  key SupplierInvoice,
      @ObjectModel: { readOnly: true }
  key FiscalYear,
      @ObjectModel: { mandatory: true }
  key InboundDeliveryNote,
  
      /* Associations */
      @ObjectModel.association.type: [#TO_COMPOSITION_ROOT,#TO_COMPOSITION_PARENT]
      _SupplierInvoice
}