I_TranspCalculationDateTypeTxt

DDL: I_TRANSPCALCULATIONDATETYPETXT Type: view BASIC

Transportation Calculation Date Type Txt

I_TranspCalculationDateTypeTxt is a Basic CDS View that provides data about "Transportation Calculation Date Type Txt" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields TranspCalculationDateType, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_TranspCalculationDateType _TranspCalculationDateType $projection.TranspCalculationDateType = _TranspCalculationDateType.TranspCalculationDateType
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (13)

NameValueLevelField
EndUserText.label Transportation Calculation Date Type Txt view
ObjectModel.representativeKey TranspCalculationDateType view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #NONE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName ITCALCDATETYPTXT view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY TranspCalculationDateType domvalue_l
KEY Language ddlanguage
TranspCalculationDateTypeDesc ddtext
_TranspCalculationDateType _TranspCalculationDateType
_Language _Language
@EndUserText:   {label:              'Transportation Calculation Date Type Txt'}
@ObjectModel:   {representativeKey:  'TranspCalculationDateType',
                 dataCategory:       #TEXT,
                 usageType:          {serviceQuality: #A,
                                      sizeCategory:   #S,
                                      dataClass:      #CUSTOMIZING}}
@VDM:           {viewType:           #BASIC,
                  lifecycle.contract.type: #NONE }
@AbapCatalog:   {compiler:           {compareFilter: true},
                 sqlViewName:        'ITCALCDATETYPTXT',
                 preserveKey: true }
@AccessControl: {authorizationCheck: #NOT_REQUIRED}
@ClientHandling.algorithm:           #SESSION_VARIABLE

define view I_TranspCalculationDateTypeTxt
  as select from dd07t
  association [0..1] to I_TranspCalculationDateType as _TranspCalculationDateType on $projection.TranspCalculationDateType = _TranspCalculationDateType.TranspCalculationDateType
  association [0..1] to I_Language                  as _Language                  on $projection.Language = _Language.Language
{
  key domvalue_l                                                                 as TranspCalculationDateType,
      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key ddlanguage                                                                 as Language,
      @Semantics.text: true
      ddtext                                                                     as TranspCalculationDateTypeDesc,

      /* Associations */
      _TranspCalculationDateType,
      _Language
}
where
       domname    = '/SCMTMS/CALC_DATE_TYPE_CHRG'
  and(
       domvalue_l = 'EST_DATE'
    or domvalue_l = 'EET_DATE'
  )
  and  as4local   = 'A';