I_DueDateStatus

DDL: I_DUEDATESTATUS SQL: ISOFDUDTESTS Type: view BASIC Package: VDM_SD_SOF

Due Date Status

I_DueDateStatus is a Basic CDS View (Dimension) that provides data about "Due Date Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field DueDateStatus. It has 1 association to related views. Part of development package VDM_SD_SOF.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_DueDateStatusText _Text $projection.DueDateStatus = _Text.DueDateStatus

Annotations (11)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey DueDateStatus view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Due Date Status view
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
Search.searchable true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ISOFDUDTESTS view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY DueDateStatus
_Text _Text
@ClientHandling.algorithm: #SESSION_VARIABLE //Inserted by VDM CDS Suite Plugin

@ObjectModel.representativeKey: 'DueDateStatus'
@ObjectModel.usageType.dataClass: #META 
@ObjectModel.usageType.serviceQuality: #A 
@ObjectModel.usageType.sizeCategory: #S 
//Commented by VDM CDS Suite Plugin:@ObjectModel.representativeKey: 'DueDateStatus'

@EndUserText.label: 'Due Date Status'
@Analytics.dataCategory: #DIMENSION
@VDM.viewType: #BASIC
@Search.searchable: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'ISOFDUDTESTS'

define view I_DueDateStatus 
as select from dd07l

association [0..*] to I_DueDateStatusText as _Text on $projection.DueDateStatus = _Text.DueDateStatus
{
    @ObjectModel.text.association: '_Text'
    key SUBSTRING(dd07l.domvalue_l, 1, 1) as DueDateStatus,
    
    //Associations

    @Search.defaultSearchElement: true
    _Text
}
where (dd07l.domname = 'DUE_DATE_STATUS') and (dd07l.as4local = 'A');