I_TransportationActivityText

DDL: I_TRANSPORTATIONACTIVITYTEXT Type: view BASIC Package: VDM_TM_BASIC

Transportation Activity - Text

I_TransportationActivityText is a Basic CDS View that provides data about "Transportation Activity - Text" in SAP S/4HANA. It reads from 1 data source (/scmtms/c_tract) and exposes 5 fields with key fields TransportationActivity, Language. It has 2 associations to related views. Part of development package VDM_TM_BASIC.

Data Sources (1)

SourceAliasJoin Type
/scmtms/c_tract /scmtms/c_tract from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_TransportationActivity _TransportationActivity $projection.TransportationActivity = _TransportationActivity.TransportationActivity
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (18)

NameValueLevelField
EndUserText.label Transportation Activity - Text view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
ObjectModel.representativeKey TransportationActivity view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
VDM.viewType #BASIC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName ITRANSPACTIVITYT view
AbapCatalog.preserveKey true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY TransportationActivity transp_activity
KEY Language langu
TransportationActivityDesc
_TransportationActivity _TransportationActivity
_Language _Language
@EndUserText:   {label:              'Transportation Activity - Text'}
@Analytics:     {dataExtraction:     {enabled: true},
                 internalName:       #LOCAL}
@ObjectModel:   {representativeKey:     'TransportationActivity',
                 dataCategory:          #TEXT,
                 usageType:             {serviceQuality: #A,
                                         sizeCategory:   #S,
                                         dataClass:      #CUSTOMIZING},
                 modelingPattern:        #LANGUAGE_DEPENDENT_TEXT,
                 supportedCapabilities:  [ #LANGUAGE_DEPENDENT_TEXT,
                                           #CDS_MODELING_DATA_SOURCE,
                                           #CDS_MODELING_ASSOCIATION_TARGET,
                                           #SQL_DATA_SOURCE,
                                           #EXTRACTION_DATA_SOURCE,
                                           #SEARCHABLE_ENTITY]}
@VDM:           {viewType:           #BASIC}
@AbapCatalog:   {compiler:           {compareFilter: true},
                 sqlViewName:        'ITRANSPACTIVITYT',
                 preserveKey:        true,
                 buffering:          {status: #ACTIVE,
                                      type:   #FULL}}
@AccessControl: {authorizationCheck: #NOT_REQUIRED}
@ClientHandling.algorithm:           #SESSION_VARIABLE
@Metadata:      {ignorePropagatedAnnotations: true}

define view I_TransportationActivityText
  as select from /scmtms/c_tract
  association [0..1] to I_TransportationActivity as _TransportationActivity on $projection.TransportationActivity = _TransportationActivity.TransportationActivity
  association [0..1] to I_Language               as _Language               on $projection.Language = _Language.Language
{
      @ObjectModel.foreignKey.association: '_TransportationActivity'
  key transp_activity                                                     as TransportationActivity,
      @Semantics.language
      @ObjectModel.foreignKey.association: '_Language'
  key langu                                                               as Language,
      @Semantics.text
      cast ( description_s as /scmtms/vdm_activity_desc preserving type ) as TransportationActivityDesc,

      /* Associations */
      _TransportationActivity,
      _Language
}