I_ThirdPartyOrderProcessingT

DDL: I_THIRDPARTYORDERPROCESSINGT SQL: ISPTHRDPRTORDPT Type: view BASIC Package: VDM_SCMB_SPP_MD

Third Party Order Processing Text

I_ThirdPartyOrderProcessingT is a Basic CDS View that provides data about "Third Party Order Processing Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields Language, ThirdPartyOrderProcessing. It has 2 associations to related views. Part of development package VDM_SCMB_SPP_MD.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_ThirdPartyOrderProcessing _ThirdPartyOrderProcessing $projection.ThirdPartyOrderProcessing = _ThirdPartyOrderProcessing.ThirdPartyOrderProcessing
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (14)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey ThirdPartyOrderProcessing view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Third Party Order Processing Text view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ISPTHRDPRTORDPT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language ddlanguage
KEY ThirdPartyOrderProcessing
DomainValue dd07t domvalue_l
ThirdPartyOrderProcessingName ddtext
_ThirdPartyOrderProcessing _ThirdPartyOrderProcessing
_Language _Language
@ClientHandling.algorithm:             #SESSION_VARIABLE
@ObjectModel.dataCategory:             #TEXT
@ObjectModel.representativeKey:        'ThirdPartyOrderProcessing'
@ObjectModel.usageType.dataClass:      #META
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory:   #S
@EndUserText.label:                    'Third Party Order Processing Text'
@VDM.viewType:                         #BASIC
@AccessControl.authorizationCheck:     #NOT_REQUIRED
@AbapCatalog.sqlViewName:              'ISPTHRDPRTORDPT'
@AbapCatalog.compiler.compareFilter:   true
@AbapCatalog.preserveKey:              true
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true

define view I_ThirdPartyOrderProcessingT
  as select from dd07t

  association [0..1] to I_ThirdPartyOrderProcessing as _ThirdPartyOrderProcessing on $projection.ThirdPartyOrderProcessing = _ThirdPartyOrderProcessing.ThirdPartyOrderProcessing
  association [0..1] to I_Language                  as _Language                  on $projection.Language = _Language.Language
{

      @Semantics.language
      @ObjectModel.foreignKey.association: '_Language'
  key ddlanguage                                            as Language,

      @ObjectModel.foreignKey.association: '_ThirdPartyOrderProcessing'
      @ObjectModel.text.element: ['ThirdPartyOrderProcessingName']
  key cast( dd07t.domvalue_l as /sapapo/tpop ) as ThirdPartyOrderProcessing,

      @Consumption.hidden: true
      dd07t.domvalue_l                                      as DomainValue,

      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #LOW      @Semantics.text: true
      ddtext                                                as ThirdPartyOrderProcessingName,

      //Associations

      _ThirdPartyOrderProcessing,
      _Language
}

where
      domname       = '/SAPAPO/TPOP'
  and as4local      = 'A'
  and dd07t.as4vers = '0000'