I_TreasuryPostingCategoryText
Treasury Posting Category Name
I_TreasuryPostingCategoryText is a Basic CDS View that provides data about "Treasury Posting Category Name" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, TreasuryPostingCategory. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_TreasuryPostingCategory | _TreasuryPostingCategory | $projection.TreasuryPostingCategory = _TreasuryPostingCategory.TreasuryPostingCategory |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | TreasuryPostingCategory | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| AbapCatalog.buffering.status | #NOT_ALLOWED | view | |
| AbapCatalog.sqlViewName | ITRPOSTCATTX | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| EndUserText.label | Treasury Posting Category Name | view | |
| Analytics.dataExtraction.enabled | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | ddlanguage | ||
| KEY | TreasuryPostingCategory | |||
| TreasuryPostingCategoryName | ||||
| _TreasuryPostingCategory | _TreasuryPostingCategory | |||
| _Language | _Language |
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'TreasuryPostingCategory'
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #L
@AbapCatalog.buffering.status: #NOT_ALLOWED
@AbapCatalog.sqlViewName: 'ITRPOSTCATTX'
@AbapCatalog.preserveKey:true
@AbapCatalog.compiler.compareFilter:true
@EndUserText.label: 'Treasury Posting Category Name'
@Analytics.dataExtraction.enabled: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
define view I_TreasuryPostingCategoryText
as select from dd07t
association [0..1] to I_TreasuryPostingCategory as _TreasuryPostingCategory on $projection.TreasuryPostingCategory = _TreasuryPostingCategory.TreasuryPostingCategory
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@Semantics.language: true
key ddlanguage as Language,
@ObjectModel.text.element: 'TreasuryPostingCategoryName'
@ObjectModel.foreignKey.association: '_TreasuryPostingCategory'
key cast (cast( dd07t.domvalue_l as abap.numc( 3 )) as ftr_gen_posting_category) as TreasuryPostingCategory,
@Semantics.text: true
cast(dd07t.ddtext as ftr_gen_posting_category_name) as TreasuryPostingCategoryName,
_TreasuryPostingCategory,
_Language
}
where
dd07t.domname = 'TPM_POSTING_CAT'
and dd07t.as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_TREASURYPOSTINGCATEGORY"
],
"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