A_SuplrInvcSeldInbDeliveryNote
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)
| Source | Alias | Join Type |
|---|---|---|
| I_SuplrInvcSeldInbDeliveryNote | I_SuplrInvcSeldInbDeliveryNote | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | A_SupplierInvoice | _SupplierInvoice | $projection.SupplierInvoice = _SupplierInvoice.SupplierInvoice and $projection.FiscalYear = _SupplierInvoice.FiscalYear |
Annotations (16)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
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