I_CASubTransactionText
Document Subtransaction - Text
I_CASubTransactionText is a Basic CDS View that provides data about "Document Subtransaction - Text" in SAP S/4HANA. It reads from 1 data source (tfktvot) and exposes 8 fields with key fields CAApplicationArea, CAMainTransaction, CASubTransaction, Language. It has 3 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tfktvot | tfktvot | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_CAApplicationArea | _ApplArea | $projection.CAApplicationArea = _ApplArea.CAApplicationArea |
| [1..1] | I_CAMainTransaction | _MainTransaction | $projection.CAApplicationArea = _MainTransaction.CAApplicationArea and $projection.CAMainTransaction = _MainTransaction.CAMainTransaction |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Document Subtransaction - Text | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Analytics.dataExtraction.enabled | true | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.modelingPattern | #LANGUAGE_DEPENDENT_TEXT | view | |
| ObjectModel.representativeKey | CASubTransaction | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| VDM.viewType | #BASIC | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CAApplicationArea | applk | ||
| KEY | CAMainTransaction | hvorg | ||
| KEY | CASubTransaction | tvorg | ||
| KEY | Language | spras | ||
| CASubTransactionName | txt30 | |||
| _ApplArea | _ApplArea | |||
| _MainTransaction | _MainTransaction | |||
| _Language | _Language |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Document Subtransaction - Text'
@Metadata.ignorePropagatedAnnotations: true
@Analytics.dataExtraction.enabled : true
@ObjectModel: { dataCategory: #TEXT,
modelingPattern: #LANGUAGE_DEPENDENT_TEXT,
representativeKey: 'CASubTransaction',
supportedCapabilities: [ #CDS_MODELING_ASSOCIATION_TARGET,
#CDS_MODELING_DATA_SOURCE,
#LANGUAGE_DEPENDENT_TEXT,
#SQL_DATA_SOURCE,
#EXTRACTION_DATA_SOURCE ],
usageType: { dataClass: #CUSTOMIZING,
serviceQuality: #A,
sizeCategory: #S } }
@VDM.viewType: #BASIC
define view entity I_CASubTransactionText
as select from tfktvot
association [1..1] to I_CAApplicationArea as _ApplArea on $projection.CAApplicationArea = _ApplArea.CAApplicationArea
association [1..1] to I_CAMainTransaction as _MainTransaction on $projection.CAApplicationArea = _MainTransaction.CAApplicationArea
and $projection.CAMainTransaction = _MainTransaction.CAMainTransaction
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_ApplArea'
key applk as CAApplicationArea,
@ObjectModel.foreignKey.association: '_MainTransaction'
key hvorg as CAMainTransaction,
key tvorg as CASubTransaction,
@Semantics.language
@ObjectModel.foreignKey.association: '_Language'
key spras as Language,
@Semantics.text
txt30 as CASubTransactionName,
_ApplArea,
_MainTransaction,
_Language
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TFKTVOT"
],
"ASSOCIATED":
[
"I_CAAPPLICATIONAREA",
"I_CAMAINTRANSACTION",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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