I_AccrEngineAccrItemTypeText
Accrual Engine Accrual Item Type Text
I_AccrEngineAccrItemTypeText is a Basic CDS View that provides data about "Accrual Engine Accrual Item Type Text" in SAP S/4HANA. It reads from 1 data source (tace_itemtypet) and exposes 6 fields with key fields AccrualEngineAccrualObjectType, AccrualItemType, Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tace_itemtypet | tace_itemtypet | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
| [0..1] | I_AccrEngineAccrObjectType | _AccrObjectType | $projection.AccrualEngineAccrualObjectType = _AccrObjectType.AccrualEngineAccrualObjectType |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IACEITEMTYPETEXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Accrual Engine Accrual Item Type Text | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.representativeKey | AccrualItemType | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| Search.searchable | true | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | AccrualEngineAccrualObjectType | comp | ||
| KEY | AccrualItemType | itemtype | ||
| KEY | Language | langu | ||
| AccrualItemTypeName | txt50 | |||
| _Language | _Language | |||
| _AccrObjectType | _AccrObjectType |
@AbapCatalog.sqlViewName: 'IACEITEMTYPETEXT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Accrual Engine Accrual Item Type Text'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {
serviceQuality: #A,
sizeCategory: #S,
dataClass: #CUSTOMIZING
}
@ObjectModel.representativeKey: 'AccrualItemType'
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@Search.searchable: true
define view I_AccrEngineAccrItemTypeText
as select from tace_itemtypet
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
association [0..1] to I_AccrEngineAccrObjectType as _AccrObjectType on $projection.AccrualEngineAccrualObjectType = _AccrObjectType.AccrualEngineAccrualObjectType
{
@ObjectModel.foreignKey.association: '_AccrObjectType'
key comp as AccrualEngineAccrualObjectType,
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
key itemtype as AccrualItemType,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language
key langu as Language,
@Search.defaultSearchElement: true
@Semantics.text
txt50 as AccrualItemTypeName,
_Language,
_AccrObjectType
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TACE_ITEMTYPET"
],
"ASSOCIATED":
[
"I_ACCRENGINEACCROBJECTTYPE",
"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