I_DigitalVehScheduleLine

DDL: I_DIGITALVEHSCHEDULELINE Type: view_entity COMPOSITE Package: ISAUTO_VLC_LEAN

Schedule line delivery date for SO item

I_DigitalVehScheduleLine is a Composite CDS View that provides data about "Schedule line delivery date for SO item" in SAP S/4HANA. It reads from 1 data source (I_SalesDocumentScheduleLine) and exposes 3 fields with key fields SalesDocument, SalesDocumentItem. Part of development package ISAUTO_VLC_LEAN.

Data Sources (1)

SourceAliasJoin Type
I_SalesDocumentScheduleLine I_SalesDocumentScheduleLine from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Schedule line delivery date for SO item view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #COMPOSITE view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY SalesDocument SalesDocument
KEY SalesDocumentItem SalesDocumentItem
ScheduleLine
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@AbapCatalog.viewEnhancementCategory: [#NONE]
@EndUserText.label: 'Schedule line delivery date for SO item'
@ObjectModel: {
    usageType: {
        sizeCategory: #XXL,
        serviceQuality: #C,
        dataClass:#MIXED
    },
    semanticKey: ['SalesDocument','SalesDocumentItem'] }
@Metadata.ignorePropagatedAnnotations: true
@VDM.viewType: #COMPOSITE
@AccessControl.personalData.blocking: #BLOCKED_DATA_EXCLUDED

define view entity I_DigitalVehScheduleLine as 

select from I_SalesDocumentScheduleLine {

 key SalesDocument,
 key SalesDocumentItem,
 min(ScheduleLine) as ScheduleLine
}
where ConfirmedDeliveryDate != '00000000'
and IsConfirmedDelivSchedLine = 'X'
group by SalesDocument, SalesDocumentItem