PRODCMPLNCLICRLVTDELIVDOC
License Relevant Outbound Delivery Items
PRODCMPLNCLICRLVTDELIVDOC is a CDS View that provides data about "License Relevant Outbound Delivery Items" in SAP S/4HANA. It reads from 1 data source (lips) and exposes 4 fields with key fields DeliveryDocument, DeliveryDocumentItem.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| lips | lips | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PCLRLF | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_ALLOWED | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| ClientHandling.type | #INHERITED | view | |
| ClientHandling.algorithm | #AUTOMATED | view | |
| EndUserText.label | License Relevant Outbound Delivery Items | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #XL | view |
@AbapCatalog.sqlViewName: 'PCLRLF'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_ALLOWED
@AccessControl.personalData.blocking: #NOT_REQUIRED
@ClientHandling.type: #INHERITED
@ClientHandling.algorithm: #AUTOMATED
//@VDM.private: true
//@VDM.viewType: #BASIC
@EndUserText.label: 'License Relevant Outbound Delivery Items'
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #XL
define view PRODCMPLNCLICRLVTDELIVDOC
as select from lips
join likp on likp.mandt = lips.mandt
and lips.vbeln = likp.vbeln
{
key lips.vbeln as DeliveryDocument,
key lips.posnr as DeliveryDocumentItem,
lips.erdat as CreationDate,
cast( 1 as abap.int8 ) as NumberOfItems
}
where
likp.vbtyp = 'J'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"LIKP",
"LIPS"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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