P_ACMTrdgContrTextConfigDet
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)
| Source | Alias | Join Type |
|---|---|---|
| tb2bk | ContractLinkItemCat | from |
| tb2bj | ItemCategory | inner |
| /accgo/t_itm_txt | ItemTextConfiguration | inner |
| ttxern | TextProcessing | inner |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA