I_TranspOrdStopSqncPositionTxt

DDL: I_TRANSPORDSTOPSQNCPOSITIONTXT Type: view BASIC

Transp Ord Stop Sequence position - Text

I_TranspOrdStopSqncPositionTxt is a Basic CDS View that provides data about "Transp Ord Stop Sequence position - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields TranspOrdStopSequencePosition, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_TranspOrdStopSqncPosition _TranspOrdStpSequencePosition $projection.TranspOrdStopSequencePosition = _TranspOrdStpSequencePosition.TranspOrdStopSequencePosition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (13)

NameValueLevelField
EndUserText.label Transp Ord Stop Sequence position - Text view
ObjectModel.representativeKey TranspOrdStopSequencePosition 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 ITORORDSEQPOSTXT view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY TranspOrdStopSequencePosition
KEY Language ddlanguage
TranspOrdStopSequencePosDesc ddtext
_TranspOrdStpSequencePosition _TranspOrdStpSequencePosition
_Language _Language
@EndUserText:   {label: 'Transp Ord Stop Sequence position - Text'}
@ObjectModel:   {representativeKey: 'TranspOrdStopSequencePosition',
                 dataCategory: #TEXT,
                 usageType: {serviceQuality: #A,
                             sizeCategory:   #S,
                             dataClass:      #CUSTOMIZING}}
@VDM:           {viewType:  #BASIC,
                 lifecycle.contract.type:  #NONE }
@AbapCatalog:   {compiler:  {compareFilter: true},
                 sqlViewName: 'ITORORDSEQPOSTXT',
                 preserveKey: true}
@AccessControl: {authorizationCheck: #NOT_REQUIRED}
@ClientHandling.algorithm:  #SESSION_VARIABLE
define view I_TranspOrdStopSqncPositionTxt
  as select from dd07t
  association [0..1] to I_TranspOrdStopSqncPosition as _TranspOrdStpSequencePosition on $projection.TranspOrdStopSequencePosition = _TranspOrdStpSequencePosition.TranspOrdStopSequencePosition
  association [0..1] to I_Language                  as _Language                     on $projection.Language = _Language.Language
{
      @ObjectModel.foreignKey.association: '_TranspOrdStpSequencePosition'
  key cast(substring(domvalue_l, 1, 1) as /scmtms/stop_seq_pos preserving type) as TranspOrdStopSequencePosition,
      @Semantics.language
      @ObjectModel.foreignKey.association: '_Language'
  key ddlanguage                                                                as Language,
      @Semantics.text
      ddtext                                                                    as TranspOrdStopSequencePosDesc,

      /* Associations */
      _TranspOrdStpSequencePosition,
      _Language
}
where
      domname  = '/SCMTMS/STOP_SEQ_POS'
  and as4local = 'A';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_TRANSPORDSTOPSQNCPOSITION"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/