PRODCMPLNCLICRLVTSALESDOC
License Relevant Sales Document Items
PRODCMPLNCLICRLVTSALESDOC is a CDS View that provides data about "License Relevant Sales Document Items" in SAP S/4HANA. It reads from 1 data source (vbap) and exposes 4 fields with key fields SalesDocument, SalesDocumentItem.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| vbap | vbap | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PCLRSO | 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 Sales Document Items | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #XL | view |
@AbapCatalog.sqlViewName: 'PCLRSO'
@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 Sales Document Items'
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #XL
define view PRODCMPLNCLICRLVTSALESDOC
as select from vbap
join vbak on vbak.mandt = vbap.mandt and vbap.vbeln = vbak.vbeln
{
key vbap.vbeln as SalesDocument,
key vbap.posnr as SalesDocumentItem,
@Semantics.systemDate.createdAt: true
vbap.erdat as CreationDate,
cast( 1 as abap.int8 ) as NumberOfItems
}
where
vbak.vbtyp = 'A'
or vbak.vbtyp = 'B'
or vbak.vbtyp = 'C'
or vbak.vbtyp = 'I'
or vbak.vbtyp = 'G'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"VBAK",
"VBAP"
],
"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