TWPRT_M

DDL: TWPRT_M Type: view

Text Verticalization: Replacement View for TWPRT

TWPRT_M is a CDS View that provides data about "Text Verticalization: Replacement View for TWPRT" in SAP S/4HANA. It reads from 1 data source (twprt) and exposes 3 fields with key fields wbpro, spras.

Data Sources (1)

SourceAliasJoin Type
twprt original from

Annotations (11)

NameValueLevelField
EndUserText.label Text Verticalization: Replacement View for TWPRT view
AbapCatalog.sqlViewName TWPRT_M_SQL view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY wbpro twprt wbpro
KEY spras twprt spras
proftxt
@EndUserText.label: 'Text Verticalization: Replacement View for TWPRT'

@AbapCatalog:
  { sqlViewName: 'TWPRT_M_SQL',
    compiler.compareFilter: true,
    preserveKey: true,
    buffering: { status: #ACTIVE, type: #FULL } }

@AccessControl: {
    authorizationCheck: #NOT_REQUIRED,
    personalData.blocking: #NOT_REQUIRED
}

@ObjectModel: {
    usageType: {
        serviceQuality: #A,
        sizeCategory: #S,
        dataClass: #META
   }
 }

define view TWPRT_M
  as select from            twprt   as original
    left outer to many join twprt_i as delta on  original.wbpro = delta.wbpro
                                             and original.spras = delta.spras
{
  key original.wbpro                        as wbpro,
  key original.spras                        as spras,
      coalesce(delta.proftxt, original.proftxt) as proftxt
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TWPRT",
"TWPRT_I"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/