P_ACMTRDGCONTRTEXTCONFIGDET
Private view: Text Configuration Determination
P_ACMTRDGCONTRTEXTCONFIGDET is a CDS View in S/4HANA. Private view: Text Configuration Determination. It contains 4 fields. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| P_ACMTrdgContrItemTxtConfigDet | view | inner | BASIC | Private view: Contract Item Text Details |
Fields (4)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| KEY | TextObjectType | TextObjectType | 1 |
| KEY | TradingContractType | TradingContractType | 1 |
| ExternalRelevance | ExternalRelevance | 1 | |
| TextObjectCategory | TextObjectCategory | 1 |
@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
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"/ACCGO/T_ITM_TXT",
"TB2BJ",
"TB2BK",
"TTXERN"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/