I_ProofOfDeliveryStatus

DDL: I_PROOFOFDELIVERYSTATUS SQL: ISDPROFDELIVSTS Type: view BASIC

Proof of Delivery Status on Item Level

I_ProofOfDeliveryStatus is a Basic CDS View (Dimension) that provides data about "Proof of Delivery Status on Item Level" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field ProofOfDeliveryStatus. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ProofOfDeliveryStatusText _Text $projection.ProofOfDeliveryStatus = _Text.ProofOfDeliveryStatus

Annotations (14)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey ProofOfDeliveryStatus view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Proof of Delivery Status on Item Level view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled false view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ISDPROFDELIVSTS view
Metadata.ignorePropagatedAnnotations true view
Metadata.allowExtensions true view
ObjectModel.sapObjectNodeType.name ProofOfDeliveryStatus view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ProofOfDeliveryStatus
_Text _Text
@ClientHandling.algorithm: #SESSION_VARIABLE 
@ObjectModel.representativeKey: 'ProofOfDeliveryStatus'
@ObjectModel.usageType.dataClass: #META 
@ObjectModel.usageType.serviceQuality: #A 
@ObjectModel.usageType.sizeCategory: #S 
@EndUserText.label: 'Proof of Delivery Status on Item Level'
@Analytics: { dataCategory: #DIMENSION, dataExtraction.enabled: false }
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck:#NOT_REQUIRED
@AbapCatalog.sqlViewName: 'ISDPROFDELIVSTS'
@Metadata.ignorePropagatedAnnotations:true
@Metadata.allowExtensions: true
@ObjectModel.supportedCapabilities: [ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #ANALYTICAL_DIMENSION ]
@ObjectModel.modelingPattern: [ #ANALYTICAL_DIMENSION ]
@ObjectModel.sapObjectNodeType.name: 'ProofOfDeliveryStatus'

define view I_ProofOfDeliveryStatus 
as select from dd07l

association [0..*] to I_ProofOfDeliveryStatusText as _Text on $projection.ProofOfDeliveryStatus = _Text.ProofOfDeliveryStatus
{
    @ObjectModel.text.association: '_Text'
    key substring(dd07l.domvalue_l, 1, 1) as ProofOfDeliveryStatus,
    
    _Text
}
where (dd07l.domname = 'STATV') and (dd07l.as4local = 'A');  
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_PROOFOFDELIVERYSTATUSTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/