P_ACMTrdgContrHeaderTextVH

DDL: P_ACMTRDGCONTRHEADERTEXTVH SQL: PACMTRCONHDRTXT Type: view BASIC

Header Text Configuration VH

P_ACMTrdgContrHeaderTextVH is a Basic CDS View that provides data about "Header Text Configuration VH" in SAP S/4HANA. It reads from 3 data sources (tb2be, /accgo/t_hdr_txt, ttxern) and exposes 4 fields with key field tctyp.

Data Sources (3)

SourceAliasJoin Type
tb2be ContractLinkText from
/accgo/t_hdr_txt TextHeaderConfig inner
ttxern TextProcessing inner

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName PACMTRCONHDRTXT 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
EndUserText.label Header Text Configuration VH view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY tctyp tb2be tctyp
tdobject ttxern tdobject
tdid ttxern tdid
ExternalRelevance /accgo/t_hdr_txt relevance
@AbapCatalog.sqlViewName: 'PACMTRCONHDRTXT'
@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: 'Header Text Configuration VH'
define view P_ACMTrdgContrHeaderTextVH
  as select from tb2be            as ContractLinkText
    inner join   /accgo/t_hdr_txt as TextHeaderConfig on  TextHeaderConfig.tctyp = ContractLinkText.tctyp
                                                      and TextHeaderConfig.txtgr = ContractLinkText.txtgr
    inner join   ttxern           as TextProcessing   on  TextProcessing.tdobject = 'WBHK'
                                                      and TextProcessing.txtgr    = TextHeaderConfig.txtgr
                                                      and TextProcessing.txtob    = 'Y'
                                                      and TextProcessing.tdid     = TextHeaderConfig.tdid
{
  key ContractLinkText.tctyp              as tctyp,
      TextProcessing.tdobject             as tdobject,
      TextProcessing.tdid                 as tdid,
      TextHeaderConfig.relevance          as ExternalRelevance
}