PRODCMPLNCLICRLVTDELIVDOC

DDL: PRODCMPLNCLICRLVTDELIVDOC SQL: PCLRLF Type: view

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)

SourceAliasJoin Type
lips lips from

Annotations (11)

NameValueLevelField
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

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY DeliveryDocument lips vbeln
KEY DeliveryDocumentItem lips posnr
CreationDate lips erdat
NumberOfItems
@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":""
}
}*/