I_POChannelOutputTypeTxt

DDL: I_POCHANNELOUTPUTTYPETXT SQL: IPOCOPTYPTXT Type: view BASIC

PO of Output Type Manual - Text

I_POChannelOutputTypeTxt is a Basic CDS View that provides data about "PO of Output Type Manual - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, PurchaseOrderOutputIsAutomated. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_POChannelOutputType _OutputType _OutputType.PurchaseOrderOutputIsAutomated = $projection.PurchaseOrderOutputIsAutomated
[0..1] I_Language _Language _Language.Language = $projection.Language

Annotations (17)

NameValueLevelField
AbapCatalog.sqlViewName IPOCOPTYPTXT view
ObjectModel.representativeKey PurchaseOrderOutputIsAutomated view
EndUserText.label PO of Output Type Manual - Text view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataExtraction.enabled true view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #S view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language dd07t ddlanguage
KEY PurchaseOrderOutputIsAutomated
POOutputChannelAutomnText dd07t ddtext Output Channel Type
_OutputType _OutputType
_Language _Language
@AbapCatalog.sqlViewName: 'IPOCOPTYPTXT'
@ObjectModel.representativeKey: 'PurchaseOrderOutputIsAutomated'
@EndUserText.label: 'PO of Output Type Manual - Text'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataExtraction.enabled: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.dataCategory: #TEXT
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
@ObjectModel.supportedCapabilities: [#CDS_MODELING_ASSOCIATION_TARGET,
                                     #CDS_MODELING_DATA_SOURCE,
                                     #EXTRACTION_DATA_SOURCE,
                                     #LANGUAGE_DEPENDENT_TEXT,
                                     #SEARCHABLE_ENTITY,
                                     #SQL_DATA_SOURCE]
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.sizeCategory: #S
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
define view I_POChannelOutputTypeTxt

  as select from dd07t

  association [0..1] to I_POChannelOutputType as _OutputType on _OutputType.PurchaseOrderOutputIsAutomated = $projection.PurchaseOrderOutputIsAutomated
  association [0..1] to I_Language            as _Language   on _Language.Language = $projection.Language
{

      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key dd07t.ddlanguage                                                       as Language,
      @ObjectModel.foreignKey.association: '_OutputType'
      @ObjectModel.text.element: ['POOutputChannelAutomnText']
      @Semantics.booleanIndicator
  key cast( substring(dd07t.domvalue_l, 1, 2 ) as mm_a_output_channel_type ) as PurchaseOrderOutputIsAutomated,

      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      @Semantics.text: true
      @EndUserText.label: 'Output Channel Type'
      dd07t.ddtext                                                           as POOutputChannelAutomnText,

      _OutputType,
      _Language

}
where
      dd07t.domname  = 'OUTPUT_CHANNEL_TYPE'
  and dd07t.as4local = 'A'
  and dd07t.as4vers  = '0000'