I_CnsldtnTaskLogItemTypeT
Consolidation Task Log Item Type - Text
I_CnsldtnTaskLogItemTypeT is a Basic CDS View that provides data about "Consolidation Task Log Item Type - Text" in SAP S/4HANA. It reads from 1 data source (P_CnsldtnDomainText) and exposes 6 fields with key fields Language, CnsldtnTaskLogItemType. It has 1 association to related views. Part of development package FIN_CS_TASK_LOG_API.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| P_CnsldtnDomainText | P_CnsldtnDomainText | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_CnsldtnTaskLogItemType | _TaskLogItemType | $projection.CnsldtnTaskLogItemType = _TaskLogItemType.CnsldtnTaskLogItemType |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| Analytics.dataExtraction.enabled | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | CnsldtnTaskLogItemType | view | |
| ObjectModel.modelingPattern | #LANGUAGE_DEPENDENT_TEXT | view | |
| ObjectModel.sapObjectNodeType.name | CnsldtnTaskLogItemTypeText | view | |
| Search.searchable | true | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Consolidation Task Log Item Type - Text | view |
@Analytics: {
dataExtraction.enabled: true
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: {
usageType: {
dataClass: #CUSTOMIZING,
serviceQuality: #A,
sizeCategory: #S
},
dataCategory: #TEXT,
representativeKey: 'CnsldtnTaskLogItemType',
modelingPattern: #LANGUAGE_DEPENDENT_TEXT,
supportedCapabilities: [ #LANGUAGE_DEPENDENT_TEXT,
#SQL_DATA_SOURCE,
#EXTRACTION_DATA_SOURCE,
#CDS_MODELING_DATA_SOURCE,
#CDS_MODELING_ASSOCIATION_TARGET ],
sapObjectNodeType.name: 'CnsldtnTaskLogItemTypeText'
}
@Search.searchable: true
@VDM.viewType: #BASIC
@EndUserText.label: 'Consolidation Task Log Item Type - Text'
/*+[hideWarning] { "IDS" : [ "KEY_CHECK", "CALCULATED_FIELD_CHECK" ] } */
define view entity I_CnsldtnTaskLogItemTypeT
as select from P_CnsldtnDomainText(P_DomainName : 'FINCS_LINEITEMTYPE') as _DomainT
association [1..1] to I_CnsldtnTaskLogItemType as _TaskLogItemType on $projection.CnsldtnTaskLogItemType = _TaskLogItemType.CnsldtnTaskLogItemType
{
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key cast(_DomainT.Language as spras preserving type ) as Language,
@ObjectModel.foreignKey.association: '_TaskLogItemType'
key cast(left(_DomainT.DomainValue, 2) as fincs_lineitemtype preserving type ) as CnsldtnTaskLogItemType,
@Semantics.text
@Search: {
defaultSearchElement: true,
ranking: #LOW,
fuzzinessThreshold: 0.8
}
cast(_DomainT.DomainValueText as fincs_logitemtype_text preserving type ) as CnsldtnTaskLogItemTypeText,
@Consumption.hidden: true
@Analytics.hidden: true
_DomainT.DomainValue,
_TaskLogItemType,
_DomainT._Language
};
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