P_ACMTrdgContrTextConfigDet

DDL: P_ACMTRDGCONTRTEXTCONFIGDET SQL: PACMTRDCONTXTCFG Type: view BASIC

Private view: Text Configuration Determination

P_ACMTrdgContrTextConfigDet is a Basic CDS View that provides data about "Private view: Text Configuration Determination" in SAP S/4HANA. It reads from 4 data sources (tb2bk, tb2bj, /accgo/t_itm_txt, ttxern) and exposes 5 fields with key field TradingContractType.

Data Sources (4)

SourceAliasJoin Type
tb2bk ContractLinkItemCat from
tb2bj ItemCategory inner
/accgo/t_itm_txt ItemTextConfiguration inner
ttxern TextProcessing inner

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName PACMTRDCONTXTCFG view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
VDM.private true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Private view: Text Configuration Determination view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY TradingContractType tb2bk tctyp
ItemCategory /accgo/t_itm_txt hkpstp
TextObjectType /accgo/t_itm_txt tdid
TextObjectCategory ttxern tdobject
ExternalRelevance /accgo/t_itm_txt relevance
@AbapCatalog.sqlViewName: 'PACMTRDCONTXTCFG'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@VDM.viewType: #BASIC
@VDM.private:true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Private view: Text Configuration Determination'
define view P_ACMTrdgContrTextConfigDet
  as select from tb2bk            as ContractLinkItemCat
    inner join   tb2bj            as ItemCategory          on ContractLinkItemCat.hkpstp = ItemCategory.hkpstp
    inner join   /accgo/t_itm_txt as ItemTextConfiguration on  ContractLinkItemCat.hkpstp = ItemTextConfiguration.hkpstp
                                                           and ItemCategory.txtgr         = ItemTextConfiguration.txtgr
    inner join   ttxern           as TextProcessing        on  TextProcessing.tdobject = 'WBHI'
                                                           and TextProcessing.txtgr    = ItemTextConfiguration.txtgr
                                                           and TextProcessing.txtob    = 'Z'
                                                           and TextProcessing.tdid     = ItemTextConfiguration.tdid
{
  key ContractLinkItemCat.tctyp                as TradingContractType,
      ItemTextConfiguration.hkpstp             as ItemCategory,
      ItemTextConfiguration.tdid               as TextObjectType,
      TextProcessing.tdobject                  as TextObjectCategory,
      ItemTextConfiguration.relevance          as ExternalRelevance
}