P_ACMCONTRHeaderTextVH

DDL: P_ACMCONTRHEADERTEXTVH SQL: PACMCNTRHDRTXT Type: view BASIC

P_ACMCONTRHeaderTextVH is a Basic CDS View in SAP S/4HANA. It reads from 3 data sources (tb2be, ttxern, ttxit) and exposes 5 fields with key field tctyp.

Data Sources (3)

SourceAliasJoin Type
tb2be a from
ttxern b inner
ttxit c inner

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PACMCNTRHDRTXT view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
VDM.private true view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #S view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.compiler.compareFilter true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY tctyp tb2be tctyp
txtgr tb2be txtgr
tdobject ttxern tdobject
tdid ttxern tdid
tdtext ttxit tdtext
@AbapCatalog.sqlViewName: 'PACMCNTRHDRTXT'
@AbapCatalog.preserveKey: true
@VDM.viewType: #BASIC
@VDM.private: true
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.sizeCategory: #S
@ClientHandling.type: #INHERITED
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.compiler.compareFilter:true
//@EndUserText.label: 'Private View for Header Text'

define view P_ACMCONTRHeaderTextVH
  as select from tb2be  as a
    inner join   ttxern as b on  b.tdobject = 'WBHK'
                             and b.txtgr    = a.txtgr
                             and b.txtob    = 'Y'
    inner join   ttxit  as c on  c.tdobject = b.tdobject
                             and c.tdid     = b.tdid
                             and c.tdspras  = $session.system_language
{
  key a.tctyp    as tctyp,
      a.txtgr    as txtgr,
      b.tdobject as tdobject,
      b.tdid     as tdid,
      c.tdtext   as tdtext
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TB2BE",
"TTXERN",
"TTXIT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/