I_SuplrInvcSeldDelivNoteAPI01
Delivery Note Ref for Supplier Invoice
I_SuplrInvcSeldDelivNoteAPI01 is a Basic CDS View that provides data about "Delivery Note Ref for Supplier Invoice" 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.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_SuplrInvcSeldInbDeliveryNote | I_SuplrInvcSeldInbDeliveryNote | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_SupplierInvoiceAPI01 | _SupplierInvoiceAPI01 | $projection.SupplierInvoice = _SupplierInvoiceAPI01.SupplierInvoice and $projection.FiscalYear = _SupplierInvoiceAPI01.FiscalYear |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.sqlViewName | ISISELDELNOTAPI | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #MANDATORY | view | |
| EndUserText.label | Delivery Note Ref for Supplier Invoice | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.modelingPattern | #NONE | view | |
| AccessControl.personalData.blocking | #BLOCKED_DATA_EXCLUDED | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SupplierInvoice | I_SuplrInvcSeldInbDeliveryNote | SupplierInvoice | |
| KEY | FiscalYear | I_SuplrInvcSeldInbDeliveryNote | FiscalYear | |
| KEY | InboundDeliveryNote | I_SuplrInvcSeldInbDeliveryNote | InboundDeliveryNote | |
| _SupplierInvoiceAPI01 | _SupplierInvoiceAPI01 |
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.sqlViewName: 'ISISELDELNOTAPI'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Delivery Note Ref for Supplier Invoice'
@VDM.viewType : #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.supportedCapabilities: [ #CDS_MODELING_DATA_SOURCE, #SQL_DATA_SOURCE ]
@ObjectModel.modelingPattern: #NONE
@AccessControl.personalData.blocking: #BLOCKED_DATA_EXCLUDED
@Metadata.ignorePropagatedAnnotations:true
define view I_SuplrInvcSeldDelivNoteAPI01
as select from I_SuplrInvcSeldInbDeliveryNote
association [1..1] to I_SupplierInvoiceAPI01 as _SupplierInvoiceAPI01 on $projection.SupplierInvoice = _SupplierInvoiceAPI01.SupplierInvoice
and $projection.FiscalYear = _SupplierInvoiceAPI01.FiscalYear
{
key I_SuplrInvcSeldInbDeliveryNote.SupplierInvoice,
key I_SuplrInvcSeldInbDeliveryNote.FiscalYear,
key I_SuplrInvcSeldInbDeliveryNote.InboundDeliveryNote,
/* Associations */
_SupplierInvoiceAPI01
}
where
( _SupplierInvoiceAPI01.SupplierInvoice is not null and _SupplierInvoiceAPI01.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