I_OperationExternalProcText

DDL: I_OPERATIONEXTERNALPROCTEXT SQL: IPPOPEXTPROCTXT Type: view BASIC

Operation External Processing - Text

I_OperationExternalProcText is a Basic CDS View that provides data about "Operation External Processing - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields OperationExternalProcessing, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t t from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_OperationExternalProcessing _ExternalProcessing $projection.OperationExternalProcessing = _ExternalProcessing.OperationExternalProcessing
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IPPOPEXTPROCTXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.representativeKey OperationExternalProcessing view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #META view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
EndUserText.label Operation External Processing - Text view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY OperationExternalProcessing
KEY Language
OperationExternalProcName dd07t ddtext
_ExternalProcessing _ExternalProcessing
_Language _Language
@AbapCatalog.sqlViewName: 'IPPOPEXTPROCTXT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.dataCategory: #TEXT
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
@ObjectModel.supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #SEARCHABLE_ENTITY]
@ObjectModel.representativeKey: 'OperationExternalProcessing'
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #L, dataClass: #META}
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Operation External Processing - Text'

/*+[hideWarning] { "IDS" : [ "KEY_CHECK", "CALCULATED_FIELD_CHECK" ]  } */
define view I_OperationExternalProcText
  as select from dd07t as t
  association [1..1] to I_OperationExternalProcessing as _ExternalProcessing on $projection.OperationExternalProcessing = _ExternalProcessing.OperationExternalProcessing 
  association [0..1] to I_Language                    as _Language           on $projection.Language = _Language.Language
  {
      @ObjectModel.foreignKey.association: '_ExternalProcessing'
      @ObjectModel.text.element: ['OperationExternalProcName']
  key cast(substring(t.domvalue_l, 1, 1) as lief preserving type) as OperationExternalProcessing,
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key cast(t.ddlanguage as spras preserving type)                 as Language,
      @Search: {defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8}
      @Semantics.text: true
      t.ddtext                                                    as OperationExternalProcName,

      // Associations

      @ObjectModel.association.type: [#TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT]
      _ExternalProcessing,
      _Language
  }
  where t.domname = 'PPH_LIEF'
    and t.as4local = 'A'
    and t.as4vers  = '0000';