P_ACMTrdgContrHeaderTextVH
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)
| Source | Alias | Join Type |
|---|---|---|
| tb2be | ContractLinkText | from |
| /accgo/t_hdr_txt | TextHeaderConfig | inner |
| ttxern | TextProcessing | inner |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
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