I_SchedulingDateType

DDL: I_SCHEDULINGDATETYPE Type: view_entity BASIC Package: BPS_VDM

Scheduling Date Type

I_SchedulingDateType is a Basic CDS View that provides data about "Scheduling Date Type" in SAP S/4HANA. It reads from 1 data source (bps_actydtcode) and exposes 2 fields with key field SchedulingDateType. It has 1 association to related views. Part of development package BPS_VDM.

Data Sources (1)

SourceAliasJoin Type
bps_actydtcode SchedulingDateType from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_SchedulingDateTypeText _Text $projection.SchedulingDateType = _Text.SchedulingDateType

Annotations (8)

NameValueLevelField
EndUserText.label Scheduling Date Type view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey SchedulingDateType view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY SchedulingDateType datetime_code
_Text _Text
@EndUserText.label: 'Scheduling Date Type'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations:true
@ObjectModel: {
    representativeKey: 'SchedulingDateType',
    usageType: {
      serviceQuality: #C,
      sizeCategory: #S,
      dataClass: #ORGANIZATIONAL
    }
}

define view entity I_SchedulingDateType
  as select from bps_actydtcode as SchedulingDateType
  association [0..*] to I_SchedulingDateTypeText as _Text on $projection.SchedulingDateType = _Text.SchedulingDateType
{
      @ObjectModel.text.association: '_Text'
      @Consumption.filter.hidden: true
      @Semantics.text: true
  key datetime_code as SchedulingDateType,

      @Consumption.filter.hidden: true
      _Text
}